master 88b208d0d094 cached
45 files
156.6 MB
4.9M tokens
52 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (19,452K chars total). Download the full file to get everything.
Repository: wasiahmad/paraphrase_identification
Branch: master
Commit: 88b208d0d094
Files: 45
Total size: 156.6 MB

Directory structure:
gitextract_ia7mi6tx/

├── LICENSE
├── README.md
├── dataset/
│   ├── msr-paraphrase-corpus/
│   │   ├── MSR Paraphrase Corpus.lnk
│   │   ├── Microsoft Shared Source License.htm
│   │   ├── Microsoft Shared Source License.rtf
│   │   ├── msr_paraphrase_README.htm
│   │   ├── msr_paraphrase_README.rtf
│   │   ├── msr_paraphrase_data.txt
│   │   ├── msr_paraphrase_test.txt
│   │   └── msr_paraphrase_train.txt
│   ├── msr-video-paraphrase-corpus/
│   │   ├── test-gold.tgz
│   │   ├── train-readme.txt
│   │   ├── train.tgz
│   │   └── trial.tgz
│   ├── mt-metrics-paraphrase-corpus/
│   │   ├── README
│   │   ├── msrp-annotations.csv
│   │   ├── pan-annotations.csv
│   │   ├── pan-test.labels
│   │   ├── pan-test_s1.txt
│   │   ├── pan-test_s2.txt
│   │   ├── pan-train.labels
│   │   ├── pan-train_s1.txt
│   │   └── pan-train_s2.txt
│   └── readme.md
├── source_code_in_theano/
│   ├── data/
│   │   ├── 20_news_group_sentences.txt
│   │   ├── msr_paraphrase_test.txt
│   │   └── msr_paraphrase_train.txt
│   ├── data.py
│   ├── deep_lstm.py
│   ├── input.py
│   ├── lstm.py
│   ├── models/
│   │   ├── backward_double_layer_lstm-2016-12-09-19-49-14000-48-64.dat.npz
│   │   ├── backward_single_layer_lstm-2016-11-30-21-07-14000-48-64.dat.npz
│   │   ├── forward_double_layer_lstm-2016-12-09-19-34-14000-48-64.dat.npz
│   │   ├── forward_single_layer_lstm-2016-12-05-13-04-14000-48-64.dat.npz
│   │   └── model_trained_on_20_news_group_dataset/
│   │       ├── backward_double_layer_lstm-2017-01-07-19-12-20000-64-128.dat.npz
│   │       ├── backward_single_layer_lstm-2017-01-07-19-00-20000-64-128.dat.npz
│   │       ├── forward_double_layer_lstm-2017-01-07-19-06-20000-64-128.dat.npz
│   │       └── forward_single_layer_lstm-2017-01-06-00-44-20000-64-128.dat.npz
│   ├── news_group_data.py
│   ├── readme.md
│   ├── test_lstm.py
│   ├── train_lstm.py
│   └── utils.py
└── state-of-art-details.md

================================================
FILE CONTENTS
================================================

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2016 Wasi Ahmad

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# Paraphrase-Identification-Task
Paraphrase detection is the task of examining two text entities (ex. sentence) and determining whether they have the same meaning. In order to obtain high accuracy on this task, thorough syntactic and semantic analysis of the two text entities is required.

## What is Paraphrase?
In simple words, paraphrase is just an alternative representation of the same meaning.

## Classification of Paraphrases
According to granularity, paraphrases are of two types.
  * Surface Paraphrases
    - Lexical level
        * Example - ***solve*** and ***resolve***
    - Phrase level
        * Example - ***look after*** and ***take care of***
    - Sentence level
        * Example - ***The table was set up in the carriage shed*** and ***The table was laid under the cart-shed***
    - Discourse level
  * Structural paraphrases
   - Pattern level
        * Example - ***[X] considers [Y]*** and ***[X] takes [Y] into consideration***
   - Collocation level
        * Example - ***(turn on, OBJ ligth)*** and ***(switch on, OBJ light)***

According to paraphrase style, they can be classified into five types.
  * Trivial Change
      * Example - ***all the members of*** and ***all members of***
  * Phrase replacement
      * Example - ***There will be major cuts in the salaries of high-level civil servants*** and ***There will be major cuts in the salaries of senior officials***
  * Phrase reordering
      * Example - ***Last night, I saw TOM in the shopping mall*** and ***I saw Tom in the shopping mall last night***
  * Sentence split & merge
      * Example - ***He baught a computer which is very expensive*** and ***(1) He bought a computer. (2) The computer is very expensive.***
  * Complex paraphrase
      * Example - ***He said there will be major cuts in the salaries of high-level civil servants*** and ***He claimed to implement huge salary cut to senior civil servants***

## Applications of Paraphrase Identification
  * Machine Translation
    - Simplify input sentences
    - Alleviate data sparseness
  * Question Answering
    - Question reformulation
  * Information Extraction
    - IE pattern expansion
  * Information Retrieval
    - Query reformulation
  * Summarization
    - Sentence clustering
    - Automatic evaluation
  * Natural Language Generation
    - Sentence rewriting
  * Others
    - Changing writing style
    - Text simplification
    - Identifying plagiarism

## Relevant Research Topic
  * Textual Entailment
  * Semantic Textual Similarity

## Research on Paraphrasing
  * Paraphrase identification
  * Paraphrase extraction
  * Paraphrase generation
  * Paraphrase applications
  
## Paraphrase Identification
  * Specially refers to sentential paraphrase identification
    - Given any pair of sentences, automatically identifies whether these two sentences are paraphrases

## Overview of Paraphrase Identification Methods
  * Classification based methods
    * Reviewed as a binary classification problem
    * Compute the similarities between two sentences at different levels which are then used as classification features
    * Previous works: [Brockett and Dolan, 2005](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/I05-50015B15D.pdf), [Finch et al., 2005](http://www.aclweb.org/anthology/I05-5003), [Malakasiotis, 2009](http://www.aclweb.org/anthology/P09-3004)
  * Alignment based methods
    * Align the two sentences and score the pair based on the alignment results
    * Previous works: [Wu, 2005](http://dl.acm.org/citation.cfm?id=1631867), [Das and Smith, 2009](https://www.aclweb.org/anthology/P/P09/P09-1053.pdf)

More discussion on the previous works are documented [here](https://github.com/wasiahmad/Paraphrase-Identification-Task/blob/master/state-of-art-details.md).
## Reference
  * [Paraphrases and Application - Association for Computational Linguistics](http://www.aclweb.org/anthology/C10-4001)


================================================
FILE: dataset/msr-paraphrase-corpus/Microsoft Shared Source License.htm
================================================
<html>

<head>
<meta http-equiv=Content-Type content="text/html; charset=shift_jis">
<meta name=Generator content="Microsoft Word 11 (filtered)">
<title>Microsoft Shared Source License</title>
<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"lr ";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:Century;
	panose-1:2 4 6 4 5 5 5 2 3 4;}
@font-face
	{font-family:"\@lr ";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{margin:0cm;
	margin-bottom:.0001pt;
	text-align:justify;
	text-justify:inter-ideograph;
	font-size:10.5pt;
	font-family:Century;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
	{margin:0cm;
	margin-bottom:.0001pt;
	text-align:justify;
	text-justify:inter-ideograph;
	font-size:10.5pt;
	font-family:"lr ";}
 /* Page Definitions */
 @page Section1
	{size:595.3pt 841.9pt;
	margin:99.25pt 87.65pt 3.0cm 87.65pt;
	layout-grid:18.0pt;}
div.Section1
	{page:Section1;}
-->
</style>

</head>

<body lang=JA style='text-justify-trim:punctuation'>

<div class=Section1 style='layout-grid:18.0pt'>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>Microsoft
Research Paraphrase Corpus</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>This
Microsoft Research Shared Source license agreement (&quot;MSR-SSLA&quot;) is a
legal agreement between you and Microsoft Corporation (&quot;Microsoft&quot; or
&quot;we&quot;) for the software or data identified above, which may include
source code, and any associated materials, text or speech files, associated
media and &quot;online&quot; or electronic documentation and any updates we
provide in our discretion (together, the &quot;Software&quot;). </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>By
installing, copying, or otherwise using this Software, found at
http://research.microsoft.com/downloads, you agree to be bound by the terms of
this MSR-SSLA. If you do not agree, do not install copy or use the Software.
The Software is protected by copyright and other intellectual property laws and
is licensed, not sold.&nbsp;&nbsp;&nbsp; </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>SCOPE
OF RIGHTS:</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>You
may use, copy, reproduce, and distribute this Software for any non-commercial
purpose, subject to the restrictions in this MSR-SSLA. Some purposes which can
be non-commercial are teaching, academic research, public demonstrations and
personal experimentation. You may also distribute this Software with books or
other teaching materials, or publish the Software on websites, that are
intended to teach the use of the Software for academic or other non-commercial
purposes.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>You
may not use or distribute this Software or any derivative works in any form for
commercial purposes. Examples of commercial purposes would be running business
operations, licensing, leasing, or selling the Software, distributing the
Software for use with commercial products, using the Software in the creation
or use of commercial products or any other activity which purpose is to procure
a commercial gain to you or others.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>If the
Software includes source code or data, you may create derivative works of such
portions of the Software and distribute the modified Software for
non-commercial purposes, as provided herein.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>In
return, we simply require that you agree: </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>1.
That you will not remove any copyright or other notices from the Software.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>2.
That if any of the Software is in binary format, you will not attempt to modify
such portions of the Software, or to reverse engineer or decompile them, except
and only to the extent authorized by applicable law. </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>3.
That if you distribute the Software or any derivative works of the Software,
you will distribute them under the same terms and conditions as in this
license, and you will not grant other rights to the Software or derivative works
that are different from those provided by this MSR-SSLA. </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>4.
That if you have created derivative works of the Software, and distribute such
derivative works, you will cause the modified files to carry prominent notices
so that recipients know that they are not receiving the original Software. Such
notices must state: (i) that you have changed the Software; and (ii) the date
of any changes.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>5.
That Microsoft is granted back, without any restrictions or limitations, a
non-exclusive, perpetual, irrevocable, royalty-free, assignable and
sub-licensable license, to reproduce, publicly perform or display, install,
use, modify, distribute, make and have made, sell and transfer your
modifications to and/or derivative works of the Software source code or data,
for any purpose.&nbsp; </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>6.
That any feedback about the Software provided by you to us is voluntarily
given, and Microsoft shall be free to use the feedback as it sees fit without
obligation or restriction of any kind, even if the feedback is designated by
you as confidential. </span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>7.
THAT THE SOFTWARE COMES &quot;AS IS&quot;, WITH NO WARRANTIES. THIS MEANS NO
EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION,
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ANY WARRANTY
AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE SOFTWARE OR ANY WARRANTY OF
TITLE OR NON-INFRINGEMENT. THERE IS NO WARRANTY THAT THIS SOFTWARE WILL FULFILL
ANY OF YOUR PARTICULAR PURPOSES OR NEEDS. ALSO, YOU MUST PASS THIS DISCLAIMER
ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>8.
THAT NEITHER MICROSOFT NOR ANY CONTRIBUTOR TO THE SOFTWARE WILL BE LIABLE FOR
ANY DAMAGES RELATED TO THE SOFTWARE OR THIS MSR-SSLA, INCLUDING DIRECT,
INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT
THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT IS BASED ON. ALSO, YOU MUST
PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR
DERIVATIVE WORKS.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>9.
That we have no duty of reasonable care or lack of negligence, and we are not
obligated to (and will not) provide technical support for the Software.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>10.
That if you breach this MSR-SSLA or if you sue anyone over patents that you
think may apply to or read on the Software or anyone's use of the Software,
this MSR-SSLA (and your license and rights obtained herein) terminate
automatically.&nbsp; Upon any such termination, you shall destroy all of your
copies of the Software immediately.&nbsp; Sections 5, 6, 7, 8, 9, 10, 13 and 14
of this MSR-SSLA shall survive any termination of this MSR-SSLA.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>11.
That the patent rights, if any, granted to you in this MSR-SSLA only apply to
the Software, not to any derivative works you make.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>12.
That the Software may be subject to U.S. export jurisdiction at the time it is
licensed to you, and it may be subject to additional export or import laws in
other places. You agree to comply with all such laws and regulations that may
apply to the Software after delivery of the software to you.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>13.
That all rights not expressly granted to you in this MSR-SSLA are reserved.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>14.
That this MSR-SSLA shall be construed and controlled by the laws of the State
of Washington, USA, without regard to conflicts of law.&nbsp; If any provision
of this MSR-SSLA shall be deemed unenforceable or contrary to law, the rest of
this MSR-SSLA shall remain in full effect and interpreted in an enforceable
manner that most nearly captures the intent of the original language.</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>&nbsp;</span></p>

<p class=MsoPlainText><span lang=EN-US style='font-family:"Courier New"'>Copyright
&copy; Microsoft Corporation. All rights reserved.</span></p>

</div>

</body>

</html>


================================================
FILE: dataset/msr-paraphrase-corpus/Microsoft Shared Source License.rtf
================================================
{\rtf1\ansi\ansicpg932\uc2\deff0\stshfdbch11\stshfloch21\stshfhich21\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
{\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f11\froman\fcharset128\fprq1{\*\panose 02020609040205080304}\'82\'6c\'82\'72 \'96\'be\'92\'a9{\*\falt MS Mincho};}
{\f21\froman\fcharset0\fprq2{\*\panose 02040604050505020304}Century;}{\f38\froman\fcharset128\fprq1{\*\panose 02020609040205080304}@\'82\'6c\'82\'72 \'96\'be\'92\'a9;}{\f39\froman\fcharset238\fprq2 Times New Roman CE;}
{\f40\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\froman\fcharset177\fprq2 Times New Roman (Hebrew);}
{\f45\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f59\fmodern\fcharset238\fprq1 Courier New CE;}
{\f60\fmodern\fcharset204\fprq1 Courier New Cyr;}{\f62\fmodern\fcharset161\fprq1 Courier New Greek;}{\f63\fmodern\fcharset162\fprq1 Courier New Tur;}{\f64\fmodern\fcharset177\fprq1 Courier New (Hebrew);}
{\f65\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f66\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f67\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f151\froman\fcharset0\fprq1 MS Mincho Western{\*\falt MS Mincho};}
{\f149\froman\fcharset238\fprq1 MS Mincho CE{\*\falt MS Mincho};}{\f150\froman\fcharset204\fprq1 MS Mincho Cyr{\*\falt MS Mincho};}{\f152\froman\fcharset161\fprq1 MS Mincho Greek{\*\falt MS Mincho};}
{\f153\froman\fcharset162\fprq1 MS Mincho Tur{\*\falt MS Mincho};}{\f156\froman\fcharset186\fprq1 MS Mincho Baltic{\*\falt MS Mincho};}{\f249\froman\fcharset238\fprq2 Century CE;}{\f250\froman\fcharset204\fprq2 Century Cyr;}
{\f252\froman\fcharset161\fprq2 Century Greek;}{\f253\froman\fcharset162\fprq2 Century Tur;}{\f256\froman\fcharset186\fprq2 Century Baltic;}{\f421\froman\fcharset0\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Western;}
{\f419\froman\fcharset238\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 CE;}{\f420\froman\fcharset204\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Cyr;}{\f422\froman\fcharset161\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Greek;}
{\f423\froman\fcharset162\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Tur;}{\f426\froman\fcharset186\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Baltic;}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;
\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;
\red192\green192\blue192;}{\stylesheet{\qj \li0\ri0\nowidctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs21\lang1033\langfe1041\kerning2\loch\f21\hich\af21\dbch\af11\cgrid\langnp1033\langfenp1041 \snext0 Normal;}{\*\cs10 \additive 
\ssemihidden Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv 
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\loch\f21\hich\af21\dbch\af11\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{
\s15\qj \li0\ri0\nowidctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs21\lang1033\langfe1041\kerning2\loch\f11\hich\af2\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext15 Plain Text;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}
{\*\rsidtbl \rsid6188942\rsid14507857\rsid16326027}{\*\generator Microsoft Word 11.0.6359;}{\info{\title [Add Name and Version of Software here]}{\author chrisbkt}{\operator chrisbkt}{\creatim\yr2005\mo3\dy1\hr16\min37}{\revtim\yr2005\mo3\dy1\hr16\min38}
{\version3}{\edmins1}{\nofpages3}{\nofwords895}{\nofchars5104}{\*\company Microsoft Corporation}{\nofcharsws5988}{\vern24703}}\paperw11906\paperh16838\margl1753\margr1753\margt1985\margb1701\gutter0 \deftab851\ftnbj\aenddoc\formshade\horzdoc\dgmargin
\dghspace180\dgvspace180\dghorigin1701\dgvorigin1984\dghshow0\dgvshow2\jcompress\lnongrid
\viewkind4\viewscale100\splytwnine\ftnlytwnine\htmautsp\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct\asianbrkrule\rsidroot6188942\newtblstyruls\nogrowautofit {\upr{\*\fchars 
!%),.:\'3b?]\'7d\'81\'91\'81\'8b\'81\'66\'81\'68\'81\'f1\'81\'8c\'81\'8d\'81\'8e\'81\'41\'81\'42\'81\'58\'81\'72\'81\'74\'81\'76\'81\'78\'81\'7a\'81\'6c\'81\'4a\'81\'4b\'81\'54\'81\'55\'81\'45\'81\'52\'81\'53\'81\'49\'81\'93\'81\'6a\'81\'43\'81\'44\'81\'46\'81\'47\'81\'48\'81\'6e\'81\'70\'a1\'a3\'a4\'a5\'de\'df\'81\'91
}{\*\ud\uc0{\*\fchars 
!%),.:\'3b?]\'7d{\uc2\u162 \'81\'91\'81\'8b\'81f\'81h\'81\'f1\'81\'8c\'81\'8d\'81\'8e\'81A\'81B\'81X\'81r\'81t\'81v\'81x\'81z\'81l\'81J\'81K\'81T\'81U\'81E\'81R\'81S\'81I\'81\'93\'81j\'81C\'81D\'81F\'81G\'81H\'81n\'81p\'a1\'a3\'a4\'a5\'de\'df\'81\'91}}}}
{\upr{\*\lchars $([\'5c\'7b\'81\'92\'5c\'81\'65\'81\'67\'81\'71\'81\'73\'81\'75\'81\'77\'81\'79\'81\'6b\'81\'90\'81\'69\'81\'6d\'81\'6f\'a2\'81\'92\'81\'8f}{\*\ud\uc0{\*\lchars 
$([\'5c\'7b{\uc2\u163 \'81\'92}{\uc1\u165 \'5c\'81e\'81g\'81q\'81s\'81u\'81w\'81y\'81k\'81\'90\'81i\'81m\'81o\'a2\'81\'92\'81\'8f}}}}\fet0\sectd \linex0\endnhere\sectlinegrid360\sectspecifyl\sectrsid12744622\sftnbj {\*\pnseclvl1
\pnucrm\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang 
{\pntxta \dbch )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}
{\pntxta \dbch )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}\pard\plain 
\s15\qj \li0\ri0\nowidctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12744622 \fs21\lang1033\langfe1041\kerning2\loch\af11\hich\af2\dbch\af11\cgrid\langnp1033\langfenp1041 {\loch\af2\insrsid16326027 \hich\af2\dbch\af11\loch\f2 Microsoft
\hich\af2\dbch\af11\loch\f2  \hich\af2\dbch\af11\loch\f2 Research\hich\af2\dbch\af11\loch\f2  \hich\af2\dbch\af11\loch\f2 Paraphrase\hich\af2\dbch\af11\loch\f2  \hich\af2\dbch\af11\loch\f2 Corpus}{\loch\af2\insrsid6188942\charrsid6188942 
\par }{\loch\af2\insrsid6188942\charrsid6188942 
\par \hich\af2\dbch\af11\loch\f2 This Microsoft Research Shared Source license agreement ("MSR-SSLA") is a legal agreement between you and Microsoft Corporation ("Microsoft" or "we") for the software or data identified above, which may include so
\hich\af2\dbch\af11\loch\f2 urce code, and any associated materials, text or speech files, associated media and "online" or electronic documentation and any updates we provide in our discretion (together, the "Software"). 
\par 
\par \hich\af2\dbch\af11\loch\f2 By installing, copying, or otherwise using this Software, \hich\af2\dbch\af11\loch\f2 
found at http://research.microsoft.com/downloads, you agree to be bound by the terms of this MSR-SSLA. If you do not agree, do not install copy or use the Software. The Software is protected by copyright and other intellectual property laws and is license
\hich\af2\dbch\af11\loch\f2 d\hich\af2\dbch\af11\loch\f2 , not sold.    
\par 
\par \hich\af2\dbch\af11\loch\f2 SCOPE OF RIGHTS:
\par \hich\af2\dbch\af11\loch\f2 You may use, copy, reproduce, and distribute this Software for any non-commercial purpose, subject to the restrictions in this MSR-SSLA. Some purposes which can be non-commercial are teaching, academic research, public 
\hich\af2\dbch\af11\loch\f2 
demonstrations and personal experimentation. You may also distribute this Software with books or other teaching materials, or publish the Software on websites, that are intended to teach the use of the Software for academic or other non-commercial purpose
\hich\af2\dbch\af11\loch\f2 s\hich\af2\dbch\af11\loch\f2 .
\par \hich\af2\dbch\af11\loch\f2 
You may not use or distribute this Software or any derivative works in any form for commercial purposes. Examples of commercial purposes would be running business operations, licensing, leasing, or selling the Software, distributing the Software for use
\hich\af2\dbch\af11\loch\f2  with commercial products, using the Software in the creation or use of commercial products or any other activity which purpose is to procure a commercial gain to you or others.
\par \hich\af2\dbch\af11\loch\f2 If the Software includes source code or data, you may create derivative works\hich\af2\dbch\af11\loch\f2  of such portions of the Software and distribute the modified Software for non-commercial purposes, as provided herein.

\par 
\par \hich\af2\dbch\af11\loch\f2 In return, we simply require that you agree: 
\par \hich\af2\dbch\af11\loch\f2 1. That you will not remove any copyright or other notices from the Software.
\par \hich\af2\dbch\af11\loch\f2 2. That\hich\af2\dbch\af11\loch\f2 
 if any of the Software is in binary format, you will not attempt to modify such portions of the Software, or to reverse engineer or decompile them, except and only to the extent authorized by applicable law. 
\par \hich\af2\dbch\af11\loch\f2 3. That if you distribute the Software or any\hich\af2\dbch\af11\loch\f2 
 derivative works of the Software, you will distribute them under the same terms and conditions as in this license, and you will not grant other rights to the Software or derivative works that are different from those provided by this MSR-SSLA. 
\par \hich\af2\dbch\af11\loch\f2 4. That i\hich\af2\dbch\af11\loch\f2 
f you have created derivative works of the Software, and distribute such derivative works, you will cause the modified files to carry prominent notices so that recipients know that they are not receiving the original Software. Such notices must state: (i)
\hich\af2\dbch\af11\loch\f2  \hich\af2\dbch\af11\loch\f2 that you have changed the Software; and (ii) the date of any changes.
\par \hich\af2\dbch\af11\loch\f2 5. That Microsoft is granted back, without any restrictions or limitations, a non-exclusive, perpetual, irrevocable, royalty-free, assignable and sub-licensable license, to reproduce, p\hich\af2\dbch\af11\loch\f2 
ublicly perform or display, install, use, modify, distribute, make and have made, sell and transfer your modifications to and/or derivative works of the Software source code or data, for any purpose.  
\par \hich\af2\dbch\af11\loch\f2 6. That any feedback about the Software provided by y\hich\af2\dbch\af11\loch\f2 
ou to us is voluntarily given, and Microsoft shall be free to use the feedback as it sees fit without obligation or restriction of any kind, even if the feedback is designated by you as confidential. 
\par \hich\af2\dbch\af11\loch\f2 7. THAT THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES\hich\af2\dbch\af11\loch\f2 
. THIS MEANS NO EXPRESS, IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ANY WARRANTY AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE SOFTWARE OR ANY WARRANTY OF TITLE OR NON-
\hich\af2\dbch\af11\loch\f2 I\hich\af2\dbch\af11\loch\f2 
NFRINGEMENT. THERE IS NO WARRANTY THAT THIS SOFTWARE WILL FULFILL ANY OF YOUR PARTICULAR PURPOSES OR NEEDS. ALSO, YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.
\par \hich\af2\dbch\af11\loch\f2 8. THAT NEITHER MICROSOFT NOR ANY CONTRIBUTOR TO T\hich\af2\dbch\af11\loch\f2 
HE SOFTWARE WILL BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR THIS MSR-SSLA, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT IS BASED ON. ALSO, YOU MUS
\hich\af2\dbch\af11\loch\f2 T\hich\af2\dbch\af11\loch\f2  PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.
\par \hich\af2\dbch\af11\loch\f2 9. That we have no duty of reasonable care or lack of negligence, and we are not obligated to (and will not) provide technical support for the Software.
\par \hich\af2\dbch\af11\loch\f2 10. T\hich\af2\dbch\af11\loch\f2 
hat if you breach this MSR-SSLA or if you sue anyone over patents that you think may apply to or read on the Software or anyone's use of the Software, this MSR-SSLA (and your license and rights obtained herein) terminate automatically.  Upon any such term
\hich\af2\dbch\af11\loch\f2 i\hich\af2\dbch\af11\loch\f2 nation, you shall destroy all of your copies of the Software immediately.  Sections 5, 6, 7, 8, 9, 10, 13 and 14 of this MSR-SSLA shall survive any termination of this MSR-SSLA.
\par \hich\af2\dbch\af11\loch\f2 11. That the patent rights, if any, granted to you in this MSR-SSLA only appl\hich\af2\dbch\af11\loch\f2 y to the Software, not to any derivative works you make.
\par \hich\af2\dbch\af11\loch\f2 12. That the Software may be subject to U.S. export jurisdiction at the time it is licensed to you, and it may be subject to additional export or import laws in other places. You agree to comply wit\hich\af2\dbch\af11\loch\f2 
h all such laws and regulations that may apply to the Software after delivery of the software to you.
\par \hich\af2\dbch\af11\loch\f2 13. That all rights not expressly granted to you in this MSR-SSLA are reserved.
\par \hich\af2\dbch\af11\loch\f2 14. That this MSR-SSLA shall be construed and controlled by the laws of \hich\af2\dbch\af11\loch\f2 
the State of Washington, USA, without regard to conflicts of law.  If any provision of this MSR-SSLA shall be deemed unenforceable or contrary to law, the rest of this MSR-SSLA shall remain in full effect and interpreted in an enforceable manner that most
\hich\af2\dbch\af11\loch\f2  \hich\af2\dbch\af11\loch\f2 nearly captures the intent of the original language.
\par 
\par 
\par \hich\af2\dbch\af11\loch\f2 \hich\f2 Copyright \'a9\loch\f2  Microsoft Corporation. All rights reserved\hich\af2\dbch\af11\loch\f2 .}{\loch\af2\insrsid6188942 
\par }}

================================================
FILE: dataset/msr-paraphrase-corpus/msr_paraphrase_README.htm
================================================
<html>

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 11 (filtered)">
<title>This file contains pairs of sentences gleaned over a period of 18 months
from thousands of news sources on the web</title>

<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:Courier;
	panose-1:2 7 4 9 2 2 5 2 4 4;}
@font-face
	{font-family:Wingdings;
	panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
	{font-family:"MS Mincho";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:SimSun;
	panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
	{font-family:"MS Gothic";
	panose-1:2 11 6 9 7 2 5 8 2 4;}
@font-face
	{font-family:"MS Gothic";
	panose-1:2 11 6 9 7 2 5 8 2 4;}
@font-face
	{font-family:"MS Mincho";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:Verdana;
	panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
	{font-family:"Franklin Gothic Medium";
	panose-1:2 11 6 3 2 1 2 2 2 4;}
@font-face
	{font-family:"\@SimSun";
	panose-1:2 1 6 0 3 1 1 1 1 1;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{margin:0cm;
	margin-bottom:.0001pt;
	font-size:12.0pt;
	font-family:"Times New Roman";}
h1
	{margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	page-break-after:avoid;
	font-size:16.0pt;
	font-family:Arial;}
h2
	{margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	page-break-after:avoid;
	font-size:14.0pt;
	font-family:Arial;
	font-style:italic;}
h3
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:42.55pt;
	margin-bottom:.0001pt;
	page-break-after:avoid;
	font-size:12.0pt;
	font-family:Arial;
	font-weight:normal;}
h4
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:42.55pt;
	margin-bottom:.0001pt;
	page-break-after:avoid;
	font-size:12.0pt;
	font-family:"Times New Roman";}
p.MsoHeader, li.MsoHeader, div.MsoHeader
	{margin:0cm;
	margin-bottom:.0001pt;
	layout-grid-mode:char;
	font-size:12.0pt;
	font-family:"Times New Roman";}
p.MsoFooter, li.MsoFooter, div.MsoFooter
	{margin:0cm;
	margin-bottom:.0001pt;
	layout-grid-mode:char;
	font-size:12.0pt;
	font-family:"Times New Roman";}
p.MsoDate, li.MsoDate, div.MsoDate
	{margin:0cm;
	margin-bottom:.0001pt;
	font-size:12.0pt;
	font-family:"Times New Roman";}
a:link, span.MsoHyperlink
	{color:blue;
	text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
	{color:purple;
	text-decoration:underline;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
	{margin:0cm;
	margin-bottom:.0001pt;
	font-size:8.0pt;
	font-family:Arial;}
ins
	{text-decoration:none;}
span.msoIns
	{text-decoration:underline;}
span.msoDel
	{text-decoration:line-through;
	color:red;}
 /* Page Definitions */
 @page Section1
	{size:612.0pt 792.0pt;
	margin:72.0pt 89.85pt 72.0pt 89.85pt;}
div.Section1
	{page:Section1;}
 /* List Definitions */
 ol
	{margin-bottom:0cm;}
ul
	{margin-bottom:0cm;}
-->
</style>

</head>

<body lang=JA link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal align=center style='text-align:center'><b><span lang=EN-US
style='font-size:14.0pt;font-family:Arial'>Microsoft Research Paraphrase Corpus</span></b></p>

<p class=MsoNormal align=center style='text-align:center'><span lang=EN-US>&nbsp;</span></p>

<p class=MsoNormal align=center style='text-align:center'><b><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Bill Dolan</span></b><b><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>, Chris Brockett, and
Chris Quirk</span></b></p>

<p class=MsoNormal align=center style='text-align:center'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>Microsoft Research</span></b></p>

<p class=MsoNormal align=center style='text-align:center'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>March 2, 2005</span></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>This document provides
some information about the creation of the corpus, along with results of the
annotation effort. If you use the corpus in your research, we would appreciate
your citing one or both of the following papers, which give some details of our
work on paraphrase and our data annotation efforts. (A paper describing in
detail how this corpus was created is currently in progress.) We are continuing
to tag data, and hope to release a larger version of this corpus to the
research community in the future.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><b><span lang=EN-US
style='font-size:8.5pt;font-family:Verdana'>Quirk, C., C. Brockett, and W. B.
Dolan. 2004. <a
href="http://research.microsoft.com/copyright/accept.asp?path=http://www.research.microsoft.com/nlp/publications/Paraphrase_EMNLP2004.pdf&amp;pub=ACL"><span
style='color:#003399'>Monolingual Machine Translation for Paraphrase Generation</span></a></span></b><span
lang=EN-US style='font-size:8.5pt;font-family:Verdana'>, In <i>Proceedings of
the 2004 Conference on Empirical Methods in Natural Language Processing</i>, Barcelona Spain. </span></p>

<p class=MsoNormal style='margin-left:36.0pt'><b><span lang=EN-US
style='font-size:8.5pt;font-family:Verdana'>Dolan W. B., C. Quirk, and C.
Brockett. 2004. <a
href="http://research.microsoft.com/copyright/accept.asp?path=http://www.research.microsoft.com/nlp/publications/Paraphrase_Coling.pdf&amp;pub=COLING"><span
style='color:#003399'>Unsupervised Construction of Large Paraphrase Corpora:
Exploiting Massively Parallel News Sources</span></a></span></b><span
lang=EN-US style='font-size:8.5pt;font-family:Verdana'>. <i>COLING 2004</i>, Geneva, Switzerland. </span></p>

<p class=MsoNormal><span lang=EN-US>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:21.25pt;text-indent:-21.25pt'><b><i><span
lang=EN-US style='font-size:14.0pt;font-family:Arial'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'>Introduction to the paraphrase tagging task</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>This dataset consists of
5801 pairs of sentences gleaned over a period of 18 months from thousands of
news sources on the web. Accompanying each pair is judgment reflecting whether multiple
human annotators considered the two sentences to be close enough in meaning to
be considered close paraphrases.</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Each pair of sentences
has been examined by 2 human judges who were asked to give a binary judgment as
to whether the two sentences could be considered semantically equivalent.
Disagreements were resolved by a 3rd judge. This annotation task was carried
out by an independent company, the Butler Hill Group, LLC. Mo Corston-Oliver
directed the effort, with Jeff Stevenson, Amy Muia, and David Rojas acting as
raters. Mo Corston-Oliver and Jeff Stevenson also helped with the preparation
of this document.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>After resolving
differences between raters, </span><span lang=EN-US>3900 </span><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>(67%) of the original </span><span
lang=EN-US>5801 </span><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>pairs were judged semantically equivalent.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>In many instances, the
pair of sentences rated by 2 judges as semantically equivalent will in fact
diverge semantically to at least some degree. If a full paraphrase relationship
can be described as bidirectional entailment, then the majority of the
equivalent pairs in this dataset exhibit mostly bidirectional entailments,
with one sentence containing information that differs from or is not contained
in the other. Some specific rating criteria are included in a tagging
specification (Section 3), but by and large the degree of mismatch allowed
before the pair was judged non-equivalent was left to the discretion of the
individual rater: did a particular set of asymmetries alter the meanings of the
sentences enough that they couldnt be considered the same in meaning? This
task was ill-defined enough that we were surprised at how high interrater
agreement was (averaging 83%). </span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>A series of experiments
aimed at making the judging task more concrete resulted in uniformly degraded interrater
agreement. Providing a checkbox to allow judges to specify that one sentence
entailed another, for instance, left the raters frustrated and had a negative
impact on agreement. Similarly, efforts to identify classes of syntactic
alternations that would not count against an equivalent judgment resulted, in
most cases, in a collapse in interrater agreement. The relatively few situations
where we found firm guidelines of this type to be helpful (e.g. in dealing with
anaphora) are included in Section 3.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'> </span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>The decision to tag
sentences as being more or less semantically equivalent, rather than
semantically equivalent was ultimately a practical one: insisting on complete
sets of bidirectional entailments would have ruled out all but the most trivial
sorts of paraphrase relationships, such as sentence pairs differing only a
single word or in the presence of titles like Mr. and Ms.. Our interest was
in identifying more complex paraphrase relationships, which required a somewhat
looser definition of what semantic equivalence means. In an effort to focus
on these more interesting pairs, the dataset was restricted to pairs with a
minimum word-based Levenshtein distance of </span><span lang=EN-US
style='font-size:10.0pt;font-family:"Franklin Gothic Medium"'>&#8805;</span><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'> 8.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Given our relatively
loose definition of equivalence, any 2 of the following sentences would probably
have been considered paraphrases, despite obvious differences in information
content:</span></p>

<p class=MsoNormal><span lang=EN-US>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-36.0pt;page-break-after:avoid;layout-grid-mode:
char'><span lang=EN-US style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>The genome of the fungal pathogen that causes Sudden Oak Death has
been sequenced by US scientists</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-36.0pt;page-break-after:avoid;layout-grid-mode:
char'><span lang=EN-US style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>Researchers announced Thursday they've completed the genetic
blueprint of the blight-causing culprit responsible for sudden oak death</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-36.0pt;page-break-after:avoid;layout-grid-mode:
char'><span lang=EN-US style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>Scientists have figured out the complete genetic code of a
virulent pathogen that has killed tens of thousands of California native oaks</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-justify:
inter-ideograph;text-indent:-36.0pt;layout-grid-mode:char'><span lang=EN-US
style='font-size:10.0pt;font-family:Symbol;color:black'><span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>The East Bay-based Joint Genome Institute said Thursday it has
unraveled the genetic blueprint for the diseases that cause the sudden death of
oak trees</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Raters were presented
with sentences in which several classes of named entities were replaced by
generic tags, so that Tuesday became %%DAY%%, $10,000 became %%MONEY%%,
and so on. The release versions, however, preserve the original strings.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Note that many of the
sentence pairs judged to be <b>not equivalent</b> will still overlap
significantly in information content and even wording. A variety of automatic
filtering techniques were used to create an initial dataset that was rich in
paraphrase relationships, and the success of these techniques meant that
approximately 70% of the pairs examined by raters were, by our criteria,
semantically equivalent. The remaining 30% represent a range of relationships,
from pairs that are completely unrelated semantically, to those that are
partially overlapping, to those that are almost-but-not-quite semantically
equivalent. For this reason, this <b>not equivalent</b> set should not be
used as negative training data.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>We have made every effort
to ensure that each sentence in this dataset has been given proper attribution.
If you encounter any errors/omissions, please contact Bill Dolan (<a
href="mailto:billdol@microsoft.com">billdol@microsoft.com</a>), and we will
promptly modify the data to reflect the correct information.</span></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'><span style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'><span style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'><span style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'><span style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal style='margin-left:21.25pt;text-indent:-21.25pt'><b><i><span
lang=EN-US style='font-size:14.0pt;font-family:Arial'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'>Methodology and Results</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>This
data set consists of 5801 sentence pairs, with a binary human judgment of
whether or not the pairing constitutes a paraphrase.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>2.1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Methodology</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>To generate the
judgments, we used 3 raters to score the sentence pairs according to a given
specification. Rater 1 scored all 5801 sentences. Rater 2 scored 3533
sentences, and Rater 3 scored 2268 sentences. For the sentences where Rater 1
and 2 did not agree on the judgment, Rater 3 gave a final judgment, while Rater
2 gave the final judgment on sentences where Rater 1 and Rater 3 did not agree.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>2.2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Interrater
Agreement</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>To
test interrater agreement, we took a simple percentage:</span></p>

<p class=MsoNormal style='page-break-after:avoid'><span lang=EN-US>&nbsp;</span></p>

<div align=center>

<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
 style='border-collapse:collapse;border:none'>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Total
  scored</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Total
  agreements</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Percentage
  agreement</span></p>
  </td>
 </tr>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Raters
  1 &amp; 2</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>3533</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>2904</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>82.20</span></p>
  </td>
 </tr>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Raters
  1 &amp; 3</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>2268</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>1921</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>84.70</span></p>
  </td>
 </tr>
</table>

</div>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>2.3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Overall
scoring results</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>We
computed scoring results for each individual (raw scores, before resolving</span><span
lang=EN-US> differences):</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<div align=center>

<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
 style='border-collapse:collapse;border:none'>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Total
  scored</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Number
  yes</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Percentage
  yes</span></p>
  </td>
 </tr>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Rater
  1</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>5801</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>3601</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>62.08</span></p>
  </td>
 </tr>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Rater
  2</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>3533</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>2589</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>73.28</span></p>
  </td>
 </tr>
 <tr>
  <td width=148 valign=top style='width:88.55pt;border:solid windowtext 1.0pt;
  border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Rater
  3</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>2268</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>1612</span></p>
  </td>
  <td width=148 valign=top style='width:88.55pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>71.08</span></p>
  </td>
 </tr>
</table>

</div>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>After resolving
differences, we judged 3900 out of 5801 sentence pairs to be valid paraphrases,
for a final percentage of 67.23%</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:28.1pt;text-indent:-28.1pt;page-break-after:
avoid'><b><i><span lang=EN-US style='font-family:Arial'>2.4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp; </span></span></i></b><b><i><u><span
lang=EN-US style='font-family:Arial'>Test/training</span></u></i></b></p>

<p class=MsoNormal style='page-break-after:avoid'><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>We assigned a random
sequence ID to each sentence pair, sorted them, and assigned the first 30% of
the data to be training and the last 70% to be test data. For obscure technical
reasons, the final test/train percentage is inexact (29.7% (1725 sentence
pairs) vs. 70.3% (4076 sentence pairs))</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><b><span lang=EN-US style='font-size:14.0pt'>&nbsp;</span></b></p>

<p class=MsoNormal style='margin-left:21.25pt;text-indent:-21.25pt'><b><i><span
lang=EN-US style='font-family:Arial'>3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-size:14.0pt;
font-family:Arial'>Detailed Tagging Guidelines</span></u></i></b><b><i><u><span
lang=EN-US style='font-family:Arial'> </span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-family:Arial'><span
 style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-family:Arial'><span
 style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>3.1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Equivalent
vs. not equivalent content</span></u></i></b></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-family:Arial'><span
 style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt'><span
lang=EN-US style='font-size:10.0pt;font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>In
this task, we are trying to determine if two sentences express the same
content.</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt'><span
lang=EN-US style='font-size:10.0pt;font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>As is
true for paraphrase in general, this may be realized by means of alternative
but similar syntactic constructions and lexical items, etc.</span></p>

<p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt'><span
lang=EN-US style='font-size:10.0pt;font-family:Symbol'><span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>In
general, the standard as to whether two sentences express the same content should
be relatively high, meaning that many of ambiguous cases should be marked
&quot;<b>not equivalent</b>&quot; rather than &quot;<b>equivalent</b>&quot;.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Examples
of sentences with <b>equivalent</b> content expressed via alternative lexical
items:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>The Senate Select
Committee on Intelligence is preparing a blistering report on <b>prewar
intelligence </b>on Iraq.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>American <b>intelligence
leading up to the war</b> on Iraq will be criticised by a powerful US Congressional committee due to report soon, officials said today.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>A strong geomagnetic
storm was expected to hit Earth today <b>with the potential to affect</b>
electrical grids and satellite communications.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>A strong geomagnetic
storm is expected to hit Earth sometime %%DAY%% and <b>could knock out</b>
electrical grids and satellite communications.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>These sentences are clearly paraphrases. The different lexical
items are still expressing the same content. </span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>This type of sentence pair should be
tagged as <b>equivalent</b>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>3.2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Equivalent
sentence pairs with minor differences in content</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Minor differences between
sentences can be overlooked when determining if two sentences are paraphrases.
For example:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>An autopsy found
Hatab's death was caused by &quot;strangulation/asphyxiation,&quot; Rawson said
%%DAY%%.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>An autopsy found that
Nagem Sadoon Hatab's death on %%DATE%% was caused by &quot;strangulation/asphyxiation,
Marine spokesman %%NUMBER%% st Lt. Dan Rawson said %%DAY%%.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>The
following sentences also express <b>equivalent</b> content:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:blue'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Mr. Concannon</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier;color:black'> <u>had
been doused in petrol</u>, <b>set himself alight</b> and <b>jumped onto a bike
to leap</b> <u>eight metres</u> <b>onto a mattress</b> below.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:blue'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>A SYDNEY man</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier;color:black'> <u>suffered
serious burns</u> <b>after setting himself alight</b> before <b>attempting to
jump a BMX bike</b> <u>off a toilet block</u> <b>into a pile of mattresses</b>
, </span><b><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:red'>police said</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:Courier;color:black'>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial;color:black'>The agent (<i>Mr.
Concanon</i>), the predicated actions (<i>set himself alight, jumped a bike</i>),
and important details (<i>onto a pile of mattresses</i>) are present in both
sentences. Additional lexical material in either sentence mainly serves to
embellish the main propositions (for example, . . .<i>suffered serious burns</i>
which is logically entailed by <i>set himself alight</i>). Also notice that
the details of a given proposition need not be exact: <i>a mattress </i>(sing.)
vs. <i>a pile of mattresses</i> (plur.). </span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>Finally, notice that the second of
the sentence pairs in the previous example is attributed to the police where
the first is not. This difference between sentences is also acceptable for
purposes of tagging them as paraphrases.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>For this type of sentence
pair, we want to mark them as equivalent (paraphrases). Notice that the
sentence pairs, while clearly similar overall in content, <i>both</i> differ in
additional, modifying content.. As the main content of the sentences similar in
meaning, we allow some minor content mismatch.</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>3.3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Anaphora</span></u></i></b></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US></span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Sometimes the difference between
two sentences involves anaphora (NPs and pronominal). These sentences can be
tagged as paraphrases despite the (sometimes) fairly large gap between them in
terms of their corresponding full-form NPs</span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>. Examples follow.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.3.1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'> Demonstratives</span></i></b></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>But Secretary of State Colin
Powell brushed off <b>this possibility</b>&nbsp; %%day%%.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Secretary of State Colin Powell
last week ruled out <b>a non-aggression treaty</b>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.3.2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>NP -&gt;
pro</span></i></b></h3>

<p class=MsoNormal style='page-break-after:avoid'><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Meteorologists predicted <b>the
storm</b> would become a category %%number%% hurricane before landfall.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>It</span></b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'> was predicted to become a
category 1 hurricane overnight.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></i></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.3.3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><span lang=EN-US style='font-size:10.0pt'>&nbsp;<b><i>Proper
NP (+animate) -&gt; pro</i></b></span></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Earlier, <b>he </b>told France
Inter-Radio , ''I think we can now qualify what is happening as a genuine
epidemic.''</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>''I think we can now qualify what
is happening as a genuine epidemic,'' <b>he<i>alth minister Jean-Francois
Mattei </i></b><i>said on France Inter Radio.</i></span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.3.4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>Title +
proper NP (+animate) -&gt; pro</span></i></b></h3>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-size:10.0pt;
font-family:Arial'><span style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>''United is continuing to deliver
major cost reductions and is now coupling that effort with significant unit
revenue improvement, '' <b>chief financial officer Jake Brace</b> said in a statement.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>''United is continuing to deliver
major cost reductions and is now coupling that effort with significant unit
revenue improvement,'' <b>he</b> said.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></i></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.3.5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><span lang=EN-US style='font-size:10.0pt'>&nbsp;<b><i>NP
(-animate)&nbsp;-&gt; pro</i></b></span></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>''Spoofing</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier'> is a problem faced by
any company with a trusted domain name that uses e-mail to communicate with its
customers.</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>It</span></b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'> is a problem for Amazon and
others that have a trusted domain name and use e-mail to communicate with
customers.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><b><i><u><span lang=EN-US style='font-family:Arial'><span
 style='text-decoration:none'>&nbsp;</span></span></u></i></b></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>3.4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Inherent
ambiguity of the task</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>The relatively
holistic/vague criteria established above should work well for most sentence
pairs. In the end, were tagging something thats not quite paraphrase, but
something like semantic near-equivalence  sentences pairs that ideally
involve complete sets of bidirectional entailments, but which in fact often
have some entailment asymmetries or other mismatches. The issue here is when
those asymmetries/differences become significant enough to make the pair
different enough that you dont think they mean more or less the same thing
anymore, where more or less becomes a personal judgment call.</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:1.0cm;text-indent:-1.0cm'><b><i><span
lang=EN-US style='font-family:Arial'>3.5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-family:Arial'>Sentence
pairs with different content</span></u></i></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.5.1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><u><span lang=EN-US style='font-size:10.0pt'></span></u></i></b><b><i><span
lang=EN-US style='font-size:10.0pt'>Different content: prototypical example</span></i></b></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>In contrast to the examples above, the following sentences clearly
express <b>different</b> content:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Prime Minister
Junichiro Koizumi</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:Courier;color:black'> did not have to dissolve </span><b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier;color:red'>parliament</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier;color:black'> until next
summer , when elections for the upper house are also due .</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Prime Minister
Junichiro Koizumi</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:Courier;color:black'> has urged </span><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:red'>Nakasone</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier;color:black'> to give up
his seat in accordance with the new age rule .</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>While the principal agent
(<i><span style='color:black'>Koizumi</span></i><span style='color:black'>)<b> </b>is
the same, predicated actions, i.e. verbs (<i>dissolve / urge</i>) and other
arguments (<i>parliament / Nakasone</i>) are clearly different. The additional
material found in either sentence does not embellish the main proposition but
instead contains important content itself. These two sentence pairs should be
marked as <b>not equivalent</b> in that while they share an agent Koizumi,
they are about unrelated events. Again, </span>ambiguous cases should be marked
&quot;<b>not equivalent</b>&quot; rather than &quot;<b>equivalent</b>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.5.2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>Shared
content of the same event, etc. but lacking details (one sentence is a superset
of the other)</span></i></b></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Researchers have
identified a genetic pilot light for puberty in both mice and humans .</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:27.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>The discovery of a
gene that appears to be a key regulator of puberty in humans and mice <b>could
lead to new infertility treatments and contraceptives</b>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial;color:black'>These
sentences are similar in content, refer to a similar key piece of information,
but cannot be marked as <b>equivalent</b>. The sentences should be tagged as
<b>not equivalent</b> because even though the </span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>content of the sentences is similar,
one sentence is a significantly larger superset of the other: all the content
of the first sentence is in the second, but not vice-versa. The superset
sentence contains important content information (above, in bold) not present in
the second sentence.</span></p>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>&nbsp;</span></b></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>Some
similar sentence pairs follow (missing content in superset sentence is in
bold):</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></i></p>

<p class=MsoNormal style='margin-left:18.0pt'><u><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>SOME %%NUMBER%% jobs</span></u><span
lang=EN-US style='font-size:10.0pt;font-family:Courier'> are set to go at
Cadbury Schweppes , the confectionery and drinks giant , <b>as part of a
sweeping cost reduction programme announced today .</b></span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Confectionery group Cadbury
Schweppes has warned of further cuts to <u>its %%NUMBER%% -strong UK workforce</u> .</span></p>

<p class=MsoNormal><i><span lang=EN-US style='font-size:10.0pt;font-family:
Arial;color:navy'>&nbsp;</span></i></p>

<p class=MsoNormal style='margin-left:18.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial;color:black'>&nbsp;</span></i></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial;color:black'>This sentence
is difficult in that, while one sentence is a superset of the other, it is <i>also</i>
arguably the case that the sentences are almost paraphrases except when we
see that</span><span lang=EN-US style='font-size:10.0pt;font-family:Arial'> the
content of the underlined portions in the two sentences above is exclusive to
one sentence. In the end, however, the material in bold is an important
difference in content between the sentences, and adds important additional
content, leading us to prefer tag them as <b>not equivalent</b>.</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Please use your best
judgment in choosing to tag sentences as <b>equivalent</b> or <b>not
equivalent</b>. Many of the sentence pairs you see differ due to the way
editors eliminate language/content they deem unnecessary. Sometimes the two
sentences will differ in information that conveys important additional
information. Sentences like these should be tagged as <b>not equivalent</b>:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial;
color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>The former wife of
rapper Eminem has been electronically tagged after missing two court
appearances .</span></p>

<p class=MsoNormal style='margin-left:36.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:navy'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>After missing two
court appearances <b>in a cocaine possession case</b> , Eminem's ex-wife has
been placed under electronic house arrest .</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial;color:black'>&nbsp;</span></i></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>The issue of whether or
not the extra/missing information is significant enough to warrant treating the
sentences as not equivalent amounts to a judgment call. Minor differences
between sentences can be overlooked when determining if two sentences are
paraphrases. As seen in a previous example sentence pair, the only differences
in content between the following sentences are the reduced forms of names and
adverbial modifiers (dates). <span style='color:black'>There are no major
differences in content between these sentences. They can be marked as <b>equivalent</b>.</span></span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>An autopsy found
Hatab's death was caused by &quot;strangulation/asphyxiation,&quot; Rawson said
%%DAY%% .</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>An autopsy found that
Nagem Sadoon Hatab's death <b>on %%DATE%%</b> was caused by &quot;
strangulation/asphyxiation , &quot; Marine spokesman %%NUMBER%% st Lt. Dan
Rawson said %%DAY%%.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial;color:black'>&nbsp;</span></i></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>The role of content
asymmetries in determining whether sentences should be marked as equivalent/not
equivalent is also linked to sentence length. In a pair of 20-word sentences,
the presence/absence of a single modifier might be lost in the noise, while in
a pair of 5 word sentences it might take on much greater significance. There is
no good way to normalize for length in such cases, so again, just depend on
your own judgment.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial;color:black'> </span></i></p>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>&nbsp;</span></b></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.5.3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>Cannot
determine if sentences refer to the same event</span></i></b></h3>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>&nbsp;</span></b></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>More than <b>%%NUMBER%%
acres</b> burned and more than %%NUMBER%% homes were destroyed in the <b>massive</b>
Cedar <b>Fire</b> .</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><b><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Major fires</span></b><span
lang=EN-US style='font-size:10.0pt;font-family:Courier'> had burned <b>%%NUMBER%%
acres</b> by early last night.</span></p>

<p class=MsoNormal><i><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>&nbsp;</span></i></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>In this example, both
sentences could be about the same series of events (fires). However, these are
possibly about two events: one is about a specific fire, the other about a
cluster of fires. This should lead us to annotate these sentences as expressing
<b>not equivalent</b> content. Another such example follows:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>The spokeswoman said four soldiers
were wounded in the attack, which took place just before noon around %%NUMBER%%
km ( %%NUMBER%% miles ) north of the capital Baghdad.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>Two US soldiers were killed in a
mortar attack near the Iraqi town of Samarra yesterday , a US military spokeswoman said.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>Notice that both
sentences report the deaths of soldiers in an attack in <i>some</i> Iraqi town.
However, it is clear that the two sentences could be describing two isolated
events. The fact that there is a discrepancy in the number of reported deaths
should add to ones suspicions that this might be the case. Since the sentences
share some content, but we cannot be sure they refer to the same event, we
should seek to err on the side of caution and mark them as <b>not equivalent</b>.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.5.4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>Shared
content but different rhetorical structure</span></i></b></h3>

<p class=MsoNormal><i><span lang=EN-US style='font-size:10.0pt;font-family:
Arial;color:black'>&nbsp;</span></i></p>

<p class=MsoNormal style='margin-left:12.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>The <b>search feature</b>
works with around <b>%%NUMBER%% titles</b> from <b>%%NUMBER%% publishers</b>,
which translates into some <b>%%NUMBER%% million pages</b> of searchable text .</span></p>

<p class=MsoNormal style='margin-left:12.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:12.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>This innovative <b>search
feature</b> lets Amazon customers search the full text of a title to find a
book , supplementing the existing search by author or title .</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>In this sentence pair,
both sentences clearly make statements about a new search feature. However,
notice the emphasis placed on the amount of data in the first sentence via the
rhetorical device of reiterated citation of numbers. </span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>The two sentences are about the same
subject matter, but they are significantly different in that the first might
occur as a detailed exploration of the second</span><span lang=EN-US
style='font-size:10.0pt;font-family:Arial'>. Therefore, this leads us to mark
the sentences as <b>not equivalent</b>.</span></p>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
Arial'>&nbsp;</span></b></p>

<h3 style='margin-left:35.45pt;text-indent:-35.45pt'><b><i><span lang=EN-US
style='font-size:10.0pt'>3.5.5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></i></b><b><i><span lang=EN-US style='font-size:10.0pt'>Same
event but details different emphasis</span></i></b></h3>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>A Hunter Valley woman sentenced to %%NUMBER%% years jail for killing her four babies was only a
danger to children in her care, a court was told.</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>As she stood up
yesterday to receive a sentence of %%NUMBER%% years for killing her four
babies, Kathleen Folbigg showed no emotion.</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>These sentences clearly
report information related to the same event, but the first sentence emphasizes
a particular legal argument presented by the convicted womans lawyer, while
the second focuses on her apparent mental state at the trial. This type of
sentence pair should be tagged as <b>not equivalent</b>. Given the magnitude
of the semantic divergence between these two sentences  both in terms of
content and emphasis  they should be treated as not equivalent.</span></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><i><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></i></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial'>More example sentence
pairs which, while clearly significantly overlapping in content, should be
tagged as <b>not equivalent</b>:</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Authorities dubbed the
investigation Operation Rollback , a reference to Wal-Mart's name for price
reductions .</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Courier;
color:black'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>The ICE's
investigation , known as &quot; Operation Rollback &quot; , targeted workers at
%%NUMBER%% Wal-Mart stores in %%NUMBER%% states .</span></p>

<p class=MsoNormal><span lang=EN-US style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Researchers also found
that women with mutations in the BRCA1 or BRCA2 gene have a %%NUMBER%% % to
%%NUMBER%% % risk of ovarian cancer , depending on which gene is affected .</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier'>&nbsp;</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><span lang=EN-US
style='font-size:10.0pt;font-family:Courier;color:black'>Earlier studies had
suggested that the breast cancer risk from the gene mutations ranged from
%%NUMBER%% % to %%NUMBER%% % .</span></p>

<p class=MsoNormal style='margin-left:18.0pt'><i><span lang=EN-US
style='font-size:10.0pt;font-family:Arial;color:black'>&nbsp;</span></i></p>

<p class=MsoNormal style='text-align:justify;text-justify:inter-ideograph'><span
lang=EN-US style='font-size:10.0pt;font-family:Arial;color:black'>Note that
while the sentences may refer to the same piece of information, the inclusion
of <i>earlier studies.</i> suggests this may not be the case. Therefore,
they should be tagged as <b>not equivalent</b>.</span></p>

</div>

</body>

</html>


================================================
FILE: dataset/msr-paraphrase-corpus/msr_paraphrase_README.rtf
================================================
{\rtf1\ansi\ansicpg932\uc2\deff0\stshfdbch11\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;}
{\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f5\fmodern\fcharset0\fprq1{\*\panose 02070409020205020404}Courier;}
{\f10\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}Wingdings;}{\f11\froman\fcharset128\fprq1{\*\panose 02020609040205080304}\'82\'6c\'82\'72 \'96\'be\'92\'a9{\*\falt MS Mincho};}
{\f13\fnil\fcharset134\fprq2{\*\panose 02010600030101010101}SimSun{\*\falt \'cb\'ce\'cc\'e5};}{\f15\fmodern\fcharset128\fprq1{\*\panose 020b0609070205080204}\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e{\*\falt MS Gothic};}
{\f39\fmodern\fcharset128\fprq1{\*\panose 020b0609070205080204}@\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e;}{\f40\froman\fcharset128\fprq1{\*\panose 02020609040205080304}@\'82\'6c\'82\'72 \'96\'be\'92\'a9;}
{\f43\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Verdana;}{\f44\fswiss\fcharset0\fprq2{\*\panose 020b0603020102020204}Franklin Gothic Medium;}{\f45\fnil\fcharset134\fprq2{\*\panose 02010600030101010101}@SimSun;}
{\f46\froman\fcharset238\fprq2 Times New Roman CE;}{\f47\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f49\froman\fcharset161\fprq2 Times New Roman Greek;}{\f50\froman\fcharset162\fprq2 Times New Roman Tur;}
{\f51\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f52\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f53\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f54\froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
{\f56\fswiss\fcharset238\fprq2 Arial CE;}{\f57\fswiss\fcharset204\fprq2 Arial Cyr;}{\f59\fswiss\fcharset161\fprq2 Arial Greek;}{\f60\fswiss\fcharset162\fprq2 Arial Tur;}{\f61\fswiss\fcharset177\fprq2 Arial (Hebrew);}
{\f62\fswiss\fcharset178\fprq2 Arial (Arabic);}{\f63\fswiss\fcharset186\fprq2 Arial Baltic;}{\f64\fswiss\fcharset163\fprq2 Arial (Vietnamese);}{\f66\fmodern\fcharset238\fprq1 Courier New CE;}{\f67\fmodern\fcharset204\fprq1 Courier New Cyr;}
{\f69\fmodern\fcharset161\fprq1 Courier New Greek;}{\f70\fmodern\fcharset162\fprq1 Courier New Tur;}{\f71\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f72\fmodern\fcharset178\fprq1 Courier New (Arabic);}
{\f73\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f74\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f158\froman\fcharset0\fprq1 MS Mincho Western{\*\falt MS Mincho};}{\f156\froman\fcharset238\fprq1 MS Mincho CE{\*\falt MS Mincho};}
{\f157\froman\fcharset204\fprq1 MS Mincho Cyr{\*\falt MS Mincho};}{\f159\froman\fcharset161\fprq1 MS Mincho Greek{\*\falt MS Mincho};}{\f160\froman\fcharset162\fprq1 MS Mincho Tur{\*\falt MS Mincho};}
{\f163\froman\fcharset186\fprq1 MS Mincho Baltic{\*\falt MS Mincho};}{\f178\fnil\fcharset0\fprq2 SimSun Western{\*\falt \'cb\'ce\'cc\'e5};}{\f198\fmodern\fcharset0\fprq1 MS Gothic Western{\*\falt MS Gothic};}
{\f196\fmodern\fcharset238\fprq1 MS Gothic CE{\*\falt MS Gothic};}{\f197\fmodern\fcharset204\fprq1 MS Gothic Cyr{\*\falt MS Gothic};}{\f199\fmodern\fcharset161\fprq1 MS Gothic Greek{\*\falt MS Gothic};}
{\f200\fmodern\fcharset162\fprq1 MS Gothic Tur{\*\falt MS Gothic};}{\f203\fmodern\fcharset186\fprq1 MS Gothic Baltic{\*\falt MS Gothic};}{\f438\fmodern\fcharset0\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e Western;}
{\f436\fmodern\fcharset238\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e CE;}{\f437\fmodern\fcharset204\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e Cyr;}
{\f439\fmodern\fcharset161\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e Greek;}{\f440\fmodern\fcharset162\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e Tur;}
{\f443\fmodern\fcharset186\fprq1 @\'82\'6c\'82\'72 \'83\'53\'83\'56\'83\'62\'83\'4e Baltic;}{\f448\froman\fcharset0\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Western;}{\f446\froman\fcharset238\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 CE;}
{\f447\froman\fcharset204\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Cyr;}{\f449\froman\fcharset161\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Greek;}{\f450\froman\fcharset162\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Tur;}
{\f453\froman\fcharset186\fprq1 @\'82\'6c\'82\'72 \'96\'be\'92\'a9 Baltic;}{\f476\fswiss\fcharset238\fprq2 Verdana CE;}{\f477\fswiss\fcharset204\fprq2 Verdana Cyr;}{\f479\fswiss\fcharset161\fprq2 Verdana Greek;}
{\f480\fswiss\fcharset162\fprq2 Verdana Tur;}{\f483\fswiss\fcharset186\fprq2 Verdana Baltic;}{\f484\fswiss\fcharset163\fprq2 Verdana (Vietnamese);}{\f486\fswiss\fcharset238\fprq2 Franklin Gothic Medium CE;}
{\f487\fswiss\fcharset204\fprq2 Franklin Gothic Medium Cyr;}{\f489\fswiss\fcharset161\fprq2 Franklin Gothic Medium Greek;}{\f490\fswiss\fcharset162\fprq2 Franklin Gothic Medium Tur;}{\f493\fswiss\fcharset186\fprq2 Franklin Gothic Medium Baltic;}
{\f498\fnil\fcharset0\fprq2 @SimSun Western;}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;
\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green51\blue153;}{\stylesheet{
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 \snext0 Normal;}{
\s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \b\fs32\lang1033\langfe1041\kerning32\loch\f1\hich\af1\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext0 \styrsid12138041 heading 1;}{
\s2\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \b\i\fs28\lang1033\langfe1041\loch\f1\hich\af1\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext0 \styrsid12138041 heading 2;}{
\s3\ql \li851\ri0\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin851\itap0 \fs24\lang1033\langfe1041\loch\f1\hich\af1\dbch\af15\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext0 \styrsid15927319 heading 3;}{
\s4\ql \li851\ri0\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel3\adjustright\rin0\lin851\itap0 \b\fs24\lang1033\langfe1041\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext0 \styrsid15927319 heading 4;}{\*\cs10 \additive 
\ssemihidden Default Paragraph Font;}{\*\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv 
\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\loch\f0\hich\af0\dbch\af11\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{\*\cs15 \additive \ul\cf2 \sbasedon10 \styrsid3281436 
Hyperlink;}{\*\ts16\tsrowd\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
\fs20\lang1024\langfe1024\loch\f0\hich\af0\dbch\af11\cgrid\langnp1024\langfenp1024 \sbasedon11 \snext16 \styrsid3362214 Table Grid;}{\s17\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
\fs24\lang1033\langfe1041\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext0 \styrsid2313633 Date;}{\s18\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
\fs16\lang1033\langfe1041\loch\f1\hich\af1\dbch\af15\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext18 \ssemihidden \styrsid14623808 Balloon Text;}{\s19\ql \li0\ri0\widctlpar
\tqc\tx4252\tqr\tx8504\aspalpha\aspnum\faauto\nosnaplinegrid\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext19 \styrsid15927319 header;}{\s20\ql \li0\ri0\widctlpar
\tqc\tx4252\tqr\tx8504\aspalpha\aspnum\faauto\nosnaplinegrid\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\f0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 \sbasedon0 \snext20 \styrsid15927319 footer;}{\*\cs21 \additive 
\sbasedon10 \styrsid5994305 page number;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\listtable{\list\listtemplateid1161447578\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0
{\leveltext\leveltemplateid67698689\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext
\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698693
\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698689
\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}
\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698693\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 
\fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698689\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li5040
\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel
\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698693\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid431631336}
{\list\listtemplateid-1402815602{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\'00;}{\levelnumbers\'01;}\fbias0 \fi-390\li390\jclisttab\tx390\lin390 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat0\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \fi-390\li390\jclisttab\tx390\lin390 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1800\li1800\jclisttab\tx1800\lin1800 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1800\li1800\jclisttab\tx1800\lin1800 }{\listname ;}\listid457771252}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}
\fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fi-851\li851\jclisttab\tx851\lin851 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid550504541}
{\list\listtemplateid2133510874\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid1716412224\'01{\uc1\u-3913 ?};}{\levelnumbers;}
\loch\af3\hich\af3\dbch\af13\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 
\fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li2160
\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 
}{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\leveltemplateid67698693\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid610820163}{\list\listtemplateid-147130004{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fs20\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'01o;}{\levelnumbers;}\f2\fs20\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}
\f10\fs20\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li2880
\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel
\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fs20\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid679893778}{\list\listtemplateid-829655036{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'01\'00;}{\levelnumbers\'01;}\ulnone\fbias0 \fi-555\li555\jclisttab\tx555\lin555 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers
\'01\'03;}\ulnone\fbias0 \fi-555\li555\jclisttab\tx555\lin555 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\ulnone\fbias0 \fi-720\li720
\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\ulnone\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\ulnone\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\ulnone\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\ulnone\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\ulnone\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\ulnone\fbias0 \fi-1800\li1800
\jclisttab\tx1800\lin1800 }{\listname ;}\listid744495498}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \fi-425\li425
\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fbias0 \fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0
\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid761267708}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fbias0 \fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers
\'01\'03\'05\'07;}\fbias0 \fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 
\fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1134\li1134
\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1276\li1276
\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 
\fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers
\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid843324955}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fbias0 
\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-709\li709\jclisttab\tx709\lin709 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid870872927}
{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fbias0 \fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid880091234}{\list\listtemplateid-1775071652{\listlevel\levelnfc0
\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'01\'00;}{\levelnumbers\'01;}\fbias0 \fi-660\li660\jclisttab\tx660\lin660 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat2
\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \fi-660\li690\jclisttab\tx690\lin690 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat4\levelspace0\levelindent0{\leveltext
\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-720\li780\jclisttab\tx780\lin780 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers
\'01\'03\'05\'07;}\fbias0 \fi-720\li810\jclisttab\tx810\lin810 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 
\fi-1080\li1200\jclisttab\tx1200\lin1200 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1080\li1230
\jclisttab\tx1230\lin1230 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1440\li1620
\jclisttab\tx1620\lin1620 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 
\fi-1440\li1650\jclisttab\tx1650\lin1650 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers
\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1800\li2040\jclisttab\tx2040\lin2040 }{\listname ;}\listid1074741133}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fbias0 \fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fbias0 
\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-709\li709\jclisttab\tx709\lin709 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid1078210532
\liststyleid1217929462}{\list\listtemplateid-1780467540{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'01\'00;}{\levelnumbers\'01;}\f0\fbias0 \fi-408\li408\jclisttab\tx408\lin408 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\f0\fbias0 \fi-408\li408\jclisttab\tx408\lin408 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat3\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\f0\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\f0\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\f0\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\f0\fbias0 \fi-1080\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\f0\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\f0\fbias0 \fi-1440\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\f0\fbias0 \fi-1800\li1800\jclisttab\tx1800\lin1800 }{\listname ;}\listid1111631278}{\list\listtemplateid67698719{\listlevel\levelnfc0
\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers
\'01\'03\'05;}\fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fi-851\li851
\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992\jclisttab\tx992\lin992 }{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0
\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0
\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid1217929462
{\*\liststylename 1 / 1.1 / 1.1.1;}}{\list\listtemplateid1161447578{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li720
\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext
\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 
\fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3913 ?};}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }
{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\'01{\uc1\u-3929 ?};}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1227111723}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}
\fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fi-851\li851\jclisttab\tx851\lin851 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid1410998889}
{\list\listtemplateid365342112{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat22\levelspace0\levelindent0{\leveltext\'03\'00.0;}{\levelnumbers\'01;}\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \fi-720\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-720\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-1080\li3240\jclisttab\tx3240\lin3240 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-1440\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1440\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1800\li6120\jclisttab\tx6120\lin6120 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1800\li6840\jclisttab\tx6840\lin6840 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-2160\li7920\jclisttab\tx7920\lin7920 }{\listname ;}\listid1716854414}{\list\listtemplateid67698719{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}
\fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fi-851\li851\jclisttab\tx851\lin851 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid1778790640}{\list\listtemplateid67698719
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fi-709\li709\jclisttab\tx709\lin709 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers
\'01\'03\'05\'07;}\fi-851\li851\jclisttab\tx851\lin851 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992
\jclisttab\tx992\lin992 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134
\jclisttab\tx1134\lin1134 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276
\jclisttab\tx1276\lin1276 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418
\jclisttab\tx1418\lin1418 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}
\fi-1559\li1559\jclisttab\tx1559\lin1559 }{\listname ;}\listid1838499815}{\list\listtemplateid1303278200{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat2\levelspace0\levelindent0{\leveltext\'03\'00.0;}{\levelnumbers\'01;}
\fbias0 \fi-720\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03\'00.\'01;}{\levelnumbers\'01\'03;}\fbias0 \fi-720\li1440\jclisttab\tx1440\lin1440 }
{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'05\'00.\'01.\'02;}{\levelnumbers\'01\'03\'05;}\fbias0 \fi-720\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0
\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'07\'00.\'01.\'02.\'03;}{\levelnumbers\'01\'03\'05\'07;}\fbias0 \fi-1080\li3240\jclisttab\tx3240\lin3240 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
\levelstartat1\levelspace0\levelindent0{\leveltext\'09\'00.\'01.\'02.\'03.\'04;}{\levelnumbers\'01\'03\'05\'07\'09;}\fbias0 \fi-1440\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace0\levelindent0{\leveltext\'0b\'00.\'01.\'02.\'03.\'04.\'05;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fbias0 \fi-1440\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'0d\'00.\'01.\'02.\'03.\'04.\'05.\'06;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fbias0 \fi-1800\li6120\jclisttab\tx6120\lin6120 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
\levelindent0{\leveltext\'0f\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fbias0 \fi-1800\li6840\jclisttab\tx6840\lin6840 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
\levelspace0\levelindent0{\leveltext\'11\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fbias0 \fi-2160\li7920\jclisttab\tx7920\lin7920 }{\listname ;}\listid1985623657}}{\*\listoverridetable
{\listoverride\listid880091234\listoverridecount0\ls1}{\listoverride\listid1985623657\listoverridecount0\ls2}{\listoverride\listid744495498\listoverridecount0\ls3}{\listoverride\listid610820163\listoverridecount0\ls4}{\listoverride\listid431631336
\listoverridecount0\ls5}{\listoverride\listid679893778\listoverridecount0\ls6}{\listoverride\listid1111631278\listoverridecount0\ls7}{\listoverride\listid1078210532\listoverridecount0\ls8}{\listoverride\listid1716854414\listoverridecount0\ls9}
{\listoverride\listid870872927\listoverridecount0\ls10}{\listoverride\listid1217929462\listoverridecount0\ls11}{\listoverride\listid457771252\listoverridecount0\ls12}{\listoverride\listid1227111723\listoverridecount0\ls13}{\listoverride\listid431631336
\listoverridecount9{\lfolevel\listoverrideformat{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\fi-425\li425\jclisttab\tx425\lin425 }}{\lfolevel
\listoverrideformat{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'04\'00.\'01.;}{\levelnumbers\'01\'03;}\fi-567\li567\jclisttab\tx567\lin567 }}{\lfolevel\listoverrideformat{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'06\'00.\'01.\'02.;}{\levelnumbers\'01\'03\'05;}\fi-709\li709\jclisttab\tx709\lin709 }}{\lfolevel\listoverrideformat{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'08\'00.\'01.\'02.\'03.;}{\levelnumbers\'01\'03\'05\'07;}\fi-851\li851\jclisttab\tx851\lin851 }}{\lfolevel\listoverrideformat{\listlevel\levelnfc0\levelnfcn0\leveljc0
\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0a\'00.\'01.\'02.\'03.\'04.;}{\levelnumbers\'01\'03\'05\'07\'09;}\fi-992\li992\jclisttab\tx992\lin992 }}{\lfolevel\listoverrideformat{\listlevel\levelnfc0\levelnfcn0\leveljc0
\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0c\'00.\'01.\'02.\'03.\'04.\'05.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b;}\fi-1134\li1134\jclisttab\tx1134\lin1134 }}{\lfolevel\listoverrideformat{\listlevel\levelnfc0\levelnfcn0
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'0e\'00.\'01.\'02.\'03.\'04.\'05.\'06.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d;}\fi-1276\li1276\jclisttab\tx1276\lin1276 }}{\lfolevel\listoverrideformat{\listlevel
\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'10\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f;}\fi-1418\li1418\jclisttab\tx1418\lin1418 }}{\lfolevel
\listoverrideformat{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'12\'00.\'01.\'02.\'03.\'04.\'05.\'06.\'07.\'08.;}{\levelnumbers\'01\'03\'05\'07\'09\'0b\'0d\'0f\'11;}\fi-1559\li1559
\jclisttab\tx1559\lin1559 }}\ls14}{\listoverride\listid1074741133\listoverridecount0\ls15}{\listoverride\listid843324955\listoverridecount0\ls16}{\listoverride\listid550504541\listoverridecount0\ls17}{\listoverride\listid1838499815\listoverridecount0\ls18
}{\listoverride\listid761267708\listoverridecount0\ls19}{\listoverride\listid1410998889\listoverridecount0\ls20}{\listoverride\listid1778790640\listoverridecount0\ls21}}{\*\pgptbl {\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp0\itap0\li0\ri0\sb0\sa0}}
{\*\rsidtbl \rsid3776\rsid14156\rsid68270\rsid346346\rsid420013\rsid619708\rsid742669\rsid799020\rsid874040\rsid923844\rsid941686\rsid1123285\rsid1124373\rsid1257404\rsid1336933\rsid1593171\rsid1654934\rsid1710843\rsid1791288\rsid1906673\rsid2039825
\rsid2171215\rsid2237966\rsid2305248\rsid2313633\rsid2325037\rsid2383724\rsid2568982\rsid2569839\rsid2956143\rsid3281436\rsid3362214\rsid3408880\rsid3691716\rsid3767215\rsid3955478\rsid4197301\rsid4261794\rsid4348373\rsid4394054\rsid4479483\rsid4588071
\rsid4614938\rsid5001629\rsid5312207\rsid5439948\rsid5514607\rsid5590422\rsid5711444\rsid5717955\rsid5841584\rsid5994305\rsid6049540\rsid6246219\rsid6293529\rsid6648166\rsid6777865\rsid6900316\rsid7231394\rsid7292007\rsid7682677\rsid7955676\rsid8411724
\rsid8720584\rsid8915437\rsid9001775\rsid9115031\rsid9118320\rsid9195402\rsid9584094\rsid9597661\rsid9709584\rsid9771523\rsid9787409\rsid10308052\rsid10382079\rsid10695583\rsid10764822\rsid10896806\rsid10960926\rsid11147522\rsid11168695\rsid11218914
\rsid11477563\rsid11557177\rsid11805065\rsid11870529\rsid12083636\rsid12124298\rsid12138041\rsid12265508\rsid12335180\rsid12413466\rsid12675160\rsid12864072\rsid12867398\rsid12998414\rsid13054796\rsid13183636\rsid13264869\rsid13436006\rsid13839497
\rsid13968298\rsid13984194\rsid14121880\rsid14243094\rsid14422934\rsid14508415\rsid14551657\rsid14573233\rsid14623808\rsid14947488\rsid15009449\rsid15010443\rsid15145476\rsid15150851\rsid15358814\rsid15562647\rsid15687313\rsid15737115\rsid15738572
\rsid15809473\rsid15927319\rsid15951796\rsid16384408}{\*\generator Microsoft Word 11.0.6359;}{\info{\title This file contains pairs of sentences gleaned over a period of 18 months from thousands of news sources on the web}{\author BILLDOL}
{\operator chrisbkt}{\creatim\yr2005\mo3\dy3\hr12\min5}{\revtim\yr2005\mo3\dy3\hr12\min5}{\printim\yr2005\mo3\dy3\hr9\min58}{\version2}{\edmins1}{\nofpages8}{\nofwords3216}{\nofchars18337}{\*\company Microsoft Corporation}{\nofcharsws21510}{\vern24703}}
\paperw12240\paperh15840\margl1797\margr1797\margt1440\margb1440\gutter0 \widowctrl\ftnbj\aenddoc\revisions\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1797\dgvorigin1440\dghshow1
\dgvshow1\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct
\asianbrkrule\rsidroot3281436\newtblstyruls\nogrowautofit\viewbksp1 \fet0{\*\ftnsep \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {
\insrsid2568982 \chftnsep 
\par }}{\*\ftnsepc \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {\insrsid2568982 \chftnsepc 
\par }}{\*\aftnsep \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {\insrsid2568982 \chftnsep 
\par }}{\*\aftnsepc \pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {\insrsid2568982 \chftnsepc 
\par }}\sectd \psz1\linex0\endnhere\titlepg\sectlinegrid360\sectdefaultcl\sectrsid15927319\sftnbj {\footer \pard\plain \s20\ql \li0\ri0\widctlpar\tqc\tx4252\tqr\tx8504\aspalpha\aspnum\faauto\nosnaplinegrid\adjustright\rin0\lin0\itap0\pararsid15927319 
\fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {\fs20\insrsid2568982\charrsid15927319 
\par }\pard \s20\qc \li0\ri0\widctlpar\tqc\tx4252\tqr\tx8504\aspalpha\aspnum\faauto\nosnaplinegrid\adjustright\rin0\lin0\itap0\pararsid5994305 {\field{\*\fldinst {\cs21\f1\fs20\insrsid2568982\charrsid5994305 \hich\af1\dbch\af11\loch\f1  PAGE }}{\fldrslt {
\cs21\f1\fs20\lang1024\langfe1024\noproof\insrsid2568982 \hich\af1\dbch\af11\loch\f1 8}}}{\f1\fs20\insrsid2568982\charrsid5994305 
\par }}{\footerf \pard\plain \s20\qc \li0\ri0\widctlpar\tqc\tx4252\tqr\tx8504\aspalpha\aspnum\faauto\nosnaplinegrid\adjustright\rin0\lin0\itap0\pararsid5994305 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {
\fs20\insrsid2568982\charrsid15927319 \hich\af0\dbch\af11\loch\f0 Copyright }{\fs20\insrsid2568982\charrsid15927319 \loch\af0\dbch\af11\hich\f0 \'a9\loch\f0  2005 Microsoft Corporation. All rights reserved.}{\insrsid2568982 
\par }}{\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta \dbch .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang 
{\pntxta \dbch )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}
{\pntxta \dbch )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb \dbch (}{\pntxta \dbch )}}\pard\plain 
\qc \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid874040 \fs24\lang1033\langfe1041\loch\af0\hich\af0\dbch\af11\cgrid\langnp1033\langfenp1041 {\b\f1\fs28\insrsid68270\charrsid11557177 \hich\af1\dbch\af11\loch\f1 
Microsoft Research}{\b\f1\fs28\insrsid12675160\charrsid11557177 \hich\af1\dbch\af11\loch\f1  }{\b\f1\fs28\insrsid2313633\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Paraphrase}{\b\f1\fs28\insrsid12675160\charrsid11557177 \hich\af1\dbch\af11\loch\f1 
 Corpus}{\b\f1\fs28\insrsid9115031\charrsid11557177 
\par }{\insrsid6293529 
\par }{\b\f1\fs20\insrsid2237966\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Bill Dolan, Chris Brockett, and Chris Quirk
\par }{\b\f1\fs20\insrsid2313633\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Microsoft Research
\par \hich\af1\dbch\af11\loch\f1 March 2, 2005
\par }\pard \ql \li0\ri0\widctlpar\tx1260\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11218914 {\f1\fs20\insrsid11218914 
\par }\pard \qj \li0\ri0\widctlpar\tx1260\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid11218914 \hich\af1\dbch\af11\loch\f1 
This document provides some information about the creation of the corpus, along with results of the annotation effort. If you use the}{\f1\fs20\insrsid2313633\charrsid13436006 \hich\af1\dbch\af11\loch\f1  corpus\hich\af1\dbch\af11\loch\f1 
 in your research, we would appreciate your citing }{\f1\fs20\insrsid11218914 \hich\af1\dbch\af11\loch\f1 one or both of the following}{\f1\fs20\insrsid2313633\charrsid13436006 \hich\af1\dbch\af11\loch\f1  papers, which }{\f1\fs20\insrsid11218914 
\hich\af1\dbch\af11\loch\f1 give some details of our work on paraphrase and our data annotation efforts. (A paper describing in detail how }{\f1\fs20\insrsid2313633\charrsid13436006 \hich\af1\dbch\af11\loch\f1 this corpus }{\f1\fs20\insrsid11218914 
\hich\af1\dbch\af11\loch\f1 was created is}{\f1\fs20\insrsid2313633\charrsid13436006 \hich\af1\dbch\af11\loch\f1  currently in progress.}{\f1\fs20\insrsid8720584 \hich\af1\dbch\af11\loch\f1 ) \hich\af1\dbch\af11\loch\f1 
We are continuing to tag data, and hope to release a larger version of this corpus to the research community in the future.}{\f1\fs20\insrsid2313633\charrsid11218914 
\par }\pard \ql \li720\ri0\sb100\sa100\sbauto1\saauto1\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid2305248 {\b\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 Quirk, C., C. Brockett, and W. B. Dolan. 2004. }
{\field\fldedit{\*\fldinst {\b\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43  HYPERLINK "http://research.microsoft.com/copyright/accept.asp?path=http://www.resea\hich\af43\dbch\af11\loch\f43 
rch.microsoft.com/nlp/publications/Paraphrase_EMNLP2004.pdf&pub=ACL" }}{\fldrslt {\b\f43\fs17\ul\cf17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 Monolingual Machine Translation for Paraphrase Generation}}}{\f43\fs17\insrsid2956143 
\hich\af43\dbch\af11\loch\f43 , In }{\i\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 Proceedings of the 2004 Conference on Empirical Methods in Natural Language Processing}{\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 
, Barcelona Spain. 
\par }{\b\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 Dolan W. B., C. Q\hich\af43\dbch\af11\loch\f43 uirk, and C. Brockett. 2004. }{\field\fldedit{\*\fldinst {\b\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 
 HYPERLINK "http://research.microsoft.com/copyright/accept.asp?path=http://www.research.microsoft.com/nlp/publications/Paraphrase_Coling.pdf&pub=COLING" }}{\fldrslt {\b\f43\fs17\ul\cf17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 Unsupervised Constr
uction of Large Paraphrase Corpora: Exploiting Massiv\hich\af43\dbch\af11\loch\f43 ely Parallel News Sources}}}{\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 . }{\i\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 COLING 2004}{
\f43\fs17\insrsid2956143 \hich\af43\dbch\af11\loch\f43 , Geneva, Switzerland. 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 {\insrsid2237966 
\par {\listtext\pard\plain\b\i\f1\fs28\insrsid6293529\charrsid3153308 \hich\af1\dbch\af11\loch\f1 1.\tab}}\pard \ql \fi-425\li425\ri0\widctlpar\jclisttab\tx425\jclisttab\tx693\aspalpha\aspnum\faauto\ls1
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst2\pnrxst0\pnrxst0\pnrxst0\pnrxst46\pnrxst0\pnrstop6\pnrstart1\pnrrgb1\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9\pnrstart2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0
\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc1\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr1\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrstop36\adjustright\rin0\lin425\itap0\pararsid5514607 
{\b\i\f1\fs28\ul\insrsid6293529\charrsid3153308 \hich\af1\dbch\af11\loch\f1 Introduction to the paraphrase tagging task}{\b\i\f1\fs28\ul\insrsid6293529 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6293529 {\f1\fs20\insrsid12675160\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 This }{\f1\fs20\insrsid3691716 \hich\af1\dbch\af11\loch\f1 dataset}{
\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  }{\f1\fs20\insrsid15010443 \hich\af1\dbch\af11\loch\f1 consists of 5801}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 pairs of sentences gleaned over a period of 18 months from thousa}{\f1\fs20\insrsid12675160\charrsid9787409 \hich\af1\dbch\af11\loch\f1 nds of news sources on the web.}{\f1\fs20\insrsid2569839 \hich\af1\dbch\af11\loch\f1  }{
\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 Accompanying each pa\hich\af1\dbch\af11\loch\f1 ir is judgment reflecting whether }{\f1\fs20\insrsid10960926 \hich\af1\dbch\af11\loch\f1 multiple }{
\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 human annotators considered the two sentences to be close enough in meaning to be considered close paraphrases.}{\f1\fs20\insrsid12675160\charrsid9787409 
\par 
\par }{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 Each pair of sentences has been examined by 2 human judges who were asked to give a binary judgment \hich\af1\dbch\af11\loch\f1 as to whether the two sentences }{
\f1\fs20\insrsid10764822 \hich\af1\dbch\af11\loch\f1 \hich\f1 could be considered \'93\loch\f1 \hich\f1 semantically equivalent\'94}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
. Disagreements were resolved by a 3rd judge. This annotation task was carried out by an independent company, the Butler Hill Group}{\f1\fs20\insrsid3362214 \hich\af1\dbch\af11\loch\f1 , LLC}{\f1\fs20\insrsid6293529\charrsid9787409 
\hich\af1\dbch\af11\loch\f1 . Mo Corston-Oliver directed the effort, wi\hich\af1\dbch\af11\loch\f1 th Jeff Stevenson, Amy Muia, and David Rojas acting as raters.}{\f1\fs20\insrsid9787409 \hich\af1\dbch\af11\loch\f1  }{\f1\fs20\insrsid4614938 
\hich\af1\dbch\af11\loch\f1 Mo Corston-Oliver and Jeff Stevenson also helped with the preparation of this document.}{\f1\fs20\insrsid6293529 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6293529 {\f1\fs20\insrsid3691716\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid3691716 \hich\af1\dbch\af11\loch\f1 After resolving differences between raters, }{\insrsid3691716 \hich\af0\dbch\af11\loch\f0 3900 }{
\f1\fs20\insrsid3691716 \hich\af1\dbch\af11\loch\f1 (67%) of the }{\f1\fs20\insrsid12335180 \hich\af1\dbch\af11\loch\f1 original }{\insrsid3691716 \hich\af0\dbch\af11\loch\f0 5801 }{\f1\fs20\insrsid3691716 \hich\af1\dbch\af11\loch\f1 pairs were }{
\f1\fs20\insrsid420013 \hich\af1\dbch\af11\loch\f1 judged}{\f1\fs20\insrsid3691716 \hich\af1\dbch\af11\loch\f1 \hich\f1  \'93}{\f1\fs20\insrsid3691716\charrsid9787409 \hich\af1\dbch\af11\loch\f1 semantica\hich\af1\dbch\af11\loch\f1 lly equivalent}{
\f1\fs20\insrsid3691716 \loch\af1\dbch\af11\hich\f1 \'94\loch\f1 .}{\f1\fs20\insrsid6293529 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6293529 {\f1\fs20\insrsid3691716\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1 In many instances, the pair of sentences rated by 2 judges as \'93\loch\f1 
\hich\f1 semantically equivalent\'94\loch\f1 \hich\f1  will in fact diverge semantically to at least some degree. If a full paraphrase relationship can be described as \'93\loch\f1 \hich\f1 bidirectional entailment\'94\loch\f1 , then the 
\hich\af1\dbch\af11\loch\f1 \hich\f1 majority of the \'93\loch\f1 \hich\f1 equivalent\'94\loch\f1 \hich\f1  pairs in this dataset exhibit \'93\loch\f1 \hich\f1 mostly bidirectional entailments\'94\loch\f1 
, with one sentence containing information that differs from or is not contained in the other. Some specific rating criteria are included in a tagging specificati\hich\af1\dbch\af11\loch\f1 o\hich\af1\dbch\af11\loch\f1 n (}{\f1\fs20\insrsid5711444 
\hich\af1\dbch\af11\loch\f1 Section 3}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1 ), but by and large the degree of mismatch allowed before the pair was judged \'93\loch\f1 \hich\f1 non-equivalent\'94\loch\f1 
 was left to the discretion of the individual rater: did a particular set of asymmetries alter the meanings of the sentences enough that they couldn\hich\f1 \rquote \loch\f1 t\hich\af1\dbch\af11\loch\f1 \hich\f1  be considered \'93\loch\f1 \hich\f1 
the same\'94\loch\f1  in meaning? This task was ill-defined enough that we were surprised at}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1  how}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  high }{
\f1\fs20\insrsid15562647 \hich\af1\dbch\af11\loch\f1 interrater}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  agreement was }{\f1\fs20\insrsid15737115 \hich\af1\dbch\af11\loch\f1 (averaging 83%}{
\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 ). 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6293529 {\f1\fs20\insrsid6293529\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1 A}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 series of experiments aimed at making the judging task more concrete resulted in uniformly }{\f1\fs20\insrsid941686 \hich\af1\dbch\af11\loch\f1 degraded}{\f1\fs20\insrsid12675160\charrsid9787409 \hich\af1\dbch\af11\loch\f1  }{\f1\fs20\insrsid15562647 
\hich\af1\dbch\af11\loch\f1 inte\hich\af1\dbch\af11\loch\f1 rrater}{\f1\fs20\insrsid12675160\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 agreement. Providing a checkbox to allow judges to specify that one sentence entailed another, for instance, left the raters frustrated and had a negative impact on agreement.}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 Similarly, efforts to identify classes of syntactic alternations that wou\hich\af1\dbch\af11\loch\f1 ld not count against a}{\f1\fs20\insrsid2569839 \hich\af1\dbch\af11\loch\f1 n}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
\hich\f1  \'93}{\f1\fs20\insrsid2569839 \hich\af1\dbch\af11\loch\f1 equivalent}{\f1\fs20\insrsid1124373\charrsid9787409 \loch\af1\dbch\af11\hich\f1 \'94\loch\f1  judgment resulted, in most cases, in a collapse in }{\f1\fs20\insrsid15562647 
\hich\af1\dbch\af11\loch\f1 interrater}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1  agreement. The }{\f1\fs20\insrsid799020 \hich\af1\dbch\af11\loch\f1 relatively }{\f1\fs20\insrsid1124373\charrsid9787409 
\hich\af1\dbch\af11\loch\f1 few }{\f1\fs20\insrsid799020 \hich\af1\dbch\af11\loch\f1 situations}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 where we found firm guidelines of this type to be helpful (e.g. in dealing with anaphora) are included in }{\f1\fs20\insrsid799020 \hich\af1\dbch\af11\loch\f1 Section 3}{\f1\fs20\insrsid1124373\charrsid9787409 \hich\af1\dbch\af11\loch\f1 .}{
\f1\fs20\insrsid6293529\charrsid9787409 
\par }\pard \ql \li0\ri0\widctlpar\tx1650\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid1124373 {\f1\fs20\insrsid1124373\charrsid9787409 \tab }{\f1\fs20\insrsid6293529\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid12675160\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1 The decision to tag sentences as being \'93\loch\f1 
more or less semantically equivalent}{\f1\fs20\insrsid6900316\charrsid9787409 \loch\af1\dbch\af11\hich\f1 \'94}{\f1\fs20\insrsid12675160\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1 , rather than \'93\loch\f1 \hich\f1 semantically equivalent\'94
\loch\f1  was ultimately a practical one:}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  insisting on complete sets of bidirectional entailments would}{\f1\fs20\insrsid10308052 \hich\af1\dbch\af11\loch\f1  have}{
\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  rule}{\f1\fs20\insrsid10308052 \hich\af1\dbch\af11\loch\f1 d}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1  out all but the most trivial so
\hich\af1\dbch\af11\loch\f1 rts of paraphrase relationships, such }{\f1\fs20\insrsid2569839 \hich\af1\dbch\af11\loch\f1 as }{\f1\fs20\insrsid7955676\charrsid9787409 \hich\af1\dbch\af11\loch\f1 sentence pairs differing only a single word}{
\f1\fs20\insrsid2569839 \hich\af1\dbch\af11\loch\f1 \hich\f1  or in the presence of titles like \'93\loch\f1 \hich\f1 Mr.\'94\loch\f1 \hich\f1  and \'93\loch\f1 \hich\f1 Ms.\'94}{\f1\fs20\insrsid6293529\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
. Our interest was in identifying more complex paraphrase relationships, which required a somewhat looser definition of wh\hich\af1\dbch\af11\loch\f1 \hich\f1 at \'93\loch\f1 \hich\f1 semantic equivalence\'94\loch\f1  means.  }{\f1\fs20\insrsid10308052 
\hich\af1\dbch\af11\loch\f1 In an effort to focus on }{\f1\fs20\insrsid10695583 \hich\af1\dbch\af11\loch\f1 these more }{\f1\fs20\insrsid10308052 \hich\af1\dbch\af11\loch\f1 
interesting pairs, the dataset was restricted to pairs with a minimum word-based Levenshtein distance of }{\f44\fs20\insrsid10308052 \loch\af44\dbch\af11\hich\f44 \uc1\u8805\'3d}{\f1\fs20\insrsid10308052 \hich\af1\dbch\af11\loch\f1  8.}{
\f1\fs20\insrsid6293529\charrsid9787409 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid13984194 {\f1\fs20\insrsid13984194\charrsid9787409 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid13984194\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
Given our relatively loose definition of equivalence, any 2 of the following sentences would }{\f1\fs20\insrsid13264869\charrsid9787409 \hich\af1\dbch\af11\loch\f1 probably }{\f1\fs20\insrsid13984194\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1 
have been considered \'93\loch\f1 \hich\f1 paraphrases\'94\loch\f1 , despite obvious differences in information content:
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid13984194 {\insrsid13984194 
\par {\listtext\pard\plain\f3\fs20\cf1\insrsid13984194\charrsid1906673 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard \qj \fi-360\li720\ri0\keepn\widctlpar\jclisttab\tx720\aspalpha\aspnum\faauto\ls5
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst1\pnrxst0\pnrxst183\pnrxst240\pnrstop4\pnrstart1\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9\pnrstart2\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23
\pnrnfc23\pnrnfc23\pnrnfc0\pnrnfc0\pnrnfc1\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr1\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrstop36\nosnaplinegrid
\adjustright\rin0\lin720\itap0\pararsid3955478 {\f5\fs20\cf1\insrsid13984194\charrsid1906673 \hich\af5\dbch\af11\loch\f5 The genome of the fungal pathogen that causes Sudden Oak De\hich\af5\dbch\af11\loch\f5 ath has been sequenced by US scientists
\par {\listtext\pard\plain\f3\fs20\cf1\insrsid13984194\charrsid1906673 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af5\dbch\af11\loch\f5 
Researchers announced Thursday they've completed the genetic blueprint of the blight-causing culprit responsible for sudden oak death
\par {\listtext\pard\plain\f3\fs20\cf1\insrsid13984194\charrsid1906673 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af5\dbch\af11\loch\f5 Scientists have figured out the complete genetic code of a virulent pathogen that \hich\af5\dbch\af11\loch\f5 
has killed tens of thousands of California native oaks
\par {\listtext\pard\plain\f3\fs20\cf1\insrsid13984194\charrsid1906673 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard \qj \fi-360\li720\ri0\widctlpar\jclisttab\tx720\aspalpha\aspnum\faauto\ls5
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst1\pnrxst0\pnrxst183\pnrxst240\pnrstop4\pnrstart1\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9\pnrstart2\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23\pnrnfc23
\pnrnfc23\pnrnfc23\pnrnfc0\pnrnfc0\pnrnfc4\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr4\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrstop36\nosnaplinegrid
\adjustright\rin0\lin720\itap0\pararsid6293529 {\f5\fs20\cf1\insrsid13984194\charrsid1906673 \hich\af5\dbch\af11\loch\f5 
The East Bay-based Joint Genome Institute said Thursday it has unraveled the genetic blueprint for the diseases that cause the sudden death of oak trees}{\f5\fs20\cf1\insrsid6293529\charrsid1906673 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid16384408 {\f1\fs20\insrsid16384408 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 Raters}{\f1\fs20\insrsid16384408\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
 were presented with sentences in which }{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 s\hich\af1\dbch\af11\loch\f1 everal}{\f1\fs20\insrsid16384408\charrsid9787409 \hich\af1\dbch\af11\loch\f1  classes of named entities }{\f1\fs20\insrsid16384408 
\hich\af1\dbch\af11\loch\f1 were}{\f1\fs20\insrsid16384408\charrsid9787409 \hich\af1\dbch\af11\loch\f1 \hich\f1  replaced by generic tags, so that \'93\loch\f1 \hich\f1 Tuesday\'94\loch\f1 \hich\f1  became %%DAY%%, \'93\loch\f1 $10,000}{
\f1\fs20\insrsid16384408 \loch\af1\dbch\af11\hich\f1 \'94\loch\f1 \hich\f1  became \'93\loch\f1 %%MONEY%%, and so on.}{\f1\fs20\insrsid14156 \hich\af1\dbch\af11\loch\f1  T}{\f1\fs20\insrsid16384408\charrsid9787409 \hich\af1\dbch\af11\loch\f1 
he release versions}{\f1\fs20\insrsid14156 \hich\af1\dbch\af11\loch\f1 , however,}{\f1\fs20\insrsid16384408\charrsid9787409 \hich\af1\dbch\af11\loch\f1  preserve the }{\f1\fs20\insrsid16384408\charrsid1336933 \hich\af1\dbch\af11\loch\f1 original strings.}
{\f1\fs20\insrsid16384408 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid16384408 {\f1\fs20\insrsid16384408\charrsid1336933 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 Note that many of the sentence pairs judged to be }{\f1\fs20\insrsid15358814 
\loch\af1\dbch\af11\hich\f1 \'93}{\b\f1\fs20\insrsid16384408\charrsid15358814 \hich\af1\dbch\af11\loch\f1 not }{\b\f1\fs20\insrsid15009449\charrsid15358814 \hich\af1\dbch\af11\loch\f1 equivalent}{\f1\fs20\insrsid15358814 \loch\af1\dbch\af11\hich\f1 \'94}{
\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1  will still overlap significantly in information content}{\f1\fs20\insrsid12864072 \hich\af1\dbch\af11\loch\f1  and even wording}{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 
. A variety of automatic filtering techniques were used to create an initial dataset that was rich in paraphrase relationships, and the success of these techniques meant th\hich\af1\dbch\af11\loch\f1 
at approximately 70% of the pairs examined by raters were, by our criteria, semantically equivale}{\f1\fs20\insrsid12413466 \hich\af1\dbch\af11\loch\f1 nt. The remaining 30% represent}{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1  a }{
\f1\fs20\insrsid1654934 \hich\af1\dbch\af11\loch\f1 range of relationships, from }{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 pairs that are }{\f1\fs20\insrsid1654934 \hich\af1\dbch\af11\loch\f1 
completely unrelated semantically, to those that are}{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1  partially overlapping, }{\f1\fs20\insrsid1654934 \hich\af1\dbch\af11\loch\f1 to th\hich\af1\dbch\af11\loch\f1 
ose that are almost-but-not-quite semantically equivalent.}{\f1\fs20\insrsid16384408 \hich\af1\dbch\af11\loch\f1 \hich\f1  For this reason, this \'93}{\b\f1\fs20\insrsid4261794\charrsid15358814 \hich\af1\dbch\af11\loch\f1 not equivalent}{
\f1\fs20\insrsid16384408 \loch\af1\dbch\af11\hich\f1 \'94\loch\f1  set should not be used as negative training data.
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6293529 {\f1\fs20\insrsid6293529\charrsid1336933 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid6293529\charrsid1336933 \hich\af1\dbch\af11\loch\f1 
We have made every effort to ensure that each sentence in this dataset has been given proper attribution. I\hich\af1\dbch\af11\loch\f1 f you encounter any errors/omissions, please contact Bill Dolan }{\f1\fs20\insrsid1336933 \hich\af1\dbch\af11\loch\f1 (}
{\field{\*\fldinst {\f1\fs20\insrsid1336933 \hich\af1\dbch\af11\loch\f1  HYPERLINK "mailto:billdol@microsoft.com" }{\f1\fs20\insrsid1336933\charrsid8801882 {\*\datafield 
00d0c9ea79f9bace118c8200aa004ba90b020000001700000016000000620069006c006c0064006f006c0040006d006900630072006f0073006f00660074002e0063006f006d000000e0c9ea79f9bace118c8200aa004ba90b3a0000006d00610069006c0074006f003a00620069006c006c0064006f006c0040006d006900
630072006f0073006f00660074002e0063006f006d000000}}}{\fldrslt {\cs15\f1\fs20\ul\cf2\insrsid1336933\charrsid8801882 \hich\af1\dbch\af11\loch\f1 billdol@microsoft.com}}}{\f1\fs20\insrsid1336933 \hich\af1\dbch\af11\loch\f1 ), and }{
\f1\fs20\insrsid6293529\charrsid1336933 \hich\af1\dbch\af11\loch\f1 we will promptly modify the }{\f1\fs20\insrsid13183636 \hich\af1\dbch\af11\loch\f1 data}{\f1\fs20\insrsid6293529\charrsid1336933 \hich\af1\dbch\af11\loch\f1  to reflect the }{
\f1\fs20\insrsid7955676\charrsid1336933 \hich\af1\dbch\af11\loch\f1 correct}{\f1\fs20\insrsid6293529\charrsid1336933 \hich\af1\dbch\af11\loch\f1  information.}{\f1\fs20\insrsid6049540\charrsid1336933 
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11557177 {\b\i\f1\fs28\ul\insrsid11557177 
\par }{\b\i\f1\fs28\ul\insrsid6049540 
\par 
\par }{\b\i\f1\fs28\ul\insrsid6049540\charrsid11557177 
\par {\listtext\pard\plain\b\i\f1\fs28\insrsid3362214 \hich\af1\dbch\af11\loch\f1 2.\tab}}\pard \ql \fi-425\li425\ri0\widctlpar\jclisttab\tx425\aspalpha\aspnum\faauto\ls1
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst2\pnrxst0\pnrxst0\pnrxst0\pnrxst46\pnrxst0\pnrstop6\pnrstart1\pnrrgb1\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9\pnrstart2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0
\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr2\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrstop36\adjustright\rin0\lin425\itap0\pararsid5514607 
{\b\i\f1\fs28\ul\insrsid3362214 \hich\af1\dbch\af11\loch\f1 Methodology and Results
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 
\par \hich\af1\dbch\af11\loch\f1 This data set consi\hich\af1\dbch\af11\loch\f1 sts of 5801 sentence pairs, with a binary human judgment of whether or not the pairing constitutes a paraphrase.}{\f1\fs20\insrsid3362214 
\par }{\f1\fs20\insrsid3362214\charrsid12138041 
\par {\listtext\pard\plain\b\i\f1\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 2.1.\tab}}\pard \ql \fi-567\li567\ri0\widctlpar\jclisttab\tx567\jclisttab\tx720\aspalpha\aspnum\faauto\ls1\ilvl1
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst4\pnrxst0\pnrxst0\pnrxst0\pnrxst46\pnrxst0\pnrxst1\pnrxst0\pnrxst46\pnrxst0\pnrstop10\pnrstart1\pnrrgb1\pnrrgb3\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9
\pnrstart2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc1\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr2\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr1\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrstop36\adjustright\rin0\lin567\itap0\pararsid11557177 {\b\i\f1\ul\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Methodology
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 
\par }\pard \qj \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid15738572 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 To generate the judgments, we used 3 raters to score the sentence }{
\f1\fs20\insrsid5514607 \hich\af1\dbch\af11\loch\f1 pairs }{\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 according to a given specification. Rater 1 scored all 58\hich\af1\dbch\af11\loch\f1 
01 sentences. Rater 2 scored 3533 sentences, and Rater 3 scored 2268 sentences. For the sentences where Rater 1 and 2 did not agree on the judgment, Rater 3 gave a final judgment, while Rater 2 gave the final judgment on sentences where Rater 1 and Rater 
\hich\af1\dbch\af11\loch\f1 3\hich\af1\dbch\af11\loch\f1  did not agree.
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid3362214 {\f1\fs20\insrsid3362214\charrsid12138041 
\par {\listtext\pard\plain\b\i\f1\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 2.2.\tab}}\pard \ql \fi-567\li567\ri0\widctlpar\jclisttab\tx567\jclisttab\tx720\aspalpha\aspnum\faauto\ls1\ilvl1
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst4\pnrxst0\pnrxst0\pnrxst0\pnrxst46\pnrxst0\pnrxst1\pnrxst0\pnrxst46\pnrxst0\pnrstop10\pnrstart1\pnrrgb1\pnrrgb3\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9
\pnrstart2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc2\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr2\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr2\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrstop36\adjustright\rin0\lin567\itap0\pararsid11557177 {\b\i\f1\ul\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Interrater Agreement
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 
\par \hich\af1\dbch\af11\loch\f1 To test interrater agreement, we took a simple percentage:
\par }\pard \ql \li0\ri0\keepn\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid3362214 {\insrsid3362214 
\par }\trowd \irow0\irowband0\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 \cell \hich\af1\dbch\af11\loch\f1 Total scored\cell 
\hich\af1\dbch\af11\loch\f1 Total agreements\cell \hich\af1\dbch\af11\loch\f1 Percentage agreement\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 \trowd \irow0\irowband0
\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 Raters 1 & 2\cell 
\hich\af1\dbch\af11\loch\f1 3533\cell \hich\af1\dbch\af11\loch\f1 2904\cell \hich\af1\dbch\af11\loch\f1 82.20\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 
\trowd \irow1\irowband1\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid3362214 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 Raters 1 & 3\cell 
\hich\af1\dbch\af11\loch\f1 2268\cell \hich\af1\dbch\af11\loch\f1 1921\cell \hich\af1\dbch\af11\loch\f1 84.70\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 
\trowd \irow2\irowband2\lastrow \ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid3362214 {\f1\fs20\insrsid3362214\charrsid12138041 
\par {\listtext\pard\plain\b\i\f1\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 2.3.\tab}}\pard \ql \fi-567\li567\ri0\widctlpar\jclisttab\tx567\jclisttab\tx720\aspalpha\aspnum\faauto\ls1\ilvl1
\pnrauth1\pnrdate-2037179654\pnrstart0\pnrxst4\pnrxst0\pnrxst0\pnrxst0\pnrxst46\pnrxst0\pnrxst1\pnrxst0\pnrxst46\pnrxst0\pnrstop10\pnrstart1\pnrrgb1\pnrrgb3\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrrgb0\pnrstop9
\pnrstart2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc2\pnrnfc0\pnrnfc0\pnrnfc0\pnrnfc3\pnrnfc0\pnrnfc0\pnrstop18\pnrstart3\pnrpnbr2\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr3\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0\pnrpnbr0
\pnrpnbr0\pnrstop36\adjustright\rin0\lin567\itap0\pararsid11557177 {\b\i\f1\ul\insrsid3362214\charrsid11557177 \hich\af1\dbch\af11\loch\f1 Overall scoring results
\par }\pard \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 
\par \hich\af1\dbch\af11\loch\f1 We computed scorin\hich\af1\dbch\af11\loch\f1 g results for each individual (raw scores, before resolving}{\insrsid3362214 \hich\af0\dbch\af11\loch\f0  differences):
\par }{\f1\fs20\insrsid3362214\charrsid12138041 
\par }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 \cell \hich\af1\dbch\af11\loch\f1 Total scored\cell \hich\af1\dbch\af11\loch\f1 \hich\f1 Number \'93\loch\f1 
\hich\f1 yes\'94\cell \hich\af1\dbch\af11\loch\f1 \hich\f1 Percentage \'93\loch\f1 \hich\f1 yes\'94\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 \trowd \irow0\irowband0
\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 Rater 1\cell 
\hich\af1\dbch\af11\loch\f1 5801\cell \hich\af1\dbch\af11\loch\f1 3601\cell \hich\af1\dbch\af11\loch\f1 62.08\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 
\trowd \irow1\irowband1\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid12138041 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 Rater 2\cell 
\hich\af1\dbch\af11\loch\f1 3533\cell \hich\af1\dbch\af11\loch\f1 2589\cell \hich\af1\dbch\af11\loch\f1 73.28\cell }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0 {\f1\fs20\insrsid3362214\charrsid12138041 
\trowd \irow2\irowband2\ts16\trqc\trgaph108\trleft-108\trbrdrt\brdrs\brdrw10 \trbrdrl\brdrs\brdrw10 \trbrdrb\brdrs\brdrw10 \trbrdrr\brdrs\brdrw10 \trbrdrh\brdrs\brdrw10 \trbrdrv\brdrs\brdrw10 
\trftsWidth1\trftsWidthB3\trftsWidthA3\trautofit1\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tbllkhdrrows\tbllklastrow\tbllkhdrcols\tbllklastcol \clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr
\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx1663\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx3434\clvertalt\clbrdrt
\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 \cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx5205\clvertalt\clbrdrt\brdrs\brdrw10 \clbrdrl\brdrs\brdrw10 \clbrdrb\brdrs\brdrw10 \clbrdrr\brdrs\brdrw10 
\cltxlrtb\clftsWidth3\clwWidth1771\clshdrawnil \cellx6976\row }\pard \ql \li0\ri0\widctlpar\intbl\aspalpha\aspnum\faauto\adjustright\rin0\lin0\pararsid3362214 {\f1\fs20\insrsid3362214\charrsid12138041 \hich\af1\dbch\af11\loch\f1 Rater 3\cell 
\hich\af1\dbch\af11\loch\f1 2268\cell \hich\af1\dbch\af11\loch\f1 1612\cell \hich\af1\dbch\af11\loch\f1 71
Download .txt
gitextract_ia7mi6tx/

├── LICENSE
├── README.md
├── dataset/
│   ├── msr-paraphrase-corpus/
│   │   ├── MSR Paraphrase Corpus.lnk
│   │   ├── Microsoft Shared Source License.htm
│   │   ├── Microsoft Shared Source License.rtf
│   │   ├── msr_paraphrase_README.htm
│   │   ├── msr_paraphrase_README.rtf
│   │   ├── msr_paraphrase_data.txt
│   │   ├── msr_paraphrase_test.txt
│   │   └── msr_paraphrase_train.txt
│   ├── msr-video-paraphrase-corpus/
│   │   ├── test-gold.tgz
│   │   ├── train-readme.txt
│   │   ├── train.tgz
│   │   └── trial.tgz
│   ├── mt-metrics-paraphrase-corpus/
│   │   ├── README
│   │   ├── msrp-annotations.csv
│   │   ├── pan-annotations.csv
│   │   ├── pan-test.labels
│   │   ├── pan-test_s1.txt
│   │   ├── pan-test_s2.txt
│   │   ├── pan-train.labels
│   │   ├── pan-train_s1.txt
│   │   └── pan-train_s2.txt
│   └── readme.md
├── source_code_in_theano/
│   ├── data/
│   │   ├── 20_news_group_sentences.txt
│   │   ├── msr_paraphrase_test.txt
│   │   └── msr_paraphrase_train.txt
│   ├── data.py
│   ├── deep_lstm.py
│   ├── input.py
│   ├── lstm.py
│   ├── models/
│   │   ├── backward_double_layer_lstm-2016-12-09-19-49-14000-48-64.dat.npz
│   │   ├── backward_single_layer_lstm-2016-11-30-21-07-14000-48-64.dat.npz
│   │   ├── forward_double_layer_lstm-2016-12-09-19-34-14000-48-64.dat.npz
│   │   ├── forward_single_layer_lstm-2016-12-05-13-04-14000-48-64.dat.npz
│   │   └── model_trained_on_20_news_group_dataset/
│   │       ├── backward_double_layer_lstm-2017-01-07-19-12-20000-64-128.dat.npz
│   │       ├── backward_single_layer_lstm-2017-01-07-19-00-20000-64-128.dat.npz
│   │       ├── forward_double_layer_lstm-2017-01-07-19-06-20000-64-128.dat.npz
│   │       └── forward_single_layer_lstm-2017-01-06-00-44-20000-64-128.dat.npz
│   ├── news_group_data.py
│   ├── readme.md
│   ├── test_lstm.py
│   ├── train_lstm.py
│   └── utils.py
└── state-of-art-details.md
Download .txt
SYMBOL INDEX (52 symbols across 8 files)

FILE: source_code_in_theano/data.py
  function load_data (line 12) | def load_data(loc='./data/', _train=False, _test=False):
  function build_dictionary (line 46) | def build_dictionary(loc='./data/', vocabulary_size=-1):
  function my_tokenizer (line 122) | def my_tokenizer(input):
  function get_train_data (line 130) | def get_train_data(vocabulary_size):
  function get_train_data_reversed (line 154) | def get_train_data_reversed(vocabulary_size):
  function get_train_sentences (line 175) | def get_train_sentences(vocabulary_size):
  function get_train_sentences_reversed (line 189) | def get_train_sentences_reversed(vocabulary_size):
  function get_test_data (line 203) | def get_test_data(vocabulary_size):
  function get_test_data_reversed (line 227) | def get_test_data_reversed(vocabulary_size):
  function get_test_sentences (line 248) | def get_test_sentences(vocabulary_size):
  function get_test_sentences_reversed (line 260) | def get_test_sentences_reversed(vocabulary_size):

FILE: source_code_in_theano/deep_lstm.py
  class DLSTM (line 10) | class DLSTM:
    method __init__ (line 11) | def __init__(self, word_dim, hidden_dim=128, bptt_truncate=-1):
    method __theano_build__ (line 45) | def __theano_build__(self):
    method calculate_total_loss (line 137) | def calculate_total_loss(self, X, Y):
    method calculate_loss (line 140) | def calculate_loss(self, X, Y):

FILE: source_code_in_theano/input.py
  function load_data (line 15) | def load_data(loc='./data/'):
  function build_dictionary (line 42) | def build_dictionary(loc='./data/', vocabulary_size=-1):
  function my_tokenizer (line 118) | def my_tokenizer(input):
  function get_train_data (line 125) | def get_train_data(vocabulary_size):
  function get_train_data_reversed (line 148) | def get_train_data_reversed(vocabulary_size):
  function get_train_sentences (line 167) | def get_train_sentences(vocabulary_size):
  function get_train_sentences_reversed (line 179) | def get_train_sentences_reversed(vocabulary_size):
  function get_test_data (line 192) | def get_test_data(vocabulary_size):
  function get_test_data_reversed (line 216) | def get_test_data_reversed(vocabulary_size):
  function get_test_sentences (line 236) | def get_test_sentences(vocabulary_size):
  function get_test_sentences_reversed (line 247) | def get_test_sentences_reversed(vocabulary_size):

FILE: source_code_in_theano/lstm.py
  class LSTM (line 10) | class LSTM:
    method __init__ (line 11) | def __init__(self, word_dim, hidden_dim=128, bptt_truncate=-1):
    method __theano_build__ (line 45) | def __theano_build__(self):
    method calculate_total_loss (line 127) | def calculate_total_loss(self, X, Y):
    method calculate_loss (line 130) | def calculate_loss(self, X, Y):

FILE: source_code_in_theano/news_group_data.py
  function load_data (line 15) | def load_data(loc='./data/'):
  function build_dictionary (line 26) | def build_dictionary(loc='./data/', vocabulary_size=-1):
  function my_tokenizer (line 68) | def my_tokenizer(input):
  function get_train_data (line 75) | def get_train_data(vocabulary_size):
  function get_train_data_reversed (line 91) | def get_train_data_reversed(vocabulary_size):
  function get_train_sentences (line 103) | def get_train_sentences(vocabulary_size):
  function get_train_sentences_reversed (line 114) | def get_train_sentences_reversed(vocabulary_size):

FILE: source_code_in_theano/test_lstm.py
  function generate_sentence_embedding (line 17) | def generate_sentence_embedding(model, test_sent):
  function generate_sentence_embeddings (line 22) | def generate_sentence_embeddings(model, x_test):
  function do_pooling (line 29) | def do_pooling(var_matrix, n_row, n_col, criterion='max'):
  function combine_forward_and_backward_vectors (line 71) | def combine_forward_and_backward_vectors(sentences, sentences_r):
  function generate_feature_vector (line 89) | def generate_feature_vector(first_sentences, second_sentences):
  function build_classifier_and_test (line 110) | def build_classifier_and_test(train_X, train_y, test_X, test_y, clf, pri...
  function test_on_forward_LSTM (line 125) | def test_on_forward_LSTM(model, classifier=MLPClassifier()):
  function test_on_bidirectional_lstm (line 154) | def test_on_bidirectional_lstm(forward_model, backward_model, classifier...

FILE: source_code_in_theano/train_lstm.py
  function sgd_callback (line 41) | def sgd_callback(model, num_examples_seen):

FILE: source_code_in_theano/utils.py
  function train_with_sgd (line 6) | def train_with_sgd(model, X_train, y_train, learning_rate=0.001, nepoch=...
  function save_model_parameters_theano (line 21) | def save_model_parameters_theano(model, outfile):
  function load_model_parameters_theano (line 32) | def load_model_parameters_theano(path, modelClass):
  function gradient_check_theano (line 48) | def gradient_check_theano(model, x, y, h=0.001, error_threshold=0.01):
Copy disabled (too large) Download .json
Condensed preview — 45 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (19,769K chars).
[
  {
    "path": "LICENSE",
    "chars": 1067,
    "preview": "MIT License\n\nCopyright (c) 2016 Wasi Ahmad\n\nPermission is hereby granted, free of charge, to any person obtaining a copy"
  },
  {
    "path": "README.md",
    "chars": 3918,
    "preview": "# Paraphrase-Identification-Task\nParaphrase detection is the task of examining two text entities (ex. sentence) and dete"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/Microsoft Shared Source License.htm",
    "chars": 9685,
    "preview": "<html>\n\n<head>\n<meta http-equiv=Content-Type content=\"text/html; charset=shift_jis\">\n<meta name=Generator content=\"Micro"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/Microsoft Shared Source License.rtf",
    "chars": 14468,
    "preview": "{\\rtf1\\ansi\\ansicpg932\\uc2\\deff0\\stshfdbch11\\stshfloch21\\stshfhich21\\stshfbi0\\deflang1033\\deflangfe1041{\\fonttbl{\\f0\\fro"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/msr_paraphrase_README.htm",
    "chars": 69642,
    "preview": "<html>\n\n<head>\n<meta http-equiv=Content-Type content=\"text/html; charset=windows-1252\">\n<meta name=Generator content=\"Mi"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/msr_paraphrase_README.rtf",
    "chars": 179214,
    "preview": "{\\rtf1\\ansi\\ansicpg932\\uc2\\deff0\\stshfdbch11\\stshfloch0\\stshfhich0\\stshfbi0\\deflang1033\\deflangfe1041{\\fonttbl{\\f0\\froma"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/msr_paraphrase_data.txt",
    "chars": 1936771,
    "preview": "Sentence ID\tString\tAuthor\tURL\tAgency\tDate\tWeb Date\n702876\tAmrozi accused his brother, whom he called \"the witness\", of "
  },
  {
    "path": "dataset/msr-paraphrase-corpus/msr_paraphrase_test.txt",
    "chars": 431041,
    "preview": "Quality\t#1 ID\t#2 ID\t#1 String\t#2 String\n1\t1089874\t1089925\tPCCW's chief operating officer, Mike Butcher, and Alex Arena,"
  },
  {
    "path": "dataset/msr-paraphrase-corpus/msr_paraphrase_train.txt",
    "chars": 1022381,
    "preview": "Quality\t#1 ID\t#2 ID\t#1 String\t#2 String\n1\t702876\t702977\tAmrozi accused his brother, whom he called \"the witness\", of de"
  },
  {
    "path": "dataset/msr-video-paraphrase-corpus/train-readme.txt",
    "chars": 5170,
    "preview": "\n\t\t\t SEMEVAL-2012 TASK 17\n\n\t\t\t\t STS\n\t\t     Semantic Textual Similarity:\n \n\t\t     A Unified Framework for the\n\t      Eval"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/README",
    "chars": 1583,
    "preview": "This zip file contains the following files:\n\n1) pan-train_s1.txt: The PAN training set file containing the first sentenc"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/msrp-annotations.csv",
    "chars": 47005,
    "preview": "id,sent1,sent2,label,annotation1,annotation2\n1,\"\"\"It was a little bit embarrassing the way we played in the first two ga"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-annotations.csv",
    "chars": 45309,
    "preview": "id,sent1,sent2,label,annotation1,annotation2\n1,\"Here was the second period of Hebraic influence, an influence wholly mor"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-test.labels",
    "chars": 6000,
    "preview": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-test_s1.txt",
    "chars": 607087,
    "preview": "Dense fogs wrapped the mountains that shut in the little hamlet, but overhead the stars were shining in the near heaven."
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-test_s2.txt",
    "chars": 584577,
    "preview": "The hamlet is surrounded by mountains which is wrapped with dense fogs, though above it, near heaven, the stars were shi"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-train.labels",
    "chars": 20000,
    "preview": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-train_s1.txt",
    "chars": 2040477,
    "preview": "Hare lays great stress on the necessity of circumcision wherever there is an indication of preputial local irritation.\nT"
  },
  {
    "path": "dataset/mt-metrics-paraphrase-corpus/pan-train_s2.txt",
    "chars": 1929766,
    "preview": "Hare lays great stress onto the necessity of circumcision wherever there is an sign of preputial locally irritation.\nIn "
  },
  {
    "path": "dataset/readme.md",
    "chars": 6505,
    "preview": "\n## List of dataset used in state-of-art techniques\n#### [Quora Question Pairs](https://data.quora.com/First-Quora-Datas"
  },
  {
    "path": "source_code_in_theano/data/20_news_group_sentences.txt",
    "chars": 8948050,
    "preview": "i was wondering if anyone out there could enlighten me on this car i saw the other day\nit was a 2 door sports car looked"
  },
  {
    "path": "source_code_in_theano/data/msr_paraphrase_test.txt",
    "chars": 431041,
    "preview": "Quality\t#1 ID\t#2 ID\t#1 String\t#2 String\n1\t1089874\t1089925\tPCCW's chief operating officer, Mike Butcher, and Alex Arena,"
  },
  {
    "path": "source_code_in_theano/data/msr_paraphrase_train.txt",
    "chars": 1022381,
    "preview": "Quality\t#1 ID\t#2 ID\t#1 String\t#2 String\n1\t702876\t702977\tAmrozi accused his brother, whom he called \"the witness\", of de"
  },
  {
    "path": "source_code_in_theano/data.py",
    "chars": 10471,
    "preview": "import numpy as np\nfrom nltk import wordpunct_tokenize\nimport operator\nimport re, string\nimport math\n\nSENTENCE_START_TOK"
  },
  {
    "path": "source_code_in_theano/deep_lstm.py",
    "chars": 6394,
    "preview": "import numpy as np\nimport theano as theano\nimport theano.tensor as T\nfrom theano.gradient import grad_clip\nimport time\ni"
  },
  {
    "path": "source_code_in_theano/input.py",
    "chars": 9724,
    "preview": "import numpy as np\nfrom nltk import wordpunct_tokenize\nimport nltk\nimport itertools\nimport operator\nimport sklearn\nimpor"
  },
  {
    "path": "source_code_in_theano/lstm.py",
    "chars": 5735,
    "preview": "import numpy as np\nimport theano as theano\nimport theano.tensor as T\nfrom theano.gradient import grad_clip\nimport time\ni"
  },
  {
    "path": "source_code_in_theano/news_group_data.py",
    "chars": 3950,
    "preview": "import numpy as np\nfrom nltk import wordpunct_tokenize\nimport nltk\nimport itertools\nimport operator\nimport sklearn\nimpor"
  },
  {
    "path": "source_code_in_theano/readme.md",
    "chars": 992,
    "preview": "## Deep Bidirectional Long Short Term Memory for Paraphrase Identification\n\n<p align=\"justify\">\nIn this work, we present"
  },
  {
    "path": "source_code_in_theano/test_lstm.py",
    "chars": 11441,
    "preview": "import os, data\nfrom sklearn.neural_network import MLPClassifier\nfrom sklearn.svm import LinearSVC\nfrom sklearn.linear_m"
  },
  {
    "path": "source_code_in_theano/train_lstm.py",
    "chars": 2246,
    "preview": "import os, time, data, news_group_data\nfrom utils import *\nfrom datetime import datetime\nfrom lstm import LSTM\nfrom deep"
  },
  {
    "path": "source_code_in_theano/utils.py",
    "chars": 4178,
    "preview": "import numpy as np\nimport sys\nimport operator\n\n\ndef train_with_sgd(model, X_train, y_train, learning_rate=0.001, nepoch="
  },
  {
    "path": "state-of-art-details.md",
    "chars": 22483,
    "preview": "## [Paraphrase Identification (State of the art)](https://aclweb.org/aclwiki/index.php?title=Paraphrase_Identification_("
  }
]

// ... and 12 more files (download for full content)

About this extraction

This page contains the full source code of the wasiahmad/paraphrase_identification GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 45 files (156.6 MB), approximately 4.9M tokens, and a symbol index with 52 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!