File size: 159,688 Bytes
96b6673 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pipeline Graph</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
* {
font-family: Arial, sans-serif;
}
.container {
width: 95%;
height: 40vh;
margin: 20px auto; /* 新增居中 */
position: relative; /* 新增定位 */
}
.title {
font: 24px/1.5 'Arial', sans-serif;
color: #6b7b8c;
text-align: center;
padding: 12px 0;
}
.node rect {
rx: 8px;
ry: 8px;
stroke-width: 1.5;
}
.node text {
font: 12px sans-serif;
pointer-events: none;
text-anchor: middle;
dominant-baseline: central;
}
.link {
fill: none;
stroke-width: 2;
stroke-opacity: 0.6;
}
.tooltip {
position: absolute;
padding: 8px;
background: #fff9ec;
border: 1px solid #ffd8a8;
border-radius: 4px;
box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
font: 12px/1.5 sans-serif;
color: #66512c;
}
.lower-container {
width: 95%;
height: 45vh;
margin: 20px auto;
display: flex;
gap: 20px;
}
.doc-panel, .info-panel {
height: 50vh;
flex: 1;
background: #f8f9fa;
border: 2px solid #B5C4B8;
border-radius: 12px;
padding: 15px;
}
#doc-list {
max-height: 95%;
overflow-y: auto;
}
.qa-box {
border-top: 2px solid #ecf0f1;
padding-top: 15px;
padding-bottom: 15px;
margin-bottom: 15px;
max-height: 30%;
overflow-y: auto;
}
.qa-question {
color: #2c3e50;
font-weight: 600;
margin-bottom: 12px;
max-height: 10%;
overflow-y: auto;
}
.qa-answer {
color: #34495e;
line-height: 1.6;
}
/* 在现有样式中添加 */
#output-box {
border-top: 2px solid #ecf0f1;
padding-top: 15px;
max-height: 50%;
overflow-y: auto;
}
/* 文档项样式 */
.doc-item {
border: 1px solid #B5C4B8;
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
background: #fff;
box-shadow: 0 2px 6px rgba(175, 189, 188, 0.1);
}
.color-display {
display: flex;
align-items: center;
gap: 8px;
margin-left: 20px;
flex: 1; /* 占据剩余空间 */
margin-right: 20px; /* 右侧间距 */
}
#control_container{
display: flex; /* 启用 Flexbox 布局 */
justify-content: space-between; /* 将子元素分布在容器的两端 */
align-items: center; /* 垂直居中对齐 */
width: 100%; /* 容器宽度 */
height: 15%;
}
.color-box {
width: 24px;
height: 24px;
border: 1px solid #ddd;
border-radius: 4px;
}
.value-display {
font-size: 0.9em;
min-width: 120px;
color: #666;
}
/* 答案分句样式 */
.sentence-box {
border: 1px solid #e0e7e9;
border-radius: 6px;
padding: 10px;
margin: 8px 0;
background: #f8fafb;
line-height: 1.5;
}
.output-line:hover {
background: #f0f0f0;
}
/* 输出结果样式调整 */
.output-line {
border-left: 3px solid #B5C4B8;
margin: 6px 0;
cursor: pointer;
padding: 8px 12px;
background: #fdfdfd;
border-radius: 4px;
}
.highlight-span {
cursor: pointer;
}
.highlight-span:hover {
filter: brightness(1.1);
}
.filter-slider {
margin-top: 15px;
width: 250px;
flex: 1; /* 占据剩余空间 */
display: none; /* 初始隐藏 */
}
.slider-header {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
font-size: 0.9em;
color: #666;
}
#threshold {
width: 100%;
height: 4px;
background: #ddd;
border-radius: 2px;
outline: none;
}
#threshold::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
background: #ff4444;
border-radius: 50%;
cursor: pointer;
}
</style>
</head>
<body>
<div id="graph-container" class="container"></div>
<div id="tooltip" class="tooltip" style="opacity:0"></div>
<!-- 原有上半部分代码保持不变... -->
<div class="lower-container">
<!-- 左半部文档列表 -->
<div class="doc-panel">
<div class="panel-title"> Documents</div>
<div id="doc-list" class="doc-list"></div>
</div>
<!-- 右半部信息面板 -->
<div class="info-panel">
<!-- 问题回答区域 -->
<div class="qa-box">
<div id="current-question" class="qa-question"></div>
<div id="current-answer" class="qa-answer"></div>
</div>
<!-- 控制面板 -->
<div class="control-box">
<label>Show Result:
<select id="result-select" onchange="updateResult(this.value)">
<option value="0">Result 1</option><option value="1">Result 2</option>
</select>
</label>
<label style="margin-left:20px">Granularity:
<select id="granularity">
<option>Document-level</option>
<option>Span-level</option>
<option>Word-level</option>
</select>
</label>
<div class="container" id="control_container">
<div class="color-display">
<div class="color-box"></div>
<div class="value-display">Click document to show value</div>
</div>
<div class="filter-slider" style="display:none">
<div class="slider-header">
<span>Filter Threshold: </span>
<span id="threshold-value">0.00</span>
</div>
<input type="range" id="threshold" min="0" max="1" step="0.01" value="0">
</div>
</div>
<!-- 输出结果 -->
<div id="output-box" class="output-box"></div>
</div>
</div>
<script>
const nodes = [{"id": "input", "type": "input", "params": {}}, {"id": "output", "type": "output", "params": {}}, {"id": "gpt-3.5-turbo-[1]", "type": "Generator", "params": {"type": "Generator", "Model": "gpt-3.5-turbo", "Max Turn": 6}}, {"id": "retriever-[4]", "type": "retriever", "params": {"type": "retriever", "Max Turn": 6}}, {"id": "gpt-3.5-turbo-[3]", "type": "Generator", "params": {"type": "Generator", "Model": "gpt-3.5-turbo", "Mode": "parallel", "Max Turn": 10}}, {"id": "evaluator-[2]", "type": "evaluator", "params": {"type": "evaluator", "Mode": "iterative", "Max Turn": 5}}];
const edges = [{"source": "input", "target": "gpt-3.5-turbo-[1]", "weight": 0}, {"source": "evaluator-[2]", "target": "gpt-3.5-turbo-[1]", "weight": 0}, {"source": "evaluator-[2]", "target": "output", "weight": 0}, {"source": "gpt-3.5-turbo-[3]", "target": "evaluator-[2]", "weight": 0}, {"source": "retriever-[4]", "target": "gpt-3.5-turbo-[3]", "weight": 0}, {"source": "gpt-3.5-turbo-[1]", "target": "retriever-[4]", "weight": 0}];
const colors = ['#B5C4B8', '#D3C0B6', '#A9B7C4', '#C4A9B7', '#B7C4A9'];
const container = d3.select("#graph-container");
const width = container.node().offsetWidth;
const height = container.node().offsetHeight;
let currentGranularity = "Document-level"; // 添加在script顶部变量声明处
// 在script顶部添加
let currentSentenceIndex = null;
let currentDocValues = [];
// 添加全局变量
let currentThreshold = 0;
// 初始化滑块事件
d3.select("#threshold")
.on("input", function() {
currentThreshold = parseFloat(this.value);
d3.select("#threshold-value").text(currentThreshold.toFixed(2));
applyThresholdFilter();
});
// 添加阈值过滤函数
function applyThresholdFilter() {
d3.selectAll(".highlight-span").each(function() {
const rawValue = parseFloat(this.dataset.value);
const originalColor = this.dataset.originalColor; // 新增获取原始颜色
const shouldShow = rawValue >= currentThreshold;
d3.select(this)
.style("background", shouldShow ? originalColor : "white")
.classed("filtered-out", !shouldShow);
});
}
function handleSpanClick(event, rawValue) {
event.stopPropagation();
d3.select(".color-box")
.style("background", event.target.style.background)
.style("border-color", "#999");
d3.select(".value-display")
.text(`Value: ${rawValue.toFixed(4)}`)
.style("color", "#333");
}
const svg = container.append("svg")
.attr("width", width)
.attr("height", height);
svg.append("defs").append("marker")
.attr("id", "arrow")
.attr("viewBox", "0 -5 10 10")
.attr("refX", 32)
.attr("markerWidth", 8)
.attr("markerHeight", 8)
.attr("orient", "auto")
.append("path")
.attr("d", "M0,-4L8,0L0,4")
.attr("fill", "#7E8A97");
svg.append("rect")
.attr("width", width-2)
.attr("height", height-2)
.attr("x", 1)
.attr("y", 1)
.attr("rx", 12)
.attr("ry", 12)
.attr("fill", "none")
.attr("stroke", "#B5C4B8")
.attr("stroke-width", 2)
.lower();
const simulation = d3.forceSimulation(nodes)
.force("link", d3.forceLink(edges).id(d => d.id).distance(120))
.force("charge", d3.forceManyBody().strength(-400))
.force("collide", d3.forceCollide().radius(42))
.force("x", d3.forceX()
.x(d => {
if (d.id === 'input') return width * 0.1;
if (d.id === 'output') return width * 0.9;
return width / 2;
})
.strength(0.1))
.force("y", d3.forceY(height/2).strength(0.05))
.force("center", null);
const link = svg.selectAll(".link")
.data(edges)
.enter().append("line")
.attr("class", "link")
.attr("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black")
.attr("marker-end", "url(#arrow)")
.style("stroke-dasharray", d => d.weight === 0 ? "4 4" : null);
const node = svg.selectAll(".node")
.data(nodes)
.enter().append("g")
.attr("class", "node")
.call(d3.drag()
.on("start", dragstart)
.on("drag", dragging)
.on("end", dragend))
.on("mouseover", showTooltip)
.on("mouseout", hideTooltip);
node.append("rect")
.attr("width", 80)
.attr("height", 36)
.attr("x", -40)
.attr("y", -18)
.attr("fill", d => colors[d.type.length % colors.length])
.attr("stroke", "#7E8A97");
node.append("text")
.text(d => d.type)
.attr("dy", 0);
simulation.on("tick", () => {
link.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y);
node.attr("transform", d => `translate(${d.x},${d.y})`);
});
const tooltip = d3.select("#tooltip");
function showTooltip(event, d) {
tooltip.transition().style("opacity", 0.9);
const params = Object.entries(d.params)
.filter(([k]) => k !== 'type')
.map(([k,v]) => `${k}: ${v}`)
.join('<br/>');
tooltip.html(`<strong>${d.type}</strong><br/>${params}`)
.style("left", (event.pageX + 15) + "px")
.style("top", (event.pageY - 15) + "px");
}
function hideTooltip() { tooltip.transition().style("opacity", 0); }
function formatDocumentText(d) {
const match = d.match(/Document \[([\d]+)\]\(Title:(.*?)\)(.*)/);
if (match) {
const number = match[1];
const title = match[2];
const content = match[3];
return `[${number}] <strong>${title}</strong>: ${content}`;
}
return d;
}
function dragstart(event, d) {
if (!event.active) simulation.alphaTarget(0.3).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragging(event, d) {
d.fx = event.x;
d.fy = event.y;
}
function dragend(event, d) {
if (!event.active) simulation.alphaTarget(0);
d.fx = null;
d.fy = null;
}
const allResults = [{"data": {"question": "Who has the highest goals in world football?", "answer": "The players with the highest all-time goals and highest men's and women's international football goals differ. The player with the highest all-time men's football goals is Josef Bican, who in 2020 was recognized by FIFA, the international governing body of football, as the record scorer with an estimated 805 goals. Christine Sinclair has the highest goals in women's international football with 187 and is the all-time leader for international goals scored for men or women. Cristiano Ronaldo and Ali Daei are currently tied for leading goalscorer in the history of men's international football with 109.", "qa_pairs": [{"context": "No context provided", "question": "Who has the highest goals in men's world international football?", "short_answers": ["Daei", "Ali Daei"], "wikipage": null}, {"context": "No context provided", "question": "Who has the highest goals all-time in men's football?", "short_answers": ["Bican", "Josef Bican"], "wikipage": null}, {"context": "The first player to reach 100 international goals was Italian Elisabetta Vignotto. Abby Wambach scored 100 goals in 9 years, while Christine Sinclair reached the milestone in just under 10 years while Mia Hamm is the youngest player to score 100 international goals at the age of 26 years 185 days. Most played exclusively in the forward position, with Kristine Lilly and Michelle Akers having also played as midfielder. All players scored at a high average rate of more than one goal every three matches. International goals in this list should not include goals scored in penalty-shoot-out; see Penalty shootout (association football). Players who are currently active at international level are indicated in bold type background.", "question": "Who has the highest goals in women's world international football?", "short_answers": ["Sinclair", "Christine Sinclair"], "wikipage": "List of women's footballers with 100 or more international goals ..."}], "docs": ["Document [1](Title:Argentina\u2013Brazil football rivalry): \"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n", "Document [2](Title:Godfrey Chitalu): have beaten Gerd M\u00fcller's record of 85 goals in a year, the Football Association of Zambia claimed that the world record actually pertained to Godfrey Chitalu who had scored 116 goals (possibly 117) during the 1972 calendar year and 107 during the 1972 season. The difference of goals is due to first 9 goals being scored before the season officially started. The Football Association of Zambia presented the evidence to FIFA but a spokesperson responded that they would ratify neither Lionel Messi's nor Chitalu's records as they do not keep statistical track of domestic competitions. Nonetheless, it could constitute the\n", "Document [3](Title:Godfrey Chitalu): highest official tally claimed by a national football association. Chitalu made his international debut on 29 June 1968 in a friendly match against Uganda in Lusaka which Zambia won 2\u20131. He scored his first goal in a 2\u20132 draw against the same team five days later. Chitalu played a prominent role during the World Cup qualification matches against Sudan with Zambia being eliminated on a strange rule which was peculiar to Africa and favoured the team that won the second leg. Despite the aggregate score being tied at 6\u20136 after Zambia won the first leg 4\u20132 and lost the return\n", "Document [4](Title:Wartan Ghazarian): goals (4 in World Cup qualifiers, 3 in Asian Cup qualifiers, 12 in friendlies). His record was later broken by Roda Antar, after Roda scored his 20th goal in 2018 FIFA World Cup qualification match against Laos. On 16 November 2008, during Round 6 of the Lebanese Football League, at the age of 39 years, Vartan scored his 130th goal in the Lebanese first division against Tadamon Tyre, becoming officially the highest all-time scorer in the history of Lebanese football. Some officials do not recognize the 12 goals he scored in the 2000\u20132001 season which was canceled. However, his remaining\n", "Document [5](Title:Josef Bican): for Christmas, but died less than 2 weeks before that, at the age of 88. Josef Bican Josef \"Pepi\" Bican (25 September 1913 \u2013 12 December 2001) was a Czech-Austrian professional footballer who played as a striker. Rec.Sport.Soccer Statistics Foundation (RSSSF) estimates that he scored at least 805 goals in all competitive matches, which would make him the most prolific scorer of all time. Having scored a record 600 league goals and at least 1468 goals overall, the International Federation of Football History & Statistics (IFFHS) awarded Bican the \"Golden Ball\" as the greatest goalscorer of the last century. He\n"]}, "doc_cache": ["Document [1](Title:Humberto Suazo)announced his retirement from football on January 14, 2016. Suazo had also become a fixture with his international side. In 2006, he scored 17 goals in national and international matches, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\". His four international goals all came in friendlies. He scored goals against New Zealand and Sweden. His other two goals came in the form of penalties versus Ivory Coast and Colombia. In January 2007, he was awarded world's top goal scorer of 2006 by the International Federation of Football History & Statistics in Salzburg, Austria. He was\n", "Document [2](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "Document [3](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "Document [4](Title:Oktay Dereliog\u0306lu)Oktay Derelio\u011flu Oktay Derelio\u011flu (born 17 December 1975) is Turkish former international footballer and current football coach. Derelio\u011flu played as a forward and is notable for his goal against Belgium during the qualifying rounds of the 1998 FIFA World Cup. The goal started at midfield before Derelio\u011flu jinked past six Belgian defenders, one of them twice, mimicking Diego Maradona's \"Goal of the Century\". Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14. Derelio\u011flu was born in Istanbul and began his club career with local club Fatih Karag\u00fcmr\u00fck. He made his debut at the age of\n", "Document [5](Title:FIFA World Cup top goalscorers)Germany or West Germany. In total, 64 footballers came from UEFA (Europe), 29 from CONMEBOL (South America), and only four from elsewhere: Cameroon, Ghana, Australia, and the United States. Fontaine holds the record for the most goals scored at a single tournament, with 13 goals in 1958. The players that came closest to this record were Kocsis in 1954, M\u00fcller in 1970 and Portugal's Eus\u00e9bio in 1966, with 11, 10 and 9, respectively. The lowest scoring tournament's top scorer was in 1962, when six players tied at only four goals each. Across the 21 editions of the World Cup, 30\n", "Document [6](Title:Argentina\u2013Brazil football rivalry)\"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n"], "log": ["gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Top goal scorers in international football history\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [1](Title:Humberto Suazo)announced his retirement from football on January 14, 2016. Suazo had also become a fixture with his international side. In 2006, he scored 17 goals in national and international matches, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\". His four international goals all came in friendlies. He scored goals against New Zealand and Sweden. His other two goals came in the form of penalties versus Ivory Coast and Colombia. In January 2007, he was awarded world's top goal scorer of 2006 by the International Federation of Football History & Statistics in Salzburg, Austria. He was\n\nDocument [2](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['Humberto Suazo was awarded the title of the world\\'s top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World\\'s Top Goal Scorer Award\"[1]. ', 'Ferenc Pusk\u00e1s holds the record for the highest number of goals in world football, scoring 84 goals in 85 internationals and a total of 512 goals in 528 matches[2]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'Humberto Suazo was awarded the title of the world\\'s top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World\\'s Top Goal Scorer Award\"[1]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Current leading goal scorers in top European football leagues\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [3](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n\nDocument [4](Title:Oktay Dereliog\u0306lu)Oktay Derelio\u011flu Oktay Derelio\u011flu (born 17 December 1975) is Turkish former international footballer and current football coach. Derelio\u011flu played as a forward and is notable for his goal against Belgium during the qualifying rounds of the 1998 FIFA World Cup. The goal started at midfield before Derelio\u011flu jinked past six Belgian defenders, one of them twice, mimicking Diego Maradona's \"Goal of the Century\". Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14. Derelio\u011flu was born in Istanbul and began his club career with local club Fatih Karag\u00fcmr\u00fck. He made his debut at the age of\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century[3]. ', 'Oktay Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14[4]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century[3]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Players with most goals in FIFA World Cup history\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [5](Title:FIFA World Cup top goalscorers)Germany or West Germany. In total, 64 footballers came from UEFA (Europe), 29 from CONMEBOL (South America), and only four from elsewhere: Cameroon, Ghana, Australia, and the United States. Fontaine holds the record for the most goals scored at a single tournament, with 13 goals in 1958. The players that came closest to this record were Kocsis in 1954, M\u00fcller in 1970 and Portugal's Eus\u00e9bio in 1966, with 11, 10 and 9, respectively. The lowest scoring tournament's top scorer was in 1962, when six players tied at only four goals each. Across the 21 editions of the World Cup, 30\n\nDocument [6](Title:Argentina\u2013Brazil football rivalry)\"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958[5]. ', 'Pel\u00e9 holds the record for the highest number of goals in world football, with 1281 goals recognized by FIFA[6]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958[5]. '}"], "output": ["Humberto Suazo was awarded the title of the world's top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\" [1].", "Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century [3]. ", "At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958 [5]. "], "result": {"length": 82}, "token_used": 4774, "doc_level": [[0.1525312689055882, 0.13723357149030624, 0.8945967055108693, 0.8918892159503512, 0.9125552169410704, 0.5720154682715246], [0.07981304257462607, 0.9104953104479965, 0.9505872882718894, 0.588912583235743, 0.9384378755311519, 0.9662720416898128], [0.06625038357332969, 0.08866438991752135, 0.4683328250838106, 0.9047185162464918, 0.5219900685430617, 0.3008872490613551]], "span_level": [[[[34, 0.9752396407005616], [93, 0.8480042981883524], [154, 0.3376145269353801], [298, 0.11908060659579556], [351, 0.3241283355659681], [399, 0.9765835857569739], [482, 0.2033701772798625], [633, 0.014042915539730028]], [[38, 0.8493001101032331], [165, 0.03312713523794175], [246, 0.08075571253349467], [355, 0.9898912949824789], [460, 0.8904421041367327], [610, 0.38480494719036606]], [[38, 0.29215553448463405], [165, 0.12807777408352983], [246, 0.06531646698441584], [355, 0.11867147295547309], [460, 0.5567021984669929], [610, 0.769231598164667]], [[37, 0.6135003633724169], [165, 0.48081133019211375], [297, 0.20916909199233424], [448, 0.7491566612724427], [538, 0.6739085072731161], [630, 0.7128352408130009]], [[50, 0.841831548325789], [74, 0.1593109111401093], [239, 0.9448484481403537], [338, 0.27484095387772056], [484, 0.019643740514884156], [587, 0.35951595078893017]], [[53, 0.7208818124952807], [280, 0.33648496430693486], [542, 0.28298701121624115]]], [[[34, 0.32801372770469195], [93, 0.3282807482104053], [154, 0.19525296544159376], [298, 0.31462690471047305], [351, 0.8780142232937335], [399, 0.5121432207142949], [482, 0.25737530987754453], [633, 0.17070633532620094]], [[38, 0.7800650772989878], [165, 0.751948512683764], [246, 0.41083403364590065], [355, 0.4771115777641406], [460, 0.810289699661572], [610, 0.37181088824095476]], [[38, 0.5979186460202017], [165, 0.7910254693757455], [246, 0.2274304127360015], [355, 0.36624432828148545], [460, 0.9274672849162501], [610, 0.5804309247346146]], [[37, 0.37758393784304867], [165, 0.6970956771842183], [297, 0.7330666086878526], [448, 0.8237479033231114], [538, 0.44881986527093976], [630, 0.9568261717729746]], [[50, 0.8227421675305857], [74, 0.8748392816298317], [239, 0.20195965051336318], [338, 0.4678488458434905], [484, 0.7803994731054034], [587, 0.45935028011585455]], [[53, 0.04659832953061516], [280, 0.40258405550994536], [542, 0.7387206933659894]]], [[[34, 0.9311796538221773], [93, 0.09802311563476718], [154, 0.1841608640590997], [298, 0.21184359592076385], [351, 0.7484600515692544], [399, 0.7919269234079847], [482, 0.3311662245548356], [633, 0.8470746844279172]], [[38, 0.05761980918988596], [165, 0.014965766885068899], [246, 0.6398679520746595], [355, 0.662434743823984], [460, 0.9793310465832624], [610, 0.31189926257479517]], [[38, 0.8506306128929363], [165, 0.4719436802640077], [246, 0.7503823882284352], [355, 0.9476525124608852], [460, 0.42555540314000206], [610, 0.31139389580505994]], [[37, 0.4908693853907372], [165, 0.4647473222376487], [297, 0.3512389954420536], [448, 0.4303600907067554], [538, 0.7533081385975575], [630, 0.8350390947391708]], [[50, 0.3629466053000354], [74, 0.47486379653628497], [239, 0.43182660962066555], [338, 0.8070052354697811], [484, 0.6039868781551592], [587, 0.3578713826249794]], [[53, 0.2561411484400733], [280, 0.7442471914015426], [542, 0.9008671728122173]]]], "word_level": [[[[34, 0.9726499810603795], [44, 0.08605671020733052], [48, 0.7596409861809017], [59, 0.05763882612999671], [64, 0.5145239051825758], [73, 0.45700032932647927], [76, 0.16541894551748604], [84, 0.5532297599051686], [88, 0.43057656720854987], [94, 0.14214088498206523], [100, 0.8758168922684791], [104, 0.20081190189567377], [109, 0.9356991116217385], [116, 0.7219574313352661], [118, 0.8708936103353166], [126, 0.09109601532609823], [131, 0.42478689455399443], [135, 0.9532934971578741], [149, 0.9217453358083582], [155, 0.7332662377274012], [158, 0.8796839520635138], [164, 0.6275774828812761], [167, 0.6734740068382253], [174, 0.6371931070574532], [177, 0.13655041255713818], [183, 0.28302491354819126], [186, 0.8787614548337237], [195, 0.9899222403661093], [199, 0.6945864751528461], [213, 0.9552826041096931], [222, 0.583279356201901], [233, 0.9941956623758189], [239, 0.48195696524188913], [246, 0.6677641280707589], [249, 0.7327067274655747], [253, 0.640038487613746], [258, 0.6762132799133805], [262, 0.5008711689992287], [266, 0.8340187102575166], [275, 0.8529102970249229], [279, 0.8697714238530159], [284, 0.2753275960783972], [291, 0.19085553946188516], [299, 0.4304598693894228], [303, 0.7311499877171561], [308, 0.1983888594019283], [322, 0.6189171026425311], [328, 0.2633704071272944], [332, 0.7764581833090596], [337, 0.0047831781014120445], [340, 0.9517417934051873], [352, 0.17670655740992414], [355, 0.5730771523543212], [362, 0.27374706562798024], [368, 0.30172016092127685], [376, 0.9076941653477242], [380, 0.7007656495300092], [388, 0.9118009978077177], [392, 0.6101883977635021], [400, 0.9372889641903638], [404, 0.8401677216195338], [410, 0.6423756646375247], [414, 0.051317570730764706], [420, 0.04104655183006123], [425, 0.6447578663016221], [428, 0.9253858884115785], [432, 0.06469230538917103], [437, 0.7059482176331049], [440, 0.1979618935792936], [450, 0.7946809861922456], [457, 0.3861910212203763], [463, 0.596413727876745], [469, 0.678685363839173], [473, 0.49727031812918976], [483, 0.8449105859428789], [486, 0.4863451116791887], [494, 0.4022791995796927], [500, 0.738801668038707], [503, 0.3752619227763957], [507, 0.48756856950671845], [515, 0.23666096661853975], [523, 0.9717143834132929], [527, 0.3015668769856851], [532, 0.4106303810200229], [539, 0.8240988498744837], [542, 0.5130940235821316], [547, 0.8835523732699343], [550, 0.5091943652363315], [554, 0.8363470240292314], [568, 0.8422641425363049], [579, 0.16864565697441403], [582, 0.4769481421525644], [591, 0.97665055636654], [599, 0.2481313029375718], [601, 0.435512214938918], [612, 0.3262569046900523], [615, 0.3887858238150872], [625, 0.4116203910375821], [634, 0.20804166314868577], [637, 0.998009136720274]], [[38, 0.01895191794983786], [46, 0.8091549259035867], [55, 0.22371531154224544], [64, 0.04170305585498946], [73, 0.7577407985746973], [76, 0.5606045725204206], [91, 0.2021533517584695], [101, 0.9593754788838803], [105, 0.5116245004131195], [112, 0.3831201417660244], [114, 0.3527125414730288], [119, 0.7386062631099651], [125, 0.7990031572361751], [132, 0.6375414755678795], [135, 0.1986568214797113], [138, 0.2990939923338106], [144, 0.042350902993752104], [147, 0.7923706775051015], [150, 0.5650679729269246], [166, 0.1876496745408287], [169, 0.9566224077010641], [172, 0.09018415352300413], [176, 0.565513881421995], [179, 0.1958777987756306], [183, 0.2778699853420834], [187, 0.42248651482377897], [195, 0.4950370421279131], [198, 0.09944192654106454], [202, 0.8355734164643888], [207, 0.849422416524635], [216, 0.9025131530244342], [221, 0.2246783253758975], [225, 0.6567175368851491], [231, 0.7061986337567662], [234, 0.9172364160432521], [238, 0.9291620251673874], [247, 0.35835364150186755], [251, 0.19806664327112145], [254, 0.817528899263466], [264, 0.6818162944034358], [267, 0.3471461344822452], [276, 0.24402369364302656], [280, 0.15965250543770604], [287, 0.11910002417525267], [290, 0.8414386419662918], [296, 0.3693408189901478], [308, 0.03007754373349747], [315, 0.7652163147590383], [319, 0.9630074508590972], [324, 0.06632505255957166], [329, 0.6930792074511971], [335, 0.41169847826129946], [340, 0.089983276967049], [343, 0.9221129577424041], [347, 0.024352377304205364], [356, 0.8363505282373193], [363, 0.7775150374476623], [370, 0.0069677471496412124], [374, 0.19400039836301552], [378, 0.13912023964891063], [383, 0.4061422221890222], [385, 0.6396258935475556], [392, 0.15742931839217533], [397, 0.2671888605480571], [405, 0.5029253150782247], [412, 0.7820817314198254], [416, 0.9298850123676912], [420, 0.730881373753405], [425, 0.15083904029380713], [434, 0.11458460764916611], [438, 0.8203304115935969], [443, 0.05505432706003832], [445, 0.18991814324255174], [456, 0.789323812722833], [461, 0.08249958198216845], [466, 0.7474939904482418], [469, 0.2321942352038885], [479, 0.6523289419822869], [489, 0.042554905862500436], [492, 0.6484626644520137], [496, 0.09481440010070763], [504, 0.7484695642032869], [507, 0.7946473942871619], [511, 0.7196758040157935], [514, 0.20146651780318037], [525, 0.2566481277219588], [530, 0.516785834040892], [536, 0.9657973341980828], [539, 0.16493605065462802], [543, 0.24896831106607964], [552, 0.133105467995994], [557, 0.4495983478008049], [565, 0.08028646005213202], [568, 0.7061667025527271], [572, 0.46326981753103535], [585, 0.40632475728473716], [588, 0.22393808944445026], [592, 0.2877759699302114], [598, 0.14091002413323384], [601, 0.4754504181304122]], [[38, 0.9794652317785165], [46, 0.7592533367173389], [55, 0.15029712452277344], [64, 0.7262454247566498], [73, 0.5179997577367508], [76, 0.08462317188116808], [91, 0.5267665429059917], [101, 0.2992592195180812], [105, 0.4133018610033953], [112, 0.942428206399702], [114, 0.7781863816223291], [119, 0.38582786134814384], [125, 0.5156602790786449], [132, 0.8926193689742762], [135, 0.5488150895385591], [138, 0.6737410553077283], [144, 0.5398186070880724], [147, 0.5152492017639415], [150, 0.3901711046270677], [166, 0.029766350051515733], [169, 0.20663417157776365], [172, 0.7288940548079337], [176, 0.7344787705705658], [179, 0.6229041369512515], [183, 0.9260335313847975], [187, 0.6477851651074203], [195, 0.4076175883589801], [198, 0.5767604149545458], [202, 0.20272054804405792], [207, 0.42307064574956366], [216, 0.6422707404844868], [221, 0.5261544740747952], [225, 0.48358792850477894], [231, 0.2615922892969095], [234, 0.1089786668351792], [238, 0.6399359365157113], [247, 0.7151429307962669], [251, 0.6894405827717566], [254, 0.05739548760055557], [264, 0.3883109323975241], [267, 0.9803369286933918], [276, 0.20182822729204963], [280, 0.5334362762069331], [287, 0.2603792884306666], [290, 0.02265491900456451], [296, 0.5723929074083922], [308, 0.8290600915093783], [315, 0.6556228427425396], [319, 0.22863902437526407], [324, 0.41073426672828317], [329, 0.693002119124838], [335, 0.30202850028750283], [340, 0.8445374136110521], [343, 0.08917522423474677], [347, 0.5714662784385183], [356, 0.2768355861289127], [363, 0.08349113497294103], [370, 0.05071155820628903], [374, 0.753990553339965], [378, 0.8917792065894531], [383, 0.3229700214611694], [385, 0.6017303429942582], [392, 0.9433062412100356], [397, 0.7093642077812163], [405, 0.4387203468807386], [412, 0.9137111697964068], [416, 0.5185792052653937], [420, 0.23895882737279361], [425, 0.3789222896282899], [434, 0.3383545103692106], [438, 0.6237546870972888], [443, 0.4478093437008268], [445, 0.8730950451877334], [456, 0.9843639356651239], [461, 0.6164389340883191], [466, 0.4512979468735716], [469, 0.35787370575737076], [479, 0.1813561722378061], [489, 0.7023033967532876], [492, 0.23272337126755438], [496, 0.6075361189595367], [504, 0.9358718504466712], [507, 0.6826051938380512], [511, 0.01681792279553651], [514, 0.6038252851495565], [525, 0.8422884785841935], [530, 0.5711223845833082], [536, 0.34628068509472], [539, 0.6634623105289472], [543, 0.6520574099131884], [552, 0.023118082819996943], [557, 0.08254306442643256], [565, 0.7991224776739679], [568, 0.06812939578506794], [572, 0.6933946560110053], [585, 0.7751816211920642], [588, 0.4719612811355067], [592, 0.6385257568754354], [598, 0.2027583817092793], [601, 0.5310095810091856]], [[37, 0.6786180923777138], [43, 0.7356796981712884], [54, 0.3122624183076076], [60, 0.6960494822400738], [71, 0.15055360315844535], [77, 0.4650389443155072], [80, 0.3238184922255305], [89, 0.7516940222095565], [95, 0.04539187097069175], [98, 0.9652899114059557], [106, 0.5557162320991196], [113, 0.93032680725156], [127, 0.567558913809352], [138, 0.5018757460910768], [142, 0.39583999956108173], [150, 0.18811390405119], [159, 0.5526108608245548], [166, 0.5607599981278294], [177, 0.639715257789935], [184, 0.2866673539359168], [187, 0.12031800704191531], [189, 0.9801948217129368], [197, 0.5936832049036366], [201, 0.5597963379805618], [204, 0.06429644050515182], [212, 0.7830986671175035], [216, 0.10297368806592178], [220, 0.009071092071019304], [225, 0.395915278184511], [233, 0.9618035411308056], [241, 0.5271786312897606], [248, 0.8895340283488209], [252, 0.2352986752761781], [263, 0.6123150016530776], [270, 0.3841032651074002], [273, 0.7839371360987384], [277, 0.17580201465906675], [282, 0.535494650333246], [287, 0.8418923054436044], [293, 0.9786186844928716], [298, 0.14803181622976813], [302, 0.9855370806350663], [307, 0.7433888801183093], [315, 0.34361312415503853], [318, 0.042822262077160556], [327, 0.352962714409533], [334, 0.8531925329491449], [345, 0.4332054261440911], [352, 0.11664314069391213], [357, 0.9806071645369893], [361, 0.8410292477122081], [369, 0.24147037549446226], [380, 0.7431827362279382], [384, 0.7586627544696628], [387, 0.31432726090688146], [392, 0.9215318718781551], [399, 0.6066644289228255], [409, 0.3426301344417091], [415, 0.15318413972607248], [426, 0.9936992737784514], [432, 0.9168614614913766], [435, 0.410322332376718], [439, 0.29025666713439335], [449, 0.2656483776458468], [460, 0.7939536573715431], [466, 0.23925041705171124], [470, 0.7643591618713277], [477, 0.5153722370211955], [481, 0.6415445619502043], [486, 0.5384996847469026], [492, 0.29896405132460746], [495, 0.7307102179473692], [504, 0.14217340812378376], [517, 0.003339393350253017], [521, 0.45156981921232253], [530, 0.7355754723301862], [535, 0.19204499683207], [539, 0.5058963573199146], [550, 0.07530362469826835], [554, 0.13473159760964692], [559, 0.8842680623215865], [562, 0.4003265968065788], [571, 0.2500603578159315], [575, 0.8857690385941768], [581, 0.6726743051429795], [585, 0.8563962875675292], [590, 0.6757159081925681], [597, 0.7585621678845341], [602, 0.42496674443286775], [608, 0.36906409880961966], [613, 0.45559683377485727], [619, 0.3097425746420145], [631, 0.007828954910206853], [634, 0.7712049790122333], [639, 0.9756689855037052], [643, 0.6565913655130314], [649, 0.3273860558570758], [652, 0.08695398500152751], [656, 0.11115207992931708], [660, 0.21888978587399288]], [[50, 0.4181276173985091], [58, 0.22358256875618876], [61, 0.8428357644094672], [66, 0.07895283485215976], [75, 0.832648782274282], [78, 0.8449929241209239], [85, 0.6584257332091348], [88, 0.17492752108361387], [100, 0.09675999690622195], [105, 0.7716554892649223], [110, 0.7115584342294312], [115, 0.11527010768059043], [125, 0.4732062209830158], [128, 0.15341365678925434], [133, 0.14633899700124475], [142, 0.5347904100729775], [149, 0.7684896594208711], [159, 0.079850026024186], [163, 0.38816043411066536], [168, 0.6818105453267002], [173, 0.8252105470104025], [178, 0.4908887946599344], [189, 0.5065778347092146], [199, 0.6348193683334751], [206, 0.21549879074603184], [217, 0.7687890049662857], [221, 0.5725686535030459], [225, 0.3836186927038474], [232, 0.6006526539962808], [240, 0.045687993584656694], [249, 0.4398687287162385], [255, 0.7340205160386013], [259, 0.3331977478453423], [266, 0.8646282116020737], [270, 0.4868806585463368], [274, 0.5922812386454627], [279, 0.021955731053276528], [285, 0.5937530491539885], [292, 0.2073257803631705], [295, 0.11047876430716452], [297, 0.6780533483992277], [304, 0.5338115459008669], [316, 0.6673120036770543], [321, 0.6753018690987888], [324, 0.40200274252480783], [330, 0.8498680485854615], [333, 0.7631680250486181], [339, 0.21364832955951873], [343, 0.7119872680988123], [351, 0.9161671862600897], [356, 0.9298029467253388], [361, 0.010687990855487883], [369, 0.9283025539274666], [372, 0.4340117187969056], [377, 0.8900909042273508], [384, 0.2138711682285921], [389, 0.2579528792821434], [396, 0.17704807663823663], [399, 0.39858301459241097], [405, 0.3025286136075479], [412, 0.3443583794015198], [415, 0.17733489469957564], [420, 0.8249570400727799], [424, 0.39554238549450427], [435, 0.018804878657817103], [443, 0.1666952078023889], [446, 0.5287648550754626], [452, 0.2517074888144806], [457, 0.18380530314453425], [461, 0.8352231114666506], [464, 0.07630747586006958], [468, 0.3774003546970661], [471, 0.8875923306116066], [485, 0.15362065249011259], [489, 0.016613189077949952], [496, 0.2957986416693388], [504, 0.8646000106947709], [517, 0.07017434826811253], [521, 0.5167609162738179], [528, 0.7761046244708356], [532, 0.9736986047136892], [535, 0.24459705279663302], [541, 0.9699143521402658], [546, 0.08631147057753963], [550, 0.9329536461710488], [558, 0.4029094662189612], [563, 0.48950213814290533], [566, 0.5720925927347997], [571, 0.06653739284208882], [576, 0.9369613636588959], [582, 0.6335837590905603], [588, 0.4927572074779326], [595, 0.743473566610875], [599, 0.08764534745472508], [602, 0.33164384004392455], [611, 0.7018519136829592], [614, 0.3332136079757716], [618, 0.9181048304139274], [624, 0.029015313742146498], [629, 0.5887503014423027]], [[53, 0.7098624436551949], [63, 0.27350597663329], [70, 0.3778543171535603], [73, 0.6788789518251402], [77, 0.10726250942979199], [87, 0.8394934840325272], [90, 0.13144659671593306], [96, 0.14916667941771888], [110, 0.6081108713582365], [121, 0.7754722094408412], [124, 0.048850174508976885], [133, 0.9249341678422579], [141, 0.0806650159535468], [145, 0.8178204511915984], [157, 0.23806659840467403], [163, 0.9636346881028524], [170, 0.7348125410146231], [178, 0.695970320773431], [187, 0.2683538153629337], [194, 0.027531170222428236], [197, 0.9897871581832495], [201, 0.9349219621561988], [211, 0.20826974781683527], [214, 0.40830153079211073], [220, 0.9522543601443701], [234, 0.48722825670149117], [245, 0.2189698220892068], [248, 0.7894018204012684], [257, 0.11658783085727709], [265, 0.7612179589301148], [269, 0.25687250457509336], [281, 0.7915486959101194], [288, 0.6620038717870498], [293, 0.17793247221924535], [299, 0.8874161227734442], [303, 0.1845146677702384], [314, 0.42922325616576695], [317, 0.7297133293653615], [322, 0.22172246028971176], [325, 0.405231052472529], [329, 0.6403644213120393], [337, 0.8296638150344615], [343, 0.9234366987033985], [352, 0.24389357853446325], [355, 0.8054120495364607], [357, 0.2261120490782631], [370, 0.2090667153511956], [382, 0.6598685218022208], [391, 0.7674729035384641], [395, 0.9908798421289623], [402, 0.24050918953720957], [412, 0.5033565750721927], [423, 0.10195103581721132], [430, 0.48872813200214615], [441, 0.549337304909546], [446, 0.3665262549052506], [450, 0.5454383881404011], [456, 0.30445706687802043], [459, 0.2857412394338058], [468, 0.8965825738674744], [474, 0.5961864023812716], [484, 0.3506319466997945], [488, 0.9566836717788472], [494, 0.614234466994785], [500, 0.42844585050155337], [506, 0.14717073025662597], [512, 0.3449488647931255], [518, 0.3568748346660552], [524, 0.9628157595798801], [528, 0.8971519829989567], [536, 0.21282978468896085], [543, 0.5048568894709257], [547, 0.809505242754497], [551, 0.404914214074809], [557, 0.9863217837460115], [566, 0.009213726267557787], [570, 0.7146586576269167], [575, 0.3220464582074578], [581, 0.7102890944830219], [585, 0.6449417276264502], [590, 0.5784561547249889], [597, 0.6175460902863847], [604, 0.6964329578800111], [607, 0.6507577711812726], [613, 0.18064408949669108], [617, 0.4927123476219185], [625, 0.07186669634357168], [630, 0.940838267869826], [633, 0.15705888252056666], [637, 0.635591687954609], [643, 0.6464760716695656], [647, 0.10630347815627617], [660, 0.5190274367083727], [672, 0.6925411729540314], [677, 0.06048738781455276], [682, 0.5395952027074449], [691, 0.550134321974646], [695, 0.841719121163114], [698, 0.7938554667851336], [702, 0.9392368087223598]]], [[[34, 0.7890569315564715], [44, 0.34833360797833524], [48, 0.23310670203749118], [59, 0.10275006708192691], [64, 0.97349460252762], [73, 0.11341489632136548], [76, 0.5005021251608037], [84, 0.10080262327645861], [88, 0.7057930822155167], [94, 0.6671977752330589], [100, 0.27742499712242763], [104, 0.05879260321763102], [109, 0.6867775661796186], [116, 0.8961247400426459], [118, 0.7451806366818057], [126, 0.5649536420386371], [131, 0.5478797376490352], [135, 0.5520351101773397], [149, 0.359549602214737], [155, 0.7706253301123137], [158, 0.17622559182261788], [164, 0.1723096796991308], [167, 0.9194426318991031], [174, 0.29398725467038445], [177, 0.8543548849533317], [183, 0.17475980276352232], [186, 0.31541291279916905], [195, 0.08876444151372109], [199, 0.9299259304403733], [213, 0.1443561245915812], [222, 0.7763669289734871], [233, 0.8092179054280617], [239, 0.4243292377445288], [246, 0.5753206683531717], [249, 0.32035625650257094], [253, 0.12439978464843215], [258, 0.4234276559626138], [262, 0.6973360806652288], [266, 0.17190614283098815], [275, 0.7470478621483679], [279, 0.8906130893055474], [284, 0.04323681805940083], [291, 0.27735355451116883], [299, 0.5517245544053182], [303, 0.9299521135290709], [308, 0.6967870645268078], [322, 0.16348400211186676], [328, 0.146858094033943], [332, 0.7683391053402875], [337, 0.49708211060653185], [340, 0.13032249800068885], [352, 0.7034000833108022], [355, 0.3348032001824297], [362, 0.7335572085931431], [368, 0.8297282542996905], [376, 0.9091750363509475], [380, 0.9480042082107611], [388, 0.5157719166272101], [392, 0.4498340428048001], [400, 0.32065773904952244], [404, 0.7356036622976159], [410, 0.6743563799767319], [414, 0.6007528393800347], [420, 0.3314474275334316], [425, 0.7761390531361201], [428, 0.7443898732023506], [432, 0.07624013605948221], [437, 0.311582912457708], [440, 0.42557166487562614], [450, 0.9877386816445454], [457, 0.5272789637644623], [463, 0.811916139737507], [469, 0.6214926563240035], [473, 0.38155171117913533], [483, 0.016273613123231057], [486, 0.47113637116926343], [494, 0.9897673645970705], [500, 0.2487503589994795], [503, 0.5540829249848721], [507, 0.08958239496129661], [515, 0.19572452991574718], [523, 0.9795019261831417], [527, 0.14527644667934325], [532, 0.3499402780039973], [539, 0.021265322037981704], [542, 0.9099254878829618], [547, 0.11797028477615568], [550, 0.6968430370568808], [554, 0.1580095061675706], [568, 0.7693688223587518], [579, 0.09026817384677954], [582, 0.7929368137849006], [591, 0.3378386266204926], [599, 0.21694987999357185], [601, 0.6018431410757022], [612, 0.6672460618027466], [615, 0.5971250824814032], [625, 0.10007799042948928], [634, 0.3404581184176648], [637, 0.34453347465320106]], [[38, 0.4474508735131496], [46, 0.6173468090368438], [55, 0.43569101970742796], [64, 0.2660048812850917], [73, 0.9105305294237704], [76, 0.20133702563552835], [91, 0.8431824808304823], [101, 0.39242147668620475], [105, 0.4523651702455115], [112, 0.5025991007172359], [114, 0.9869319972850592], [119, 0.6505647072855929], [125, 0.27903360528920096], [132, 0.08731932969559009], [135, 0.3884063737134462], [138, 0.026617118148956953], [144, 0.8998392229481966], [147, 0.2141054275903428], [150, 0.9539375465280628], [166, 0.650296476547029], [169, 0.9467686652257072], [172, 0.8860464587053568], [176, 0.7204309611438177], [179, 0.5220835420329334], [183, 0.8668190208141641], [187, 0.7461309322619611], [195, 0.2408011610688514], [198, 0.19083236798586178], [202, 0.34742758197134427], [207, 0.6383805012025395], [216, 0.10391665776135739], [221, 0.8347054339269112], [225, 0.43627018017125474], [231, 0.8223928300403988], [234, 0.1569636235773324], [238, 0.7553043446621545], [247, 0.9991102860142057], [251, 0.8370294246230476], [254, 0.5633964291714767], [264, 0.1711744688368977], [267, 0.1197465030716971], [276, 0.7214710914747487], [280, 0.8730046136761482], [287, 0.004680736782659345], [290, 0.6514818895313449], [296, 0.7265939042782648], [308, 0.35072817332768425], [315, 0.509532497256609], [319, 0.23702464477799312], [324, 0.26775784493550436], [329, 0.5862771208752532], [335, 0.9226897967936665], [340, 0.9924423589735745], [343, 0.9705702072722224], [347, 0.17385858335942872], [356, 0.7375280113008328], [363, 0.5370579250712801], [370, 0.5096066515774006], [374, 0.3026193963951479], [378, 0.744546771426147], [383, 0.17813370150353847], [385, 0.40484831905046326], [392, 0.7863284993585248], [397, 0.5357557855679704], [405, 0.3656328425624815], [412, 0.5791704518952997], [416, 0.1302520449085095], [420, 0.45361529060189], [425, 0.13919444569045403], [434, 0.5866746485538024], [438, 0.8081423761008428], [443, 0.16992182969890557], [445, 0.5465276495143276], [456, 0.8998816614613986], [461, 0.10777714316124698], [466, 0.1681655477447167], [469, 0.34987661138864024], [479, 0.15535949595187803], [489, 0.3757914607234336], [492, 0.2894894181396652], [496, 0.22934716715178394], [504, 0.2245356214959584], [507, 0.33532189175623917], [511, 0.7363271827278677], [514, 0.6972419906319351], [525, 0.21701061469009597], [530, 0.22648002551906332], [536, 0.9655385419126402], [539, 0.6011661386585093], [543, 0.8753815007412826], [552, 0.06014784364721837], [557, 0.14280920818668497], [565, 0.41597597793906715], [568, 0.9082852794108708], [572, 0.3661377260303065], [585, 0.20771362920034397], [588, 0.7614214032350628], [592, 0.605107440558353], [598, 0.16347158872749246], [601, 0.1704727549155275]], [[38, 0.44223362740057326], [46, 0.9280547524038262], [55, 0.9034089510910916], [64, 0.3095912719501891], [73, 0.24585514816742682], [76, 0.5397430397763092], [91, 0.655343282168449], [101, 0.08860800579137951], [105, 0.654978832506852], [112, 0.8400418661223789], [114, 0.8957113239762413], [119, 0.8427544709335894], [125, 0.28985461809442115], [132, 0.7558537845057792], [135, 0.8684569811462889], [138, 0.9484454664108761], [144, 0.5379735850620495], [147, 0.5014763132418425], [150, 0.5678434404591313], [166, 0.6520788962194506], [169, 0.23184137819664719], [172, 0.975243465645978], [176, 0.4765016425093468], [179, 0.685695923774693], [183, 0.04411807915427313], [187, 0.17154494744554327], [195, 0.9870644223493374], [198, 0.48672308554197696], [202, 0.11182799710902858], [207, 0.849294217698516], [216, 0.26463403807142627], [221, 0.6572949966504793], [225, 0.8705604820148202], [231, 0.9998271654633966], [234, 0.055561167557820035], [238, 0.5265122837185042], [247, 0.8795068353399654], [251, 0.8286267641217387], [254, 0.16680918130025335], [264, 0.029303041082990866], [267, 0.01631659330665891], [276, 0.7342031455937434], [280, 0.916753860836387], [287, 0.14993438226629008], [290, 0.2324555461946166], [296, 0.14412313518608755], [308, 0.4148133054311651], [315, 0.38313557809137877], [319, 0.5912985712885397], [324, 0.3084532351825161], [329, 0.2626734465106423], [335, 0.6496635758964893], [340, 0.5735613446979964], [343, 0.6145812190368586], [347, 0.8280822248061036], [356, 0.0802347596520121], [363, 0.5489584675860743], [370, 0.1496634456274345], [374, 0.790379971748317], [378, 0.8563851669925344], [383, 0.07260133819233983], [385, 0.359146273632164], [392, 0.9875119736672606], [397, 0.0010048374462110488], [405, 0.8768785631742823], [412, 0.6390138897009717], [416, 0.6702662976304804], [420, 0.37123299858531567], [425, 0.5985473170947941], [434, 0.7274824270781993], [438, 0.17930792251885608], [443, 0.11585138168612297], [445, 0.3542090975184625], [456, 0.6169097550976957], [461, 0.40886719041661623], [466, 0.17305083058611526], [469, 0.7275878633454099], [479, 0.37219549597331436], [489, 0.033353248620686005], [492, 0.9121686998529818], [496, 0.14788561593654248], [504, 0.7956804487463186], [507, 0.22629374156939908], [511, 0.491929807631321], [514, 0.7633822197033119], [525, 0.8634766748901725], [530, 0.018129181905868874], [536, 0.7635377465854861], [539, 0.026559657817842974], [543, 0.8052449135417911], [552, 0.9629753671776455], [557, 0.17177489540973312], [565, 0.5860837122340373], [568, 0.9099135384449513], [572, 0.9792669981821831], [585, 0.8429095476588548], [588, 0.5597289537548925], [592, 0.5898246302489015], [598, 0.3978855787411818], [601, 0.8666192781340598]], [[37, 0.48732145806003135], [43, 0.7315389182587093], [54, 0.7346138137733782], [60, 0.791522838015047], [71, 0.18195736644326188], [77, 0.35697200873315327], [80, 0.9233267381378623], [89, 0.5194318225323206], [95, 0.22660113007996685], [98, 0.657942742848426], [106, 0.5520156569255555], [113, 0.7283308804898909], [127, 0.855074350464641], [138, 0.024644201734533078], [142, 0.49746366194427527], [150, 0.6559447356188574], [159, 0.11427698263984032], [166, 0.1736951553985978], [177, 0.22407257720246776], [184, 0.03509654016049246], [187, 0.794032855225741], [189, 0.8890970130262511], [197, 0.19735847534869033], [201, 0.12462554183011332], [204, 0.7848573846433101], [212, 0.23957492131038105], [216, 0.9274059868185438], [220, 0.5978834990800633], [225, 0.6398212705297761], [233, 0.4687133261214791], [241, 0.9608768853171389], [248, 0.8114157081430573], [252, 0.3590144858714962], [263, 0.6817101427091221], [270, 0.7095178203646221], [273, 0.1673861870523642], [277, 0.11653279908183722], [282, 0.7298884293063613], [287, 0.07169441501234297], [293, 0.9629308785122198], [298, 0.2936764705129362], [302, 0.08099748615118574], [307, 0.13470815750882104], [315, 0.1861520657337956], [318, 0.09642572354107981], [327, 0.0868199658530866], [334, 0.7496740459061344], [345, 0.36588958478232625], [352, 0.5833815986780084], [357, 0.5164128122826452], [361, 0.8681044387306317], [369, 0.5556029430440954], [380, 0.06985286216672626], [384, 0.2601032901187196], [387, 0.8064223748398224], [392, 0.523700877153728], [399, 0.21393520864874005], [409, 0.8933881149332326], [415, 0.7599273305849825], [426, 0.9183367161617594], [432, 0.0945655190082928], [435, 0.02184027158112578], [439, 0.265318312570446], [449, 0.8485020415964083], [460, 0.4426380762786035], [466, 0.5299663098990308], [470, 0.25011117822767226], [477, 0.541226019879165], [481, 0.9960845696119888], [486, 0.5733265068360727], [492, 0.393271503311305], [495, 0.1229780997077572], [504, 0.4108992856472402], [517, 0.8491335702308893], [521, 0.20381313802331047], [530, 0.2158719856177248], [535, 0.2734639885830148], [539, 0.49026614281676295], [550, 0.15607270191293132], [554, 0.1486443303981022], [559, 0.2100724327675879], [562, 0.3090396245764352], [571, 0.21905180265059887], [575, 0.8517598840808955], [581, 0.7026969072298469], [585, 0.05112447583666746], [590, 0.5786512058922415], [597, 0.18198441080102112], [602, 0.07706488776076181], [608, 0.6787417286256527], [613, 0.16325673110718686], [619, 0.9972789429762873], [631, 0.4537956751197344], [634, 0.5125121509447853], [639, 0.46469297697024536], [643, 0.41655212576143974], [649, 0.0037973950714607074], [652, 0.6633751282998047], [656, 0.10757093043061772], [660, 0.338893725753324]], [[50, 0.46329562499023536], [58, 0.16645052615652], [61, 0.23279229373333654], [66, 0.8874775658699657], [75, 0.35852094977349924], [78, 0.7123989022131302], [85, 0.03191142584116824], [88, 0.11294809300439423], [100, 0.8674428435670353], [105, 0.2618953090979549], [110, 0.9654296486707095], [115, 0.740593506110645], [125, 0.8671278333134325], [128, 0.9371048574358949], [133, 0.5822008087842866], [142, 0.5426908406935381], [149, 0.4579294006700333], [159, 0.9872539446091603], [163, 0.6522262964951245], [168, 0.701208762229819], [173, 0.539651122434288], [178, 0.5205971563303006], [189, 0.7910740688808839], [199, 0.880707545901061], [206, 0.42411548104058716], [217, 0.7288803035308135], [221, 0.935122773844572], [225, 0.18607254650758875], [232, 0.14851879159265857], [240, 0.6439653702786083], [249, 0.25214938115435515], [255, 0.5787773104041685], [259, 0.21170691366237548], [266, 0.2281767295730729], [270, 0.7282859114876636], [274, 0.6927018853358593], [279, 0.3149043477308541], [285, 0.37786853627529815], [292, 0.9621863241354417], [295, 0.22654863189104157], [297, 0.1950885421191273], [304, 0.7035432388336782], [316, 0.9868707975181374], [321, 0.44489616163056334], [324, 0.9962101293432382], [330, 0.4057357576448518], [333, 0.3816366350967332], [339, 0.09632930174882737], [343, 0.21041083337242017], [351, 0.44440712708069463], [356, 0.17164252340076802], [361, 0.27224777073991924], [369, 0.2746708244330234], [372, 0.5042090949750971], [377, 0.26893772188424614], [384, 0.13703162466306829], [389, 0.6709946993478709], [396, 0.7425031025858074], [399, 0.07367990763711374], [405, 0.5737329087841551], [412, 0.42283768445053327], [415, 0.14538208626702298], [420, 0.7385864330759113], [424, 0.5352434565723423], [435, 0.9562950262489279], [443, 0.37689879630749135], [446, 0.9800283875284765], [452, 0.27194862024284394], [457, 0.9238213995157135], [461, 0.7697259871148568], [464, 0.8196762336433535], [468, 0.08948938931763672], [471, 0.8910718142313844], [485, 0.4414001787442354], [489, 0.04360567041065011], [496, 0.9270145494284555], [504, 0.042545759396008465], [517, 0.9521675973975832], [521, 0.008791207278368351], [528, 0.2685486830216608], [532, 0.9200116043998585], [535, 0.17764129517234362], [541, 0.20861002583786192], [546, 0.741317459447591], [550, 0.3459646744396313], [558, 0.8155329648321876], [563, 0.6424834691936478], [566, 0.37024342286240786], [571, 0.6222972219125422], [576, 0.5601816460629756], [582, 0.9843033745506632], [588, 0.33742712567610544], [595, 0.8322894387460966], [599, 0.05355159325555381], [602, 0.8699304334693828], [611, 0.6706494662230841], [614, 0.4756513274513827], [618, 0.31775158476108134], [624, 0.6611687751408006], [629, 0.8608485985316154]], [[53, 0.699102494724101], [63, 0.800372721585696], [70, 0.5323197752654771], [73, 0.2962854028122266], [77, 0.3228392073801596], [87, 0.5540922604007493], [90, 0.6351743082939401], [96, 0.8311140720562941], [110, 0.2556625214416398], [121, 0.4513850797741661], [124, 0.22907572689690436], [133, 0.5380537917758845], [141, 0.6408602129882965], [145, 0.9445972392341314], [157, 0.6199553571763167], [163, 0.554232805563841], [170, 0.9013474997291948], [178, 0.8918302072501937], [187, 0.8909589946359359], [194, 0.46741390005375927], [197, 0.23394093920211934], [201, 0.7554857786207828], [211, 0.6716484338360507], [214, 0.6982625810142954], [220, 0.07756829617786964], [234, 0.10543133801207416], [245, 0.8212706147019501], [248, 0.7819417976845624], [257, 0.4273771639622532], [265, 0.6528465272724773], [269, 0.9638939836964517], [281, 0.7450668218566974], [288, 0.05525705408212278], [293, 0.21389849085183343], [299, 0.4636204567619403], [303, 0.9966123272587805], [314, 0.22428482939894145], [317, 0.7921600916608913], [322, 0.3038124297513308], [325, 0.7563636611097031], [329, 0.11444958049492016], [337, 0.994068284057543], [343, 0.7317072006838083], [352, 0.36369310428714974], [355, 0.11292761408657626], [357, 0.5286592496178362], [370, 0.06028885848596577], [382, 0.8470438298307269], [391, 0.5776859639730917], [395, 0.5251835536712407], [402, 0.45990716537290444], [412, 0.7428870061519649], [423, 0.7510285213638478], [430, 0.4352733619724859], [441, 0.2147695920996574], [446, 0.501240001459065], [450, 0.667244416534853], [456, 0.297215479510085], [459, 0.8939244300696457], [468, 0.4683704890372028], [474, 0.2948296859509618], [484, 0.5558978008927696], [488, 0.3187845041977845], [494, 0.8358701346915884], [500, 0.7021760106841318], [506, 0.09997668241321533], [512, 0.5363629667239129], [518, 0.6095471050954253], [524, 0.06645269858275804], [528, 0.0004996794999616583], [536, 0.18583913985147682], [543, 0.2422029115331914], [547, 0.8878040824945956], [551, 0.0005814220018177663], [557, 0.06492637518782718], [566, 0.9356451130645658], [570, 0.27496408425900665], [575, 0.8149729817986036], [581, 0.7210780924167814], [585, 0.1510244300524528], [590, 0.20294576451397206], [597, 0.1553282518502751], [604, 0.4912031029658829], [607, 0.8394845881297451], [613, 0.7167414521575795], [617, 0.6258405704852249], [625, 0.1432368900797274], [630, 0.002903796951071125], [633, 0.20218923597005156], [637, 0.8332197633190558], [643, 0.8234395593505321], [647, 0.6349695464514649], [660, 0.6012635910462582], [672, 0.9362407256861722], [677, 0.22284153273302432], [682, 0.151976768826095], [691, 0.8250511870651384], [695, 0.5892820741377013], [698, 0.25155675749236817], [702, 0.742731328132861]]], [[[34, 0.9636600537618455], [44, 0.7437945944807257], [48, 0.8167755204855559], [59, 0.4921773678349116], [64, 0.8053567616220777], [73, 0.5700045151611166], [76, 0.7630111189110091], [84, 0.88365565859156], [88, 0.2233792197327109], [94, 0.7386905488629014], [100, 0.37523879679703187], [104, 0.1784340102949673], [109, 0.33578723681849654], [116, 0.545012726220743], [118, 0.3277119915329856], [126, 0.35126075314636085], [131, 0.24592953074169677], [135, 0.006141596161829521], [149, 0.078418659674236], [155, 0.05163370682889579], [158, 0.9078188180121576], [164, 0.40364899609502813], [167, 0.875723422854441], [174, 0.1902459583262993], [177, 0.47800210901623597], [183, 0.78738848908616], [186, 0.6462206526354649], [195, 0.5599955063440741], [199, 0.4119511106798204], [213, 0.06903002557771654], [222, 0.7847289018575392], [233, 0.3075813157578189], [239, 0.7629280971179497], [246, 0.540157297334651], [249, 0.530198079020022], [253, 0.35168666422334294], [258, 0.2208951506629111], [262, 0.3314450632464927], [266, 0.9619402242871128], [275, 0.24937888882457504], [279, 0.46324533269749], [284, 0.9040467515838522], [291, 0.5615296680496175], [299, 0.8539580258622507], [303, 0.07360629092607218], [308, 0.9217870208950464], [322, 0.45025230717064535], [328, 0.7413576004604062], [332, 0.3676868225662393], [337, 0.9568505036804705], [340, 0.18032789101920532], [352, 0.5209139443916063], [355, 0.332870464442223], [362, 0.509244063757699], [368, 0.825667793299011], [376, 0.9055345060630526], [380, 0.4413353736406316], [388, 0.7144565042653581], [392, 0.2677189870911154], [400, 0.16986184341191557], [404, 0.0162948263290561], [410, 0.11925579193360836], [414, 0.006545359502425185], [420, 0.24793733793349504], [425, 0.035782021601621694], [428, 0.8058232222224312], [432, 0.11160633573976575], [437, 0.8785918499614999], [440, 0.47396294743805045], [450, 0.17272158928731962], [457, 0.48890922599812725], [463, 0.40641396640679905], [469, 0.7317979087049525], [473, 0.022496394301480538], [483, 0.6959406470731367], [486, 0.563754028973515], [494, 0.6773912152907232], [500, 0.013363086227264676], [503, 0.35886327121950623], [507, 0.045743575352879096], [515, 0.7127070952580636], [523, 0.36466298249342854], [527, 0.3221549319243515], [532, 0.6765505496499103], [539, 0.5523428099144133], [542, 0.6531582027124223], [547, 0.7983102541719761], [550, 0.39558883178044], [554, 0.9861022579930279], [568, 0.9406136276935716], [579, 0.4244955950165664], [582, 0.6157272092699928], [591, 0.3937550269095694], [599, 0.722229502617793], [601, 0.881210133285057], [612, 0.7265169211888043], [615, 0.9694385367670116], [625, 0.9618134685335965], [634, 0.6584265047651547], [637, 0.41732014148128505]], [[38, 0.37337568183968184], [46, 0.8314870810772514], [55, 0.05254929349011084], [64, 0.8931412132216846], [73, 0.3438805848004296], [76, 0.325455535440039], [91, 0.6612366019397925], [101, 0.9646760686493935], [105, 0.4013030864463163], [112, 0.3810221830796735], [114, 0.1899734738239206], [119, 0.7543039345621384], [125, 0.6154861874091271], [132, 0.09433024895285769], [135, 0.4402954805293283], [138, 0.5547284697978927], [144, 0.7652857103752206], [147, 0.8045429048235416], [150, 0.9331447889123536], [166, 0.9083081770991418], [169, 0.5486083097635432], [172, 0.594021409043046], [176, 0.29803204428617036], [179, 0.6255290106071374], [183, 0.9062204720991638], [187, 0.25591591253921864], [195, 0.627893900291424], [198, 0.6906029109094404], [202, 0.35636376280206417], [207, 0.9757564796139993], [216, 0.35607004012983967], [221, 0.6040415643515366], [225, 0.7488232724437635], [231, 0.6368898494859185], [234, 0.5110845019182115], [238, 0.37116597774046267], [247, 0.22748217089908573], [251, 0.805998427608663], [254, 0.23173631596470667], [264, 0.19175689045028455], [267, 0.15298854565753706], [276, 0.5586044487053198], [280, 0.5133560616929543], [287, 0.23664609090776278], [290, 0.46826034256235316], [296, 0.8755526037106054], [308, 0.6751339530532486], [315, 0.7162263142696316], [319, 0.29652719055298427], [324, 0.44478614247345616], [329, 0.02767132616083723], [335, 0.9850910812093614], [340, 0.8732422463766257], [343, 0.5799334528947521], [347, 0.4617683080635544], [356, 0.45855096447403676], [363, 0.31454849503865956], [370, 0.23166025243343524], [374, 0.6875508786426817], [378, 0.31693498832889744], [383, 0.5768973780541075], [385, 0.723892367667149], [392, 0.42372564000241364], [397, 0.2930607999709818], [405, 0.8419877790687116], [412, 0.356055241523914], [416, 0.814010032134231], [420, 0.007488205565631456], [425, 0.7931562431982624], [434, 0.954157423183999], [438, 0.40241743695007015], [443, 0.49687395657512334], [445, 0.3014258730442745], [456, 0.6626990737054786], [461, 0.16653401631344333], [466, 0.7495890265110241], [469, 0.6567296454080804], [479, 0.39571085419662744], [489, 0.6058225802300987], [492, 0.20558756429341563], [496, 0.804752410021165], [504, 0.5932590293790729], [507, 0.07832012104082742], [511, 0.0184356271123437], [514, 0.3763932717420686], [525, 0.48065937055791097], [530, 0.10962123056014506], [536, 0.20805348121933198], [539, 0.3788384156449759], [543, 0.979341740526004], [552, 0.24851894311155054], [557, 0.32309924777884214], [565, 0.8400798678401796], [568, 0.9607015985768218], [572, 0.9561824914145388], [585, 0.7200919244422491], [588, 0.5558987531211155], [592, 0.7111444885980085], [598, 0.30982850116103355], [601, 0.2397346210284481]], [[38, 0.603520932099422], [46, 0.0762506323997365], [55, 0.3895020523873157], [64, 0.3774000540845184], [73, 0.23786129696635538], [76, 0.06397026040024434], [91, 0.46988913479038774], [101, 0.29774207292067034], [105, 0.7553350135556048], [112, 0.008667484071393616], [114, 0.5581177493331327], [119, 0.928783519881658], [125, 0.08848841314129707], [132, 0.46735517313459585], [135, 0.1260308021231742], [138, 0.2213730211046392], [144, 0.36889343697425736], [147, 0.10286089729768033], [150, 0.29502606272089016], [166, 0.9032753818813676], [169, 0.35120871710418944], [172, 0.034553103188077916], [176, 0.9331594419574355], [179, 0.7761010727771397], [183, 0.7032093753887285], [187, 0.842220907531042], [195, 0.7679164629227986], [198, 0.7854420134779525], [202, 0.3890550948944199], [207, 0.05497971573457883], [216, 0.699347240333242], [221, 0.8064976132197964], [225, 0.07827542815389377], [231, 0.8864627626323892], [234, 0.6884719495222267], [238, 0.4460731766723919], [247, 0.46685959119707465], [251, 0.6274688724044505], [254, 0.47704076925583927], [264, 0.5003266927168084], [267, 0.0493680420069289], [276, 0.5961877642003286], [280, 0.02315228204035391], [287, 0.789709489557732], [290, 0.857801698219925], [296, 0.986191019845217], [308, 0.28588448093164864], [315, 0.25811670784794016], [319, 0.08171091550879261], [324, 0.09058421446563814], [329, 0.989225467521274], [335, 0.5330819293308688], [340, 0.37801674557217657], [343, 0.1909601666581524], [347, 0.09155486214150232], [356, 0.9653414857273553], [363, 0.5105232513239396], [370, 0.1569412479821508], [374, 0.5197053247230333], [378, 0.6022079090558656], [383, 0.3673918675622929], [385, 0.18852514793262654], [392, 0.2619917524911628], [397, 0.15612141106529442], [405, 0.41649548724658314], [412, 0.4583296490297408], [416, 0.4923381309697026], [420, 0.7006963800507172], [425, 0.9142920213196485], [434, 0.642733061750795], [438, 0.3386881949764107], [443, 0.13763953426555908], [445, 0.030906060874842156], [456, 0.9085789533860049], [461, 0.48964690344281636], [466, 0.8128647950067759], [469, 0.8128075655993304], [479, 0.6596808382378957], [489, 0.8874590133837322], [492, 0.8058382737281328], [496, 0.13196842623613136], [504, 0.10458029266690638], [507, 0.03337089129019444], [511, 0.17988278161434657], [514, 0.8714081949531116], [525, 0.6040266454814409], [530, 0.44794720375829244], [536, 0.7738269536236897], [539, 0.9241519508165542], [543, 0.2699325055235672], [552, 0.3183689112299497], [557, 0.8197654056781183], [565, 0.2988091874180716], [568, 0.470408023018947], [572, 0.8710772597697137], [585, 0.2701983545581935], [588, 0.2851079770173752], [592, 0.8031574029814366], [598, 0.5845960315336762], [601, 0.6167920310742061]], [[37, 0.513381576424309], [43, 0.7196252974902934], [54, 0.27152458216832853], [60, 0.9517817802988677], [71, 0.7012610207305694], [77, 0.9807058079093713], [80, 0.5853994338351054], [89, 0.25923597037414403], [95, 0.40453955884423454], [98, 0.7233399470036999], [106, 0.1329166207630713], [113, 0.7968998516981478], [127, 0.9781083560721823], [138, 0.9382776221768705], [142, 0.5463890956272981], [150, 0.007525934776732135], [159, 0.1573516356700635], [166, 0.4547596827198923], [177, 0.6177591388392978], [184, 0.9320078503175888], [187, 0.6423439045965761], [189, 0.7779544198033739], [197, 0.1373071527631161], [201, 0.5041130654355112], [204, 0.6392083454948945], [212, 0.31661098786369746], [216, 0.6145036202717641], [220, 0.45545015152780244], [225, 0.5907322078131989], [233, 0.1960679598009586], [241, 0.8218116249629631], [248, 0.06903378487202261], [252, 0.3843788284367947], [263, 0.8491551400337625], [270, 0.4043516537281038], [273, 0.5676297409375225], [277, 0.6091694547446456], [282, 0.973806291567238], [287, 0.5816717469870128], [293, 0.8523751480647667], [298, 0.5245575617903098], [302, 0.76909151274186], [307, 0.40638914568314044], [315, 0.19876974692321514], [318, 0.07205646858901127], [327, 0.13672622547294522], [334, 0.03133491470414873], [345, 0.39658702653530686], [352, 0.7412706147496134], [357, 0.7759801227659198], [361, 0.6184357176220328], [369, 0.7244427454635112], [380, 0.7388456175494494], [384, 0.9034878004117507], [387, 0.043907737150515436], [392, 0.6028143984730646], [399, 0.7917719162871802], [409, 0.881552810705541], [415, 0.6610696017457188], [426, 0.9415431525095521], [432, 0.34315324766170097], [435, 0.13315142929398438], [439, 0.20709278706178702], [449, 0.007907989183935094], [460, 0.5482012323181518], [466, 0.5770931649103702], [470, 0.712568956463001], [477, 0.23287230009546867], [481, 0.4170334087408497], [486, 0.1573756513358605], [492, 0.7184536629668724], [495, 0.224261706891709], [504, 0.7129364971898476], [517, 0.8488846583073799], [521, 0.5712011747062626], [530, 0.1932415004748217], [535, 0.08034917320423784], [539, 0.7834463191735928], [550, 0.43830879484326224], [554, 0.09854436673413458], [559, 0.14718573381567213], [562, 0.8889656029902756], [571, 0.16723352115676948], [575, 0.20758100991968553], [581, 0.295960451933183], [585, 0.4609993073816194], [590, 0.6466873188537672], [597, 0.2752990969138407], [602, 0.7096580147375906], [608, 0.17623647475444648], [613, 0.4032886556915962], [619, 0.16378243960649597], [631, 0.7137679097181779], [634, 0.7446590318965053], [639, 0.4193413455109938], [643, 0.8484369907411853], [649, 0.18308250365803003], [652, 0.3101096938589071], [656, 0.29121296726999224], [660, 0.3148352585114369]], [[50, 0.6422797038955337], [58, 0.6934207009221011], [61, 0.49640817594807274], [66, 0.7724288478172139], [75, 0.39600934739417526], [78, 0.4627477344382034], [85, 0.5078349795403009], [88, 0.9988360525390081], [100, 0.026690485422848798], [105, 0.3680321661937489], [110, 0.32299484974977777], [115, 0.5562527883665164], [125, 0.04049288412519525], [128, 0.6193364695002048], [133, 0.9210080736098937], [142, 0.7229171472534107], [149, 0.5854843122371021], [159, 0.757081240692507], [163, 0.40044288922191484], [168, 0.8571777767200383], [173, 0.40817403884935577], [178, 0.9296736979696516], [189, 0.5758837190053285], [199, 0.7724813401379371], [206, 0.5348802760263863], [217, 0.661786398032506], [221, 0.6764058091985736], [225, 0.4277899112484257], [232, 0.7592384634389471], [240, 0.9084338231062205], [249, 0.8889180265551503], [255, 0.5150905967731343], [259, 0.26532560890249324], [266, 0.8720295978297656], [270, 0.5219125895996651], [274, 0.06817657401098287], [279, 0.9211726073482962], [285, 0.28134914474280515], [292, 0.9966773891768785], [295, 0.17237526261080038], [297, 0.4294110943124677], [304, 0.7698193266691236], [316, 0.6020476537585204], [321, 0.3087112650492133], [324, 0.8544656843796182], [330, 0.984413479694586], [333, 0.7608912570377389], [339, 0.6230218432568632], [343, 0.03128879918304184], [351, 0.7864839878887987], [356, 0.43362327535793066], [361, 0.34633875318052953], [369, 0.3824050813418347], [372, 0.5998279984099412], [377, 0.5395407954605627], [384, 0.4058277215525202], [389, 0.33279814672823527], [396, 0.4331350363340575], [399, 0.3270907526113195], [405, 0.23779136688787872], [412, 0.5110142910127471], [415, 0.9080171931515583], [420, 0.9090684879887588], [424, 0.9262803655785424], [435, 0.07808216224986386], [443, 0.40020958703753307], [446, 0.3576986542943096], [452, 0.6620478949162486], [457, 0.2640896063996898], [461, 0.14195512419501688], [464, 0.755335186847766], [468, 0.2379075172530839], [471, 0.07456230436999944], [485, 0.39026385980981926], [489, 0.5334206937448264], [496, 0.7474824316722386], [504, 0.5780347241545671], [517, 0.23569914983131757], [521, 0.3052867400892182], [528, 0.18774685935019297], [532, 0.36185279363568945], [535, 0.3027767000168563], [541, 0.691005938287552], [546, 0.39123646976170234], [550, 0.08447491808751129], [558, 0.5976829086366219], [563, 0.11133670969954812], [566, 0.38060381864252524], [571, 0.4342609151753515], [576, 0.9449167106926449], [582, 0.637668352901396], [588, 0.9355492263865708], [595, 0.8333817180813899], [599, 0.10710285476346681], [602, 0.5560599527094183], [611, 0.7510470414101504], [614, 0.19949914188533013], [618, 0.5617190695639953], [624, 0.511777037362084], [629, 0.7440889421311377]], [[53, 0.5449624260433773], [63, 0.3765899795869678], [70, 0.9894650921091898], [73, 0.21208951658098563], [77, 0.7988046750801162], [87, 0.7362408203124704], [90, 0.7880420117534773], [96, 0.6267066545352198], [110, 0.06973596538653448], [121, 0.4499489016308217], [124, 0.8692652745798012], [133, 0.4335345004696497], [141, 0.7970260857666713], [145, 0.36931068328741345], [157, 0.6656417505025083], [163, 0.4760550429168492], [170, 0.845879980813278], [178, 0.4163075030886403], [187, 0.394140696366314], [194, 0.4990235338336304], [197, 0.3186398977144621], [201, 0.9268107880336539], [211, 0.9285920800333733], [214, 0.9371175521971177], [220, 0.9504154950059747], [234, 0.38836663068375155], [245, 0.7407235912999218], [248, 0.4429384066471006], [257, 0.47503447260579623], [265, 0.31296255810123486], [269, 0.2569574266281244], [281, 0.1343001849015718], [288, 0.904361189951702], [293, 0.769661648060284], [299, 0.06778685858270572], [303, 0.37879914474455345], [314, 0.3671181123078415], [317, 0.6382772496205779], [322, 0.21326068941873488], [325, 0.22880616662619158], [329, 0.23236038914936785], [337, 0.7009211752966925], [343, 0.6729974598215379], [352, 0.7468788838550607], [355, 0.47342424222242363], [357, 0.5831257014475185], [370, 0.8235894169982207], [382, 0.114833787125735], [391, 0.22653270705518247], [395, 0.9502530663570846], [402, 0.6600004432522415], [412, 0.26400979822619697], [423, 0.9797193378686831], [430, 0.9073558289720868], [441, 0.6843969856808978], [446, 0.30827463822792434], [450, 0.9395315829849773], [456, 0.4938581290689249], [459, 0.7187865698692597], [468, 0.7529256135103046], [474, 0.051473127322253065], [484, 0.0020468019208339516], [488, 0.3663418144648368], [494, 0.8940924356980108], [500, 0.9571762829809473], [506, 0.5208577422252744], [512, 0.17510654793232383], [518, 0.31643147558924023], [524, 0.6776197197956842], [528, 0.5454542459910157], [536, 0.006961026610380561], [543, 0.009102923719640943], [547, 0.6953258152041047], [551, 0.5569946048070685], [557, 0.2658730726667128], [566, 0.8613494947193191], [570, 0.1367043545813934], [575, 0.6962549432190652], [581, 0.6914560236469384], [585, 0.19544187852677808], [590, 0.029484497685531297], [597, 0.42438554903360093], [604, 0.06279993607190881], [607, 0.7686180212441796], [613, 0.02457933056854411], [617, 0.7570114120642094], [625, 0.1500356730479605], [630, 0.5316503764867768], [633, 0.5543794565666095], [637, 0.5641157196899806], [643, 0.6289393340677137], [647, 0.22098575481071536], [660, 0.197185396514996], [672, 0.11303499480480139], [677, 0.896460292565938], [682, 0.0016286011921740062], [691, 0.7675419533115697], [695, 0.26034016975070273], [698, 0.9159669970884728], [702, 0.20315086228728496]]]]}, {"data": {"question": "Who is the original artist of sound of silence?", "answer": "There are several songs with the title \"Sound of Silence\". Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which was recorded in March 1964 and originally was released as \"The Sounds of Silence\". Another \"Sound of Silence\" is a song performed by Australian recording artist Dami Im, and is best known as Australia's entry at the Eurovision Song Contest 2016.", "qa_pairs": [{"context": "Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on June 15, 1965. This new version was released as a single in September 1965, and opens the album.", "question": "Who is the original artist of sound of silence, the song, released in 1964?", "short_answers": ["Simon & Garfunkel", "Paul Simon and Art Garfunkel", "Art Garfunkel", "Paul Simon"], "wikipage": "Sounds of Silence"}, {"context": "Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on June 15, 1965. This new version was released as a single in September 1965, and opens the album.", "question": "Who is the original artist of sound of silence, the album?", "short_answers": ["Simon & Garfunkel", "Paul Simon and Art Garfunkel", "Art Garfunkel", "Paul Simon"], "wikipage": "Sounds of Silence"}, {"context": "\"Sound of Silence\" is a song performed by Australian recording artist Dami Im. Written by Anthony Egizii and David Musumeci of DNA Songs, it is best known as Australia's entry at the Eurovision Song Contest 2016 which was held in Stockholm, Sweden, where it finished 2nd, receiving a total of 511 points. The song also won the Marcel Bezen\u00e7on Award in the composer category. The song was leaked on 10 March 2016, one day before its initial release date. It is Dami Im's fourth Australian top 20 hit and worldwide, it reached the top 40 in more than six countries after the Eurovision Song Contest 2016 Final.", "question": "Who is the original artist of sound of silence, the song, released in 2016?", "short_answers": ["Dami Im"], "wikipage": "Sound of Silence (Dami Im song)"}], "docs": ["Document [1](Title:The Sound of Silence): The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on their debut album, \"Wednesday Morning, 3 A.M.\". Released in October 1964, the album was a commercial failure and led to the duo breaking apart, with Paul Simon\n", "Document [2](Title:Sounds of Silence): Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on\n", "Document [3](Title:The Sound of Silence): downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "Document [4](Title:Immortalized (Disturbed album)): 1964 song \"The Sound of Silence\" by Simon & Garfunkel, which marked Disturbed's highest ranked single on the \"Billboard\" Hot 100 at number 42 and has since become Disturbed's biggest song since \"Down with the Sickness\". In 2011, following the tour of their fifth studio album, \"Asylum\", Disturbed announced that they would go on a hiatus. During the hiatus, the band released a compilation album of previously recorded B-sides, \"The Lost Children\" (2011), and a box set of their five studio albums, \"The Collection\" (2012). In January 2014, band members David Draiman (vocals), Dan Donegan (guitar), Mike Wengren (drums) met\n", "Document [5](Title:Sounds of Silence): Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n"]}, "doc_cache": ["Document [1](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n", "Document [2](Title:Live at Benaroya Hall with the Seattle Symphony)proud of, believing it truly represents their live act. Overall, critical reception of the album was positive. Nick Vissey of \"The Seattle Times\" wrote that \"standout\" tracks included \"Dreams\" and \"Pride and Joy\", which highlighted Carlile's \"unique folk-rock style\" and \"enthralling, emotional and fun\" voice. The Hanseroth brothers' cover of Paul Simon's \"The Sound of Silence\" was deemed \"spot-on\" by Allmusic's Andrew Leahey and \"breathtaking\" by Gene Stout of the \"Seattle Post-Intelligencer\". \"The Source Weekly\" contributor Mike Bookey complimented the album for capturing Carlile's live act and recommended this album for first-time listeners of her music. \"Glide\" magazine's reviewer complimented\n", "Document [3](Title:Sounds of Silence)Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n", "Document [4](Title:The Sound of Silence)downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "Document [5](Title:Paul Simon in Concert: Live Rhymin')UK. Further, two of the live performances were released as a single as part of the promotion for the album: the breakthrough Simon & Garfunkel \"The Sound of Silence\" as the A-side, along with Simon's debut single \"Mother and Child Reunion\" on the B-side. All tracks composed by Paul Simon, except where indicated. Paul Simon in Concert: Live Rhymin' Paul Simon in Concert: Live Rhymin' is a live album by Paul Simon, released in March 1974 by Columbia Records. It was recorded in the wake of the release of \"There Goes Rhymin' Simon\" \u2013 which produced a number of hit\n", "Document [6](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n"], "log": ["gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Who wrote the song 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [1](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n\nDocument [2](Title:Live at Benaroya Hall with the Seattle Symphony)proud of, believing it truly represents their live act. Overall, critical reception of the album was positive. Nick Vissey of \"The Seattle Times\" wrote that \"standout\" tracks included \"Dreams\" and \"Pride and Joy\", which highlighted Carlile's \"unique folk-rock style\" and \"enthralling, emotional and fun\" voice. The Hanseroth brothers' cover of Paul Simon's \"The Sound of Silence\" was deemed \"spot-on\" by Allmusic's Andrew Leahey and \"breathtaking\" by Gene Stout of the \"Seattle Post-Intelligencer\". \"The Source Weekly\" contributor Mike Bookey complimented the album for capturing Carlile's live act and recommended this album for first-time listeners of her music. \"Glide\" magazine's reviewer complimented\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Simon & Garfunkel[1]. ', 'The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers[2]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers[2]. ', 'ans': 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel[1]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: \"Who recorded the original version of 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [3](Title:Sounds of Silence)Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n\nDocument [4](Title:The Sound of Silence)downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Simon & Garfunkel[3]. ', '\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel[4]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': '\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel[4]. ', 'ans': 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel[3]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: \"Who composed the song 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [5](Title:Paul Simon in Concert: Live Rhymin')UK. Further, two of the live performances were released as a single as part of the promotion for the album: the breakthrough Simon & Garfunkel \"The Sound of Silence\" as the A-side, along with Simon's debut single \"Mother and Child Reunion\" on the B-side. All tracks composed by Paul Simon, except where indicated. Paul Simon in Concert: Live Rhymin' Paul Simon in Concert: Live Rhymin' is a live album by Paul Simon, released in March 1974 by Columbia Records. It was recorded in the wake of the release of \"There Goes Rhymin' Simon\" \u2013 which produced a number of hit\n\nDocument [6](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel[5]. ', 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel, with Paul Simon specifically writing the song[6]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel[5]. '}"], "output": ["The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers [2].", "\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel [4].", "The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel [5]."], "result": {"length": 50}, "token_used": 4669, "doc_level": [[0.8567827251109097, 0.054664323375548274, 0.46057446610408104, 0.6097984171115053, 0.9502304302443713, 0.129036775905774], [0.2981553889852011, 0.37361421934641614, 0.8011800783552444, 0.7362696686223592, 0.8936642973766293, 0.27506597275384437], [0.7164769798977924, 0.6185781146925192, 0.6126975917883378, 0.4773792611054096, 0.40730812972631014, 0.14131859559900184]], "span_level": [[[[40, 0.7681294423101986], [117, 0.12539611062153633], [269, 0.1812376754362931], [366, 0.6756486027645137], [418, 0.008627386193367226], [504, 0.8095821619308646]], [[67, 0.5113659608324188], [122, 0.050920739615043065], [177, 0.37493604377783263], [377, 0.8771259814975895], [565, 0.3151337108264409], [731, 0.11020622289044668]], [[37, 0.042786309412687795], [57, 0.02282435115060466], [284, 0.28643454965628234], [399, 0.5465521783962286], [567, 0.3610175450258071]], [[40, 0.9661758136948437], [95, 0.9580554182775121], [191, 0.064585752545268], [346, 0.5256548100811523], [431, 0.17145880160760307]], [[55, 0.12835290041490688], [58, 0.31822335200632035], [309, 0.7485066444246173], [368, 0.04701415586484314], [515, 0.8795424013398948]], [[40, 0.29015652611589926], [117, 0.7828885219938004], [269, 0.5296553255279034], [366, 0.7337078792285606], [418, 0.4742902991252723], [504, 0.013367543131954429]]], [[[40, 0.8542689341321462], [117, 0.06472050476192825], [269, 0.03228351667331575], [366, 0.36884822170236686], [418, 0.8512291151093191], [504, 0.3875923195672669]], [[67, 0.6691845910527903], [122, 0.2113431394428288], [177, 0.9564582036280341], [377, 0.9936133086370688], [565, 0.5605392344202653], [731, 0.9459072130699254]], [[37, 0.9670972272651837], [57, 0.5329611856099494], [284, 0.45434707903470006], [399, 0.07948614645292662], [567, 0.15368079281705493]], [[40, 0.7899463298554238], [95, 0.7980724953414075], [191, 0.8119536506563895], [346, 0.19096097234177056], [431, 0.5898819006629646]], [[55, 0.491814913530217], [58, 0.6756438574225181], [309, 0.6487175118485787], [368, 0.9748902149264159], [515, 0.2704056330241854]], [[40, 0.6010134450823624], [117, 0.4418386006098185], [269, 0.6848638927644026], [366, 0.06805763117331531], [418, 0.26491571112624057], [504, 0.34119306073493927]]], [[[40, 0.8110803508609925], [117, 0.8542440349387599], [269, 0.5595809823194299], [366, 0.6584133157791371], [418, 0.42118306154514007], [504, 0.5821060684606612]], [[67, 0.719542272342304], [122, 0.858851210740909], [177, 0.5856103163397098], [377, 0.3279682387174606], [565, 0.18723590082444175], [731, 0.5340128817408214]], [[37, 0.018378128676158734], [57, 0.9492933770079399], [284, 0.5096428633421242], [399, 0.6108366486601625], [567, 0.1530182831550987]], [[40, 0.5076920613009369], [95, 0.2096825929171856], [191, 0.7100441077756393], [346, 0.2648455898484564], [431, 0.8763368288649335]], [[55, 0.6239206469473701], [58, 0.6916514177455892], [309, 0.10918969881231355], [368, 0.22688107777037947], [515, 0.18222589934755773]], [[40, 0.8899701029974798], [117, 0.8637501705295068], [269, 0.9281316157742715], [366, 0.49150581198655263], [418, 0.8083819346925372], [504, 0.1370956775652542]]]], "word_level": [[[[40, 0.9605412385330322], [50, 0.18211029022678038], [53, 0.46197340337128523], [62, 0.8514623812183474], [70, 0.8881739745783069], [79, 0.30383146896422575], [83, 0.7571557717529283], [91, 0.9215257366265682], [95, 0.11617371511809083], [102, 0.5247025069285346], [107, 0.3559602977428513], [111, 0.8114831912650965], [118, 0.016239430249439413], [124, 0.48342791830559817], [134, 0.13475242715650082], [141, 0.06535730633766124], [144, 0.18839253353705665], [148, 0.6600727744395591], [152, 0.3220369146028077], [156, 0.7647090737890311], [160, 0.6876408933682095], [168, 0.5678902367891606], [173, 0.6037522617426855], [175, 0.2182360968442838], [182, 0.5284087318497207], [192, 0.597713278621435], [198, 0.9558549662886522], [200, 0.4381647787249878], [212, 0.5293378462992459], [215, 0.5331695042785122], [220, 0.2750618516215776], [226, 0.7054789485657814], [229, 0.6225825831961702], [238, 0.8975866572552488], [242, 0.7641915341944463], [246, 0.5450490327746135], [250, 0.896763409211327], [257, 0.213054129448756], [260, 0.667587863746069], [270, 0.6373021763524115], [274, 0.2780378797144065], [281, 0.3734096849949671], [288, 0.49562839665170966], [292, 0.21584792429524058], [298, 0.6524179484556836], [305, 0.6574816826181559], [314, 0.9194656623289584], [319, 0.594105795142457], [328, 0.18567840438358074], [336, 0.7074095450966162], [343, 0.844959070975232], [351, 0.9766694470097628], [356, 0.11406399949468116], [360, 0.3032478892954886], [367, 0.5733373316818415], [372, 0.17678433727198206], [380, 0.03956964408199637], [385, 0.14078951322823285], [389, 0.6914753312133811], [394, 0.9300676750399136], [404, 0.8457465934902453], [407, 0.4768645463461696], [411, 0.6212189384868129], [416, 0.47644551243288635], [419, 0.6287030465102317], [427, 0.6390892371837799], [442, 0.39655972755260016], [445, 0.8424572459303744], [449, 0.9212255977129526], [454, 0.3786964583395893], [458, 0.30148178485846167], [467, 0.15432637051399467], [473, 0.6661763734903027], [480, 0.6014527967581909], [486, 0.4287098459493146], [490, 0.0015093473522774792], [505, 0.9057086297382925], [511, 0.7848634058398484], [518, 0.00838119481094346], [532, 0.9020393679217024], [535, 0.28478690343067814], [547, 0.7361323528897495], [556, 0.2107945294300878], [559, 0.832506451625992], [565, 0.05046214850223707], [569, 0.9739063304944957], [575, 0.7635916938793046], [578, 0.1724092507497892], [586, 0.7135465919973957], [591, 0.3124908012166563], [593, 0.020435709951401315], [597, 0.5034254995290416], [600, 0.5557184666767141], [606, 0.6254173249035448], [612, 0.6792884009606209], [618, 0.2368562884407095], [625, 0.17982137109468177], [629, 0.5565610663936242], [639, 0.5629250845363122], [646, 0.2988619231883396]], [[67, 0.7910301666793349], [73, 0.5828173040914035], [77, 0.5788630316530053], [87, 0.8174110204260391], [90, 0.3436803282909502], [96, 0.5338258589528199], [107, 0.819228048246379], [113, 0.9406141037396134], [118, 0.2883209489751204], [123, 0.10905768392063098], [132, 0.22474635195828407], [141, 0.3001923077294254], [151, 0.16704265810603358], [154, 0.22595833122660391], [158, 0.295876677149536], [164, 0.9556763772199932], [168, 0.5172947961277051], [178, 0.4819115725117782], [183, 0.6668203747401273], [190, 0.19166864261253913], [193, 0.15987236912271408], [198, 0.12885449615863098], [206, 0.9085684950333187], [213, 0.4208488731661424], [219, 0.6239560568416535], [224, 0.3997041390158017], [235, 0.7678612706644352], [242, 0.5855043320097695], [251, 0.9515547884986183], [260, 0.7257598421388842], [264, 0.11846465317411037], [271, 0.6141767866912936], [275, 0.8349010986352566], [281, 0.29651052159571667], [287, 0.4597744575617866], [299, 0.7373314518791655], [309, 0.2622008372539516], [317, 0.1504487937488398], [327, 0.052192422356992396], [334, 0.8796708844554361], [338, 0.38814745323583], [352, 0.47298730664084954], [362, 0.09980488721659309], [366, 0.5439061984705799], [371, 0.41355870423765273], [378, 0.6488231269614887], [382, 0.6999486344752295], [392, 0.2760171955275086], [402, 0.8512497011841459], [408, 0.7625237822894922], [411, 0.9875244500528946], [416, 0.5317066145751385], [424, 0.8750858130886776], [429, 0.25178902097489564], [435, 0.8050722862824983], [438, 0.9264675808461766], [447, 0.9821943780834063], [451, 0.09386482722919065], [458, 0.510145236378245], [468, 0.12665088551489345], [471, 0.28452757816831764], [482, 0.8861424709357505], [489, 0.6962254682695743], [496, 0.7153338353131422], [500, 0.6847134624277891], [515, 0.33875827548474735], [518, 0.6232745923900574], [523, 0.00548181507509149], [529, 0.7383013123751838], [532, 0.34497758761720787], [536, 0.0504738093671363], [545, 0.8093244296828489], [566, 0.6883814297208313], [571, 0.4040019784033618], [578, 0.5499571324350097], [586, 0.1963431049937291], [598, 0.8759314118158871], [603, 0.14273888895445552], [610, 0.8026488721682715], [623, 0.37509103467380966], [627, 0.41136257561182865], [633, 0.924691965506206], [637, 0.3593135216895569], [647, 0.3494180576235135], [657, 0.15684870701962939], [662, 0.5363543836015993], [666, 0.6709684788287471], [670, 0.8857130098438557], [682, 0.7991505627786832], [687, 0.573911464432348], [693, 0.18897229448088215], [697, 0.5315569893565631], [708, 0.5167899116278792], [718, 0.9298917351552454], [721, 0.7721478868437628], [725, 0.8737601696081212], [732, 0.6335984168082618], [740, 0.156463113808762], [751, 0.5315651393570353], [760, 0.14940858180382088]], [[37, 0.5473416468869303], [46, 0.9198465840747733], [58, 0.8399769097076705], [63, 0.47083068076091894], [69, 0.7175407978863261], [72, 0.3428675001334993], [81, 0.699590696133906], [91, 0.19512205692796047], [101, 0.6710554418759244], [111, 0.6245834834532189], [116, 0.5062594316573675], [122, 0.677142153906883], [125, 0.8608142472949045], [134, 0.10253269366675766], [143, 0.6188694672722853], [148, 0.4257171081385801], [157, 0.22570900921732795], [160, 0.9317800466740576], [171, 0.17091416030212359], [179, 0.20793976793312607], [182, 0.35709482969283346], [185, 0.14436560576805535], [189, 0.13018217113975428], [197, 0.779686124921897], [204, 0.4557996832810477], [209, 0.4343245823343663], [214, 0.39135371406492725], [221, 0.8223504732280361], [224, 0.9026689440474712], [233, 0.9999723638434582], [241, 0.8411749835652765], [247, 0.8924764827199527], [256, 0.1768370898769478], [260, 0.635363699272674], [267, 0.16031170546606277], [270, 0.6162658621346826], [275, 0.34969508638890134], [279, 0.13960252003876605], [285, 0.07888149856681503], [292, 0.04276062925959845], [295, 0.5575547661857926], [303, 0.6231652431404555], [310, 0.9068274462249533], [313, 0.7367754234006907], [321, 0.5375368264775117], [324, 0.3009237329396848], [328, 0.062482412690374134], [335, 0.45228579383122247], [342, 0.7073229240545774], [348, 0.39570367041146715], [351, 0.3668825596748191], [357, 0.3368359440772296], [359, 0.6003006175236284], [370, 0.09448586781305313], [379, 0.16375945203755782], [382, 0.8184858233336592], [390, 0.7932732664220652], [394, 0.6149599405647693], [400, 0.6620313127160088], [404, 0.6033955840919228], [412, 0.019130548072651243], [418, 0.7860380477563449], [421, 0.5322939986484965], [423, 0.5569504672778084], [430, 0.14092412798720755], [443, 0.8331361816964848], [446, 0.6214486172972558], [450, 0.6064458922645708], [456, 0.2778222153388009], [459, 0.2171492966191474], [463, 0.8907740205667246], [469, 0.835568512437555], [475, 0.9171495117951879], [481, 0.4852568030023173], [486, 0.6306989115121965], [491, 0.5880025316922137], [497, 0.6958261533099146], [500, 0.6805757785978933], [510, 0.38341461036079816], [516, 0.7516372895807764], [527, 0.8371585529564474], [531, 0.671134400891974], [540, 0.6838291898585097], [543, 0.4904029268321288], [548, 0.6938093471181668], [555, 0.6672875761382534], [558, 0.11829677038117481], [568, 0.23812036859743524], [572, 0.10953744802041421], [577, 0.8390410859764094], [581, 0.8790268666619699], [589, 0.07279638189211346], [594, 0.3597021157027117], [603, 0.5961460806683614], [606, 0.024878525552953112], [609, 0.21767344995993543], [618, 0.10773438942212421], [626, 0.747527975999817], [629, 0.022802851775995392], [633, 0.4091772526404194]], [[40, 0.9401963027067148], [53, 0.9154527320220854], [61, 0.8569996552770855], [65, 0.20442932262906421], [69, 0.13274032124105728], [75, 0.6950676932881548], [81, 0.3443167026980536], [87, 0.7406920215155557], [92, 0.2756459289843035], [96, 0.33375330178817564], [100, 0.9999776246754618], [110, 0.12510901127980356], [118, 0.6083822017335674], [122, 0.4004968648095719], [127, 0.5395696219791905], [130, 0.1881752208256413], [134, 0.4120454769152827], [142, 0.41379395586650847], [147, 0.19540695350638038], [155, 0.7882483254760861], [158, 0.7444574006475361], [163, 0.05905829592193246], [174, 0.361986002141347], [177, 0.5090400185465178], [186, 0.9661223391833355], [192, 0.5882189262096941], [198, 0.2798115538926724], [211, 0.39409296319829923], [215, 0.9116642182058046], [221, 0.6617136836992278], [224, 0.385873654797675], [232, 0.42035743932890957], [237, 0.6009549488894071], [243, 0.48560167522890585], [246, 0.37991280299744146], [256, 0.5127160829194604], [267, 0.3548191125451735], [272, 0.6454887326632138], [279, 0.26194279854174884], [282, 0.5853488766287414], [292, 0.12007498633963876], [295, 0.32966325632955384], [297, 0.6857495217791901], [302, 0.34797793603451077], [305, 0.618360673602469], [309, 0.4175555532252542], [318, 0.4925807960410661], [324, 0.9431792795032607], [328, 0.3687808003109294], [334, 0.9419066794691522], [336, 0.42315407546279593], [347, 0.11007087231440105], [351, 0.856511341975634], [356, 0.9584162887455749], [360, 0.5399662507169477], [368, 0.9666946922905914], [371, 0.017680851868121072], [376, 0.2888767459698799], [382, 0.5396417507021747], [387, 0.8918578417240931], [389, 0.27878192484343634], [396, 0.48767988317120115], [399, 0.7665422972633305], [407, 0.4669208817358491], [414, 0.4654201848694455], [417, 0.053848394393243626], [422, 0.4671061478554861], [426, 0.08268469027876046], [432, 0.6064589045331252], [434, 0.379530142593958], [441, 0.7027683891996319], [450, 0.43506948690835634], [454, 0.19611675819469754], [457, 0.7073624135744019], [461, 0.17508401288347142], [465, 0.33715691102100764], [473, 0.5814652674499443], [475, 0.21457563601114282], [482, 0.6835139262585697], [487, 0.6123135002603773], [492, 0.4666166818608569], [501, 0.15985935151306108], [510, 0.4544848249686918], [514, 0.8644697216196301], [518, 0.5858595832365663], [523, 0.9411041763538076], [527, 0.46209921591985637], [536, 0.8310933493148706], [539, 0.7661912750016969], [545, 0.9221242764040725], [550, 0.9556166071620322], [553, 0.5898327318623012], [562, 0.7486929371152691], [570, 0.4198879201594182], [573, 0.9878137110983661], [577, 0.8694050225870468], [582, 0.7345086832838233], [587, 0.07812579182177926], [591, 0.37266908380365316], [601, 0.06915245726919417]], [[55, 0.007538735117148532], [59, 0.47706456244514317], [68, 0.4432275023911466], [72, 0.05089198669364514], [75, 0.35230871043576373], [79, 0.15987263858563183], [84, 0.5650785919616889], [97, 0.6635616405529976], [102, 0.97286453776442], [111, 0.39492403348597616], [114, 0.11262841399195389], [116, 0.4502905599116007], [123, 0.6118436064682393], [126, 0.19586648442588517], [131, 0.4528947187515795], [134, 0.06336583113215932], [138, 0.4049021292320646], [148, 0.41852420330274454], [152, 0.3256952869317644], [156, 0.9325653361130937], [163, 0.9531469663883744], [167, 0.665220224928726], [180, 0.026622250904397515], [186, 0.5635309117230937], [188, 0.23223831837317943], [198, 0.8182089160183806], [203, 0.3934966278041334], [209, 0.38852929899101574], [212, 0.08425495156436569], [221, 0.9791231194218332], [224, 0.0068715788203177475], [228, 0.4233146885999365], [236, 0.7575801369219444], [242, 0.038526498838275525], [247, 0.313155596858233], [255, 0.031032417663927836], [261, 0.49034837992763713], [268, 0.15450805389729083], [276, 0.9063450117660965], [280, 0.44009863465304444], [286, 0.5152508970914618], [295, 0.7200633336790611], [298, 0.3218199117974092], [302, 0.8718719431667709], [310, 0.51612001737524], [314, 0.6248237531726877], [321, 0.19932383986574087], [330, 0.9974527070030615], [333, 0.23375380200632934], [338, 0.6804718837238033], [345, 0.3405330655921949], [352, 0.25119594284625213], [358, 0.49611000398481875], [369, 0.2343273736930337], [374, 0.8889785212880931], [380, 0.8632456225071109], [383, 0.24172531003072506], [392, 0.05146965314832175], [397, 0.8017028233622493], [405, 0.17773336920393235], [410, 0.13659925695374397], [416, 0.006236365854376591], [419, 0.4368471859679611], [428, 0.7323631301424366], [433, 0.5593610349888041], [441, 0.1408868637743319], [444, 0.9783093897951937], [446, 0.3513605569940006], [451, 0.9230139835960286], [457, 0.005511076348878596], [460, 0.4302843003101212], [465, 0.5698986630841959], [472, 0.7628370830250785], [481, 0.021974738441010166], [484, 0.6384374304219848], [490, 0.6518161156435068], [495, 0.6945374450863386], [498, 0.4480394467939247], [507, 0.5704296663261712], [516, 0.7397896966571698], [519, 0.6105997132733016], [523, 0.44661522458116965], [532, 0.2915108722239006], [535, 0.005804380065666415], [539, 0.7540144264801911], [544, 0.6283706696054371], [547, 0.6708396095867315], [551, 0.8323307903859924], [559, 0.9769735282438531], [562, 0.1011401550509925], [569, 0.7204914573394465], [574, 0.9304036806323365], [582, 0.5450761866482776], [589, 0.044387492306080745], [591, 0.8837529085320627], [597, 0.08082490051734481], [606, 0.3160376519326964], [608, 0.41993823561267396], [615, 0.5493911405723058], [618, 0.11191977019583066]], [[40, 0.15465263971594911], [50, 0.8276002943776449], [53, 0.5989023701418245], [62, 0.5200962525904713], [70, 0.11286095555529851], [79, 0.053246374033044], [83, 0.11217406862709534], [91, 0.06569128938814606], [95, 0.9305942468265554], [102, 0.7842577276500082], [107, 0.33317591808821523], [111, 0.6930292348493342], [118, 0.028824759735432526], [124, 0.6084070778451751], [134, 0.44781429273906526], [141, 0.5249298376456489], [144, 0.9141801317749775], [148, 0.25738897587459475], [152, 0.6051593679539709], [156, 0.493899788043362], [160, 0.36517000984772563], [168, 0.5845664083866664], [173, 0.7500207538539965], [175, 0.4160800125921108], [182, 0.6994382445065684], [192, 0.6010115381019006], [198, 0.14479774536703915], [200, 0.09646301599243512], [212, 0.9691734589876208], [215, 0.12224289401769839], [220, 0.9801323818050047], [226, 0.5493423833761154], [229, 0.36456654893523466], [238, 0.6701895571928304], [242, 0.6737419882236179], [246, 0.9209337068815381], [250, 0.43510452898369345], [257, 0.9449079742605331], [260, 0.2879453082576502], [270, 0.24989978925229572], [274, 0.6629434300757326], [281, 0.48279295001990097], [288, 0.6365353618220866], [292, 0.4909690926841205], [298, 0.35027267160329856], [305, 0.0751663768287244], [314, 0.19061859429676264], [319, 0.4040294944706423], [328, 0.05147395385206632], [336, 0.5081667483785475], [343, 0.7613945824935878], [351, 0.3987661497300964], [356, 0.5611170988941767], [360, 0.7090155842223429], [367, 0.4820144879295295], [372, 0.035632958822508165], [380, 0.03775756763638294], [385, 0.9320701071022266], [389, 0.688047300092107], [394, 0.5045210149997502], [404, 0.5684377391199208], [407, 0.028460703196245274], [411, 0.4343245101692782], [416, 0.35811774672755636], [419, 0.7696885634409204], [427, 0.20015285493259993], [442, 0.09050428253973952], [445, 0.1604493471860432], [449, 0.9074488272011187], [454, 0.7637357178368924], [458, 0.5990546496010695], [467, 0.17659122396180849], [473, 0.5436636742106011], [480, 0.07557988868979593], [486, 0.4046814545287021], [490, 0.11396315290986658], [505, 0.2594935413184333], [511, 0.15620759070248436], [518, 0.29416198005454774], [532, 0.5378646338166136], [535, 0.2150510964333826], [547, 0.5223601803281631], [556, 0.23865728356578297], [559, 0.7475067668977392], [565, 0.6654923287792893], [569, 0.031631757522018855], [575, 0.0766968543487857], [578, 0.8222146377097642], [586, 0.41977582202778696], [591, 0.7442859877726449], [593, 0.029922708674847365], [597, 0.9807746274522833], [600, 0.25088077545916254], [606, 0.15049728862272882], [612, 0.138034621994498], [618, 0.30626249416520057], [625, 0.2359332587758003], [629, 0.6485725187589244], [639, 0.1443879414318614], [646, 0.5968773876541607]]], [[[40, 0.25446610348375787], [50, 0.6726782163636316], [53, 0.6777009741729352], [62, 0.5560729927203558], [70, 0.9926375475494202], [79, 0.3843660170614027], [83, 0.5166321564575784], [91, 0.011573090685839338], [95, 0.18398175206865786], [102, 0.48131608214527166], [107, 0.19520944850110533], [111, 0.3045877516136145], [118, 0.949415229979485], [124, 0.2823140253322305], [134, 0.3756343627417513], [141, 0.9848694940720513], [144, 0.9947970215376665], [148, 0.2824346772427464], [152, 0.7186267556120499], [156, 0.9438532658938501], [160, 0.9572828582559778], [168, 0.08978256480483104], [173, 0.0819863476278413], [175, 0.3344912070813042], [182, 0.4893797030491317], [192, 0.6180102030720818], [198, 0.8639236827022585], [200, 0.21189889080770563], [212, 0.1908690920719166], [215, 0.42485255353888507], [220, 0.13636924920803362], [226, 0.678038837388657], [229, 0.7427329934255535], [238, 0.6382901296746666], [242, 0.973527981344339], [246, 0.5775892206126588], [250, 0.8409564764989682], [257, 0.7526912687719403], [260, 0.24068688465422616], [270, 0.6963848852530731], [274, 0.6913157083195889], [281, 0.4626524336061675], [288, 0.9328217245177592], [292, 0.6573917192404184], [298, 0.6774422127160985], [305, 0.0123737141128335], [314, 0.48000332927915046], [319, 0.3549794071382155], [328, 0.19271879593328023], [336, 0.7618064658117225], [343, 0.5356474595385792], [351, 0.4616632667524837], [356, 0.6710479148564595], [360, 0.12678351719639447], [367, 0.9804391079369325], [372, 0.9113349620807667], [380, 0.49313991251688627], [385, 0.6614671738173012], [389, 0.22007777721672972], [394, 0.8159914204970277], [404, 0.3038135837030488], [407, 0.03761518149890708], [411, 0.9876027556839924], [416, 0.054233342555295994], [419, 0.7352418910242043], [427, 0.3286269665771887], [442, 0.8431321359745975], [445, 0.8314708675188835], [449, 0.42546244284691137], [454, 0.44868133564687607], [458, 0.6689109337740411], [467, 0.14441932351629805], [473, 0.11526729447422535], [480, 0.24261745004059931], [486, 0.948228214080521], [490, 0.188614805420382], [505, 0.48567804805787296], [511, 0.38351805676994066], [518, 0.42188702063128347], [532, 0.7072976398136354], [535, 0.21752980212238338], [547, 0.03215065509658488], [556, 0.5921417179150742], [559, 0.2471288556062523], [565, 0.2755387601066205], [569, 0.4285930429116339], [575, 0.5267311070755851], [578, 0.04735947759820158], [586, 0.9134983440039472], [591, 0.9733375829715871], [593, 0.8405057756844512], [597, 0.16818116376699255], [600, 0.1491165074652463], [606, 0.264854335996626], [612, 0.25140740641639714], [618, 0.7234734559366994], [625, 0.15196278555010145], [629, 0.7498676986096013], [639, 0.8947505686152156], [646, 0.9702555148845312]], [[67, 0.8379237193289492], [73, 0.7508085059885482], [77, 0.04477391085185056], [87, 0.2282735732608313], [90, 0.2183875543989645], [96, 0.289089156924083], [107, 0.7974409975319744], [113, 0.6998070448194156], [118, 0.6185297019970959], [123, 0.9928807168781009], [132, 0.8350604199547895], [141, 0.6036983439236547], [151, 0.1637574002402553], [154, 0.9920713528404963], [158, 0.07704270499527], [164, 0.682930015863718], [168, 0.45962912897962716], [178, 0.9403763139064625], [183, 0.5177280117198294], [190, 0.5580517871052273], [193, 0.25100753396539066], [198, 0.8225916715291338], [206, 0.44849218802291835], [213, 0.04811841596578359], [219, 0.2083467570148807], [224, 0.14096488084232994], [235, 0.6463098579451981], [242, 0.9941890934347782], [251, 0.15931101837379125], [260, 0.3001364595789593], [264, 0.3668056892875412], [271, 0.867401241036848], [275, 0.7473099348145247], [281, 0.4225786435460156], [287, 0.3637839799229824], [299, 0.7192445459814863], [309, 0.8524407869019279], [317, 0.2499148072137013], [327, 0.6562126806648912], [334, 0.6992441528125181], [338, 0.8941749094413923], [352, 0.013646047790266125], [362, 0.5508233440350615], [366, 0.6974518874004897], [371, 0.25517023957977214], [378, 0.4828063144306548], [382, 0.19179566920367475], [392, 0.7779591968372589], [402, 0.44966127697858205], [408, 0.8488827802649651], [411, 0.6056319934091198], [416, 0.8134103746691269], [424, 0.5329230730249622], [429, 0.9384526252869863], [435, 0.06033899974202739], [438, 0.42174840346838494], [447, 0.45197451679566303], [451, 0.3714776026073172], [458, 0.5846611478648899], [468, 0.288818895698427], [471, 0.7417707698641056], [482, 0.4631345828406559], [489, 0.19336224362773302], [496, 0.8829460879851629], [500, 0.4041213479331378], [515, 0.6679362196390256], [518, 0.5841157346925171], [523, 0.1060014136024583], [529, 0.3196808690482381], [532, 0.261356128670329], [536, 0.4838476181841962], [545, 0.012523790693381387], [566, 0.861355673192335], [571, 0.96720309684749], [578, 0.7469924943578418], [586, 0.3882486634402985], [598, 0.16960148612637116], [603, 0.5894441331705881], [610, 0.43091130854245385], [623, 0.8616227381409876], [627, 0.007909576832289322], [633, 0.40507838864061274], [637, 0.7586035194590686], [647, 0.9699660647972698], [657, 0.9011485550885442], [662, 0.2828032424025262], [666, 0.3133493874916523], [670, 0.16181613607417777], [682, 0.49740269054501574], [687, 0.816375320286971], [693, 0.43373294788269345], [697, 0.1777418749372861], [708, 0.8241355712392736], [718, 0.08610032299474801], [721, 0.37426941000917024], [725, 0.5670773243026386], [732, 0.4938839126293161], [740, 0.49987707900869727], [751, 0.7616425043483379], [760, 0.6658135447547918]], [[37, 0.49394698602351883], [46, 0.7838024981034764], [58, 0.6460631854138505], [63, 0.5243770230726671], [69, 0.40008931356233446], [72, 0.4123165881147668], [81, 0.6696912745326993], [91, 0.664191478351343], [101, 0.05914247498027991], [111, 0.2197473949393658], [116, 0.6400773189986326], [122, 0.9857246767000574], [125, 0.017267287182480606], [134, 0.5267122123275636], [143, 0.34177428116247466], [148, 0.9542786069996256], [157, 0.02354674163459025], [160, 0.9576947060489708], [171, 0.36846614994554994], [179, 0.6557680055459466], [182, 0.3420453638175034], [185, 0.2792513893330373], [189, 0.9280644877821799], [197, 0.7137150384609056], [204, 0.4248836398277933], [209, 0.9722646232247286], [214, 0.15673476330590352], [221, 0.7532829196804539], [224, 0.8862977953943214], [233, 0.4157589884732672], [241, 0.5003650929540384], [247, 0.37634813771734976], [256, 0.8327259753622251], [260, 0.5808036457538774], [267, 0.45266239344326464], [270, 0.9143426712131865], [275, 0.7871071604332133], [279, 0.9298028782389396], [285, 0.8352546420299467], [292, 0.29800152380182354], [295, 0.2962492487885455], [303, 0.1540772046009099], [310, 0.33991592499745926], [313, 0.07466174811769599], [321, 0.14848951234002505], [324, 0.893636654228004], [328, 0.6723090335954937], [335, 0.29566630220769263], [342, 0.6872692168717919], [348, 0.5834999174222631], [351, 0.5666070524181754], [357, 0.5970853277766227], [359, 0.10999862137443495], [370, 0.4801092778751461], [379, 0.2754445090925882], [382, 0.6505833995356314], [390, 0.025396967721890817], [394, 0.19918863080689742], [400, 0.8475043345325207], [404, 0.20748126479874407], [412, 0.5281387845405536], [418, 0.1533804618642215], [421, 0.47138744879323147], [423, 0.23917695019469176], [430, 0.6148055354371349], [443, 0.319791072731469], [446, 0.5053229987178848], [450, 0.569695185987864], [456, 0.3197881981952123], [459, 0.2995142530016489], [463, 0.12655920007218124], [469, 0.8466076662457465], [475, 0.6861147452126901], [481, 0.6337548538352584], [486, 0.6833515605445383], [491, 0.9239754560769365], [497, 0.3684738156962407], [500, 0.030445106127881094], [510, 0.47355048123800203], [516, 0.8309699752697971], [527, 0.15610383272310835], [531, 0.3077664659374405], [540, 0.8373245084187128], [543, 0.9256471540272363], [548, 0.58593892153662], [555, 0.8461057272641072], [558, 0.009371391072989232], [568, 0.5449174490549501], [572, 0.9849213018352765], [577, 0.6000605081993177], [581, 0.07414116086138645], [589, 0.26469023995494734], [594, 0.23099349500850597], [603, 0.30556107769731766], [606, 0.8278839091950699], [609, 0.032002171412608416], [618, 0.45627434473569106], [626, 0.3120922864469339], [629, 0.39057080046649784], [633, 0.4320909138625836]], [[40, 0.36102902282636684], [53, 0.8760266226169617], [61, 0.8451868353071897], [65, 0.8608183238698289], [69, 0.31628649771948236], [75, 0.9789619059743778], [81, 0.45124071366801743], [87, 0.09700524109145747], [92, 0.45159641683081375], [96, 0.6803349764162029], [100, 0.9241438272031793], [110, 0.19190746187538343], [118, 0.7485337344473404], [122, 0.6984464803769818], [127, 0.8423511784274816], [130, 0.3361380355052799], [134, 0.8313316653773362], [142, 0.23032048120072868], [147, 0.33702704726195865], [155, 0.9212346100652604], [158, 0.569239621643856], [163, 0.5557951677922369], [174, 0.9573925785654934], [177, 0.3662141905911467], [186, 0.6384775072835821], [192, 0.7109499523266655], [198, 0.7235977447884105], [211, 0.7950964401605625], [215, 0.45184241258390545], [221, 0.4993983139777717], [224, 0.9688063610053294], [232, 0.925146240466334], [237, 0.6473912949163064], [243, 0.5325537863473729], [246, 0.5901574971687233], [256, 0.16699128728192203], [267, 0.6233074902640243], [272, 0.1266695029570878], [279, 0.4271965062730252], [282, 0.04385243948330941], [292, 0.15739622645852913], [295, 0.35544659957418645], [297, 0.289414431987271], [302, 0.9111751734347087], [305, 0.5406697337870487], [309, 0.9030428043458507], [318, 0.4261601596454815], [324, 0.7059107640838715], [328, 0.6893151266681549], [334, 0.0898219753918249], [336, 0.6647351414277577], [347, 0.5453221645296704], [351, 0.6766736864497213], [356, 0.23322311208610957], [360, 0.9499293463826262], [368, 0.23896212828089292], [371, 0.07155572341462846], [376, 0.8268312405486353], [382, 0.10566648158346881], [387, 0.3008196014663186], [389, 0.6219141723561963], [396, 0.47617846535084185], [399, 0.2700052435868384], [407, 0.5700039055811453], [414, 0.7470397387825413], [417, 0.0141625759729469], [422, 0.5399231267135159], [426, 0.3088911792808491], [432, 0.12099671150381208], [434, 0.6558524054532608], [441, 0.6274216130672894], [450, 0.4671482150064562], [454, 0.9452778581045195], [457, 0.16679983669798937], [461, 0.04921485123777802], [465, 0.21941810401963147], [473, 0.8778475067212018], [475, 0.28875089376345264], [482, 0.09861060503238406], [487, 0.5332684560342577], [492, 0.29457088416605826], [501, 0.2047768532372769], [510, 0.9997441757344713], [514, 0.024765448651724475], [518, 0.8397178077381557], [523, 0.2908577677351494], [527, 0.4879882225729083], [536, 0.37392290160433106], [539, 0.5994342819461455], [545, 0.7089009837373103], [550, 0.18196660880505489], [553, 0.9545851708544396], [562, 0.8416312588565468], [570, 0.20303520879112036], [573, 0.0315250170813649], [577, 0.9649355941680752], [582, 0.6586972989148768], [587, 0.2572017750093274], [591, 0.7969819759285943], [601, 0.7812215370955592]], [[55, 0.23823362137760595], [59, 0.7088437331732331], [68, 0.6190011707345612], [72, 0.17577479455825096], [75, 0.47569026806205916], [79, 0.5538795660700832], [84, 0.34248120612933164], [97, 0.3341670160725526], [102, 0.7599658252871266], [111, 0.2036464100956088], [114, 0.4012711202934577], [116, 0.20791632769467738], [123, 0.6425957871435805], [126, 0.05153995913224807], [131, 0.6429137023472733], [134, 0.28864061101537464], [138, 0.7219288946363471], [148, 0.1315011430636558], [152, 0.6598451904982364], [156, 0.8156083581964401], [163, 0.5743947511723883], [167, 0.3733498263249273], [180, 0.3060751189920864], [186, 0.20506963284870483], [188, 0.34155705046713314], [198, 0.9610872628015364], [203, 0.5045129151603424], [209, 0.13821784382790325], [212, 0.11261739613185995], [221, 0.11407077127028431], [224, 0.49504351697913795], [228, 0.7172206516718271], [236, 0.806622840034087], [242, 0.7026468628647973], [247, 0.0635467525491814], [255, 0.7810927252454664], [261, 0.4847696494034943], [268, 0.2928626128599805], [276, 0.7919087438329595], [280, 0.8551744216714955], [286, 0.09852597615236447], [295, 0.5716111235997449], [298, 0.3091707392264271], [302, 0.9704291668786966], [310, 0.5165489043952509], [314, 0.8622629142725603], [321, 0.23578904640723708], [330, 0.20361685548616082], [333, 0.14741906081477962], [338, 0.3358698015678223], [345, 0.2541021972477222], [352, 0.9717436086920719], [358, 0.06886310502514192], [369, 0.03455500195446526], [374, 0.2190825794427429], [380, 0.8699731669657218], [383, 0.3043522628378277], [392, 0.16799072515627866], [397, 0.5451209604150219], [405, 0.6528015601036944], [410, 0.946769007873055], [416, 0.802922785110998], [419, 0.14624717435024537], [428, 0.9939393589743016], [433, 0.5438767770124041], [441, 0.9539277335982252], [444, 0.199141619975017], [446, 0.9199158730765585], [451, 0.5712582013637526], [457, 0.1972596226478589], [460, 0.36518101067484243], [465, 0.25629366029468537], [472, 0.3019447175391856], [481, 0.8419526294137317], [484, 0.2509895071463887], [490, 0.1037026745630002], [495, 0.17974485193097733], [498, 0.3698549897426032], [507, 0.06198659986959043], [516, 0.9528624331528326], [519, 0.7256244653914851], [523, 0.03260954802375304], [532, 0.3412627977929068], [535, 0.5710531550998826], [539, 0.23900524401272627], [544, 0.5145189665895855], [547, 0.5298327676088075], [551, 0.9082192922979959], [559, 0.657283974764944], [562, 0.6111169216808569], [569, 0.8999656846508128], [574, 0.2377204724818196], [582, 0.5688315109961426], [589, 0.812692269883015], [591, 0.5785809576228357], [597, 0.9632126334578439], [606, 0.2306508403947446], [608, 0.8381525257821419], [615, 0.43975755845575426], [618, 0.2880151623184569]], [[40, 0.11270183745931939], [50, 0.16735047842895456], [53, 0.6638378040881124], [62, 0.9663719199942588], [70, 0.4737144352085344], [79, 0.2515490054821109], [83, 0.18127523933550305], [91, 0.770364170772674], [95, 0.07781189454636062], [102, 0.32388479900849554], [107, 0.9354636128516608], [111, 0.06876837514770884], [118, 0.611803723488172], [124, 0.4433575158252292], [134, 0.6320887681586572], [141, 0.43935283086072596], [144, 0.7529713835409011], [148, 0.50350437452824], [152, 0.9870942861249873], [156, 0.8520727552075322], [160, 0.32708854954559274], [168, 0.13951404229289788], [173, 0.48120354251977127], [175, 0.3788052239386335], [182, 0.18837263224051837], [192, 0.0008931050043605726], [198, 0.4576049258520205], [200, 0.12308795026333441], [212, 0.16941205845120066], [215, 0.4217614226331424], [220, 0.4605022789324754], [226, 0.3883769274661114], [229, 0.6476092656994826], [238, 0.7444528208644631], [242, 0.8382830327376373], [246, 0.3255388035327307], [250, 0.37823777418750104], [257, 0.5337917136695883], [260, 0.35638761478146375], [270, 0.643013841847097], [274, 0.7539173713347824], [281, 0.39747392447259533], [288, 0.31619836437311044], [292, 0.96479929818097], [298, 0.34350320637777165], [305, 0.34759392109673715], [314, 0.6782617587907382], [319, 0.014351986862333743], [328, 0.7414548713892026], [336, 0.7550689659932851], [343, 0.18525052292160726], [351, 0.044682469470754826], [356, 0.95819919974473], [360, 0.9588856351198082], [367, 0.6415762654545767], [372, 0.3642104945755331], [380, 0.34162011763836], [385, 0.2434627982095635], [389, 0.24680042371409217], [394, 0.36417017562720533], [404, 0.2345021560495697], [407, 0.8092412650300804], [411, 0.44232105674852007], [416, 0.13702169118416818], [419, 0.7197497319430902], [427, 0.9622769916663304], [442, 0.8722310899613255], [445, 0.9214162819259044], [449, 0.15157844184554103], [454, 0.432781404410706], [458, 0.747383436121126], [467, 0.24822552902861983], [473, 0.9009134687487332], [480, 0.968273300785165], [486, 0.015824272513084603], [490, 0.9127836401642463], [505, 0.3504947096329971], [511, 0.02251349443082218], [518, 0.03360383611982509], [532, 0.7875699252039838], [535, 0.8368935316633649], [547, 0.3357167540992335], [556, 0.861053457929378], [559, 0.7040841739238658], [565, 0.21166386174452112], [569, 0.2850460833063009], [575, 0.22725529972672243], [578, 0.9435052257086358], [586, 0.5259384431352176], [591, 0.768476666492965], [593, 0.3391260567589758], [597, 0.419062436402027], [600, 0.2565828965330561], [606, 0.6000259174655532], [612, 0.1118540785078942], [618, 0.6994202688473531], [625, 0.980766192013755], [629, 0.8405326264934084], [639, 0.20794253986093048], [646, 0.7930554679628796]]], [[[40, 0.00468037300073465], [50, 0.7091589305756109], [53, 0.9855450714336487], [62, 0.659484088601776], [70, 0.5532704759083182], [79, 0.8502547418420897], [83, 0.9998272652249254], [91, 0.3765466575981966], [95, 0.5119397333962138], [102, 0.24561789284597402], [107, 0.036317858624365984], [111, 0.07580616170262722], [118, 0.19221948989142512], [124, 0.9637946198694191], [134, 0.15745065828019078], [141, 0.34241147161645147], [144, 0.8630937558859838], [148, 0.7005749347150823], [152, 0.5333854093601684], [156, 0.41777964717116745], [160, 0.15402452403111266], [168, 0.8842699478840672], [173, 0.9582200679557799], [175, 0.7470818600466819], [182, 0.18768352231006835], [192, 0.2966546592609577], [198, 0.332938347647986], [200, 0.1675778896835809], [212, 0.5044890402387665], [215, 0.4458683404774584], [220, 0.8776198032207227], [226, 0.9211677274232412], [229, 0.6848635414563774], [238, 0.17986851369146017], [242, 0.7163132871253787], [246, 0.014894167673424441], [250, 0.7104715485933737], [257, 0.900923679144467], [260, 0.9964659455121411], [270, 0.8754115164584669], [274, 0.8761082690805428], [281, 0.5178151660661322], [288, 0.9792882331250669], [292, 0.8437735070547404], [298, 0.654019513252547], [305, 0.18273520950569744], [314, 0.2914322522100662], [319, 0.28137248463310105], [328, 0.9978500699374595], [336, 0.4245710747348871], [343, 0.785588780157941], [351, 0.05272192008868892], [356, 0.681840890870945], [360, 0.7228517996243333], [367, 0.6054900550214497], [372, 0.23501992652197945], [380, 0.04311524803467137], [385, 0.91321573771126], [389, 0.7481939455497512], [394, 0.6194452021817266], [404, 0.6757805421784167], [407, 0.5621276372370088], [411, 0.07392525913253589], [416, 0.6164229487347065], [419, 0.5957333196165489], [427, 0.588762239426099], [442, 0.7488673303391555], [445, 0.9980808100820333], [449, 0.80781121629929], [454, 0.9009274129029268], [458, 0.8221117509083123], [467, 0.5846232018136769], [473, 0.46394007325919717], [480, 0.5609069579369708], [486, 0.2518581519498554], [490, 0.46589932880988905], [505, 0.5981228995249036], [511, 0.5219414075703898], [518, 0.15814267073358745], [532, 0.5101270655437143], [535, 0.8717357640271157], [547, 0.9917065579813802], [556, 0.2632147801947341], [559, 0.3648909665861758], [565, 0.010164530862904808], [569, 0.7739326668419476], [575, 0.8701288781852516], [578, 0.9984674742590662], [586, 0.7457917711254775], [591, 0.7486189552312057], [593, 0.8955777559386559], [597, 0.07463333507526826], [600, 0.3434757954807912], [606, 0.32579509928106865], [612, 0.73445890541621], [618, 0.6842180952913891], [625, 0.42772014880740905], [629, 0.11001325145106278], [639, 0.6894574568230319], [646, 0.29588650285394436]], [[67, 0.8378256633339197], [73, 0.11238752726254153], [77, 0.6688869724488592], [87, 0.21110261253826512], [90, 0.7272902724695384], [96, 0.445938021152243], [107, 0.8905477445297064], [113, 0.3678681272534291], [118, 0.055757154839916945], [123, 0.010537705702711286], [132, 0.5873928176490126], [141, 0.15966008527509035], [151, 0.49492722023904456], [154, 0.15440331570785137], [158, 0.6549071325924316], [164, 0.6309564617718901], [168, 0.9043675902927752], [178, 0.8839817787287991], [183, 0.35791922902116446], [190, 0.2653018562745991], [193, 0.5962843386678608], [198, 0.6201126631422961], [206, 0.8335102447350686], [213, 0.821133736777388], [219, 0.043197328705780635], [224, 0.45297573639983313], [235, 0.19321919322744208], [242, 0.9771521307046775], [251, 0.04518219769627141], [260, 0.3213682623447581], [264, 0.3947868328662738], [271, 0.8643078229124727], [275, 0.9708665647870902], [281, 0.8269046745997526], [287, 0.3037695632698202], [299, 0.9407593732330037], [309, 0.4092571085390768], [317, 0.05688818842179255], [327, 0.8229539092083631], [334, 0.18216364621300085], [338, 0.6353512870160297], [352, 0.38989365269983767], [362, 0.5028360285374778], [366, 0.10834687609008009], [371, 0.059006402166790095], [378, 0.9225750117244444], [382, 0.677432981942718], [392, 0.4468017267520701], [402, 0.2754201761144789], [408, 0.2767002419320891], [411, 0.2201497670365835], [416, 0.009922046703021326], [424, 0.8004344362654916], [429, 0.5156489750814924], [435, 0.32303067734039725], [438, 0.773350721027946], [447, 0.560125445286094], [451, 0.27995420608471133], [458, 0.4042124068946066], [468, 0.402964344569103], [471, 0.7438425580852883], [482, 0.4198682506835377], [489, 0.23580873040393124], [496, 0.8601224417363401], [500, 0.5967565704810796], [515, 0.2387173297570796], [518, 0.9725550533527945], [523, 0.7100412419976694], [529, 0.847385309452072], [532, 0.35340509077481663], [536, 0.41466010236285644], [545, 0.3540969812621818], [566, 0.7793778304677912], [571, 0.23006938521840836], [578, 0.7240602625920394], [586, 0.5062068776738957], [598, 0.6415320320257208], [603, 0.5004493284665397], [610, 0.6617599237167048], [623, 0.8624219023457487], [627, 0.7724244934048127], [633, 0.7290816628122504], [637, 0.5956693969052627], [647, 0.7465014939359419], [657, 0.5930914890425232], [662, 0.8877778186321397], [666, 0.16126464682403385], [670, 0.5113139520976122], [682, 0.5275626506640148], [687, 0.9757650740757693], [693, 0.6799290920834802], [697, 0.16523900315923012], [708, 0.40970134756920307], [718, 0.4280458760248915], [721, 0.7950303542421573], [725, 0.5000165292176463], [732, 0.7234324462656435], [740, 0.38210386460776014], [751, 0.8908020807180658], [760, 0.4975839062930545]], [[37, 0.8749076011525886], [46, 0.9238608553951507], [58, 0.8173596144243834], [63, 0.13584912437996188], [69, 0.582020921931331], [72, 0.7834757741568337], [81, 0.4362509444837007], [91, 0.035612825282180016], [101, 0.0572687943274095], [111, 0.38120510044206446], [116, 0.7594862807778495], [122, 0.20985001759193123], [125, 0.4033772974636246], [134, 0.9620782174638446], [143, 0.2364452909770428], [148, 0.7933701272954701], [157, 0.9215215575504396], [160, 0.5643546267471512], [171, 0.42191057810395116], [179, 0.6193705118444447], [182, 0.5761067154659435], [185, 0.2847817223710878], [189, 0.5906833498143659], [197, 0.9047121360782789], [204, 0.8433754744976968], [209, 0.2741338889921223], [214, 0.7989580502468088], [221, 0.8805703658885133], [224, 0.9554036390607906], [233, 0.29226666314388106], [241, 0.6598386905915258], [247, 0.8996789551777957], [256, 0.26127214844827196], [260, 0.45845571136845886], [267, 0.885118581494726], [270, 0.495391189751641], [275, 0.8576018182254923], [279, 0.9288817863888063], [285, 0.02378828507763775], [292, 0.018330391663468282], [295, 0.5875923915453738], [303, 0.7796320182135565], [310, 0.544589753590219], [313, 0.3145912113950323], [321, 0.35060672541332993], [324, 0.8810896749680897], [328, 0.7777661648615947], [335, 0.9912738149943338], [342, 0.09989003936140128], [348, 0.8777215941261566], [351, 0.5654004331505517], [357, 0.3531840170245151], [359, 0.4206508971258035], [370, 0.4074249978402136], [379, 0.6260882427102118], [382, 0.217012876769885], [390, 0.1548315692192982], [394, 0.41908554749487237], [400, 0.9826427362567685], [404, 0.5394801537630239], [412, 0.38199590646750514], [418, 0.5630344098234448], [421, 0.7296567723496572], [423, 0.39895151611226987], [430, 0.25618713082368727], [443, 0.9355016083240484], [446, 0.6670065119887693], [450, 0.38956955520819525], [456, 0.771827764683902], [459, 0.8554937968169967], [463, 0.31632276905408696], [469, 0.12160571754003568], [475, 0.4519912152556457], [481, 0.36509492128891563], [486, 0.15520855333460581], [491, 0.42171525906338936], [497, 0.5725791531143966], [500, 0.6181448865718943], [510, 0.6001536124461999], [516, 0.36399772072990577], [527, 0.2938833155991196], [531, 0.6351646951523332], [540, 0.10386387891436111], [543, 0.0648999284744588], [548, 0.1853270724319741], [555, 0.8178912273103575], [558, 0.9888581469836909], [568, 0.3425276089985204], [572, 0.9097010616120178], [577, 0.9881644316646269], [581, 0.22631373470898974], [589, 0.12326702082936758], [594, 0.5065990893081265], [603, 0.08143529712464836], [606, 0.23927838484825048], [609, 0.7197068948340273], [618, 0.2053853818698017], [626, 0.08945629128495713], [629, 0.8889921175798989], [633, 0.8804989892429534]], [[40, 0.9449196777294301], [53, 0.7530536301465847], [61, 0.9076707145271552], [65, 0.8349538347890376], [69, 0.11383373092515581], [75, 0.12048643181236729], [81, 0.28299768793806224], [87, 0.3525680434382047], [92, 0.43554872072793616], [96, 0.4813208383682711], [100, 0.583369357691057], [110, 0.08696101167907078], [118, 0.04245316822236178], [122, 0.8876632788392032], [127, 0.10202028492728177], [130, 0.5011845469175062], [134, 0.5367957860316404], [142, 0.4070049095745485], [147, 0.5100916991594104], [155, 0.4253060086632018], [158, 0.6115790498947735], [163, 0.8709600907234496], [174, 0.848619444980096], [177, 0.7544012444352146], [186, 0.8175680220703477], [192, 0.6616179227551636], [198, 0.8684651728156997], [211, 0.669055681153056], [215, 0.6728020695628941], [221, 0.5537810008200017], [224, 0.7844651897430557], [232, 0.14417874287006227], [237, 0.6720215874302555], [243, 0.38642391083563443], [246, 0.5685703450797933], [256, 0.1290730988046246], [267, 0.5655476645228389], [272, 0.9641834653902639], [279, 0.007467592277920931], [282, 0.3263406023906875], [292, 0.35855768426045787], [295, 0.26676263940895095], [297, 0.41136524610382574], [302, 0.12439233897913105], [305, 0.4014355805309098], [309, 0.10278893070367312], [318, 0.3316058604089369], [324, 0.13923073752323023], [328, 0.7172775401373558], [334, 0.8298382908508004], [336, 0.045587700215413696], [347, 0.7618166985032617], [351, 0.06304557480714046], [356, 0.9867981801705887], [360, 0.8104590927884868], [368, 0.6158428600941366], [371, 0.026999104280058805], [376, 0.05293042758469979], [382, 0.16679833912794995], [387, 0.334305361760751], [389, 0.1915422680624359], [396, 0.8596628850196515], [399, 0.4296923972519836], [407, 0.16489830059409571], [414, 0.39669106674100674], [417, 0.6839031336156742], [422, 0.39815003063523324], [426, 0.19644618408994574], [432, 0.05206904090695752], [434, 0.04762740192299997], [441, 0.32010606322671853], [450, 0.955478716962234], [454, 0.29837003384604077], [457, 0.35767442742461153], [461, 0.09201990313320785], [465, 0.5735409748172002], [473, 0.5693747905536197], [475, 0.9777018586879608], [482, 0.73741589871055], [487, 0.16135673617765423], [492, 0.9517441272510851], [501, 0.9045470733683137], [510, 0.014465779557026215], [514, 0.9689450265108979], [518, 0.9012337566153539], [523, 0.1479337792347597], [527, 0.8994241315974092], [536, 0.20804147953076413], [539, 0.00010275359517497584], [545, 0.15590563122715273], [550, 0.9390702566890677], [553, 0.4607240754375751], [562, 0.689910967406846], [570, 0.8142494969476447], [573, 0.33423919794793], [577, 0.2653500563129778], [582, 0.015618220679541439], [587, 0.689365739195002], [591, 0.16284459959526443], [601, 0.4480517931243433]], [[55, 0.5009249344049626], [59, 0.27453710321841585], [68, 0.577514755929023], [72, 0.8211335821763152], [75, 0.10522516775824642], [79, 0.5443350288995569], [84, 0.6415238004543551], [97, 0.2819371960865855], [102, 0.3458520118750954], [111, 0.025154312036510418], [114, 0.5889537997786137], [116, 0.7093074912594917], [123, 0.5735217148305929], [126, 0.3626353283561987], [131, 0.6564418188153487], [134, 0.8184444222421968], [138, 0.6274472367181377], [148, 0.5439662595161793], [152, 0.47587665655981737], [156, 0.25156620276828656], [163, 0.05656884341487145], [167, 0.60162106771304], [180, 0.9296650464517605], [186, 0.10165410856756163], [188, 0.6117594661395453], [198, 0.7440284454600358], [203, 0.6746015007741764], [209, 0.5902445716646115], [212, 0.28823206518135247], [221, 0.6613667590472555], [224, 0.5246512053241804], [228, 0.1798893335220607], [236, 0.46432387893529004], [242, 0.7109630775914935], [247, 0.3620599972983827], [255, 0.5994875301948253], [261, 0.46086894721839766], [268, 0.13558877241390344], [276, 0.9904569589730559], [280, 0.7408691004871412], [286, 0.7267885705727423], [295, 0.5453447273376516], [298, 0.4551361174793479], [302, 0.10273762827036037], [310, 0.9588809956569723], [314, 0.024286375785273262], [321, 0.8080341990628193], [330, 0.20536067400855407], [333, 0.9358431308862746], [338, 0.14009586188858902], [345, 0.277977629543663], [352, 0.6179920280839059], [358, 0.3976908014305722], [369, 0.3615981233770672], [374, 0.934687393038061], [380, 0.3831576931332187], [383, 0.38853962233051087], [392, 0.16068540976000234], [397, 0.8052935899014265], [405, 0.9312130351401108], [410, 0.37988043965450313], [416, 0.5193941459595316], [419, 0.3286442448676834], [428, 0.04844797645100607], [433, 0.7467909394231091], [441, 0.8595004309567624], [444, 0.8060904853737619], [446, 0.1102432179044267], [451, 0.7649293395177283], [457, 0.5388301133864662], [460, 0.31665422549720734], [465, 0.39951706068523574], [472, 0.7091281506958467], [481, 0.7877470122433153], [484, 0.6062854435744452], [490, 0.40091589452679044], [495, 0.019897473081658013], [498, 0.540408033192753], [507, 0.6938173810029878], [516, 0.1735655597618886], [519, 0.8990667519858062], [523, 0.2483749343864362], [532, 0.08885863809564676], [535, 0.5082993240453448], [539, 0.3348426426619061], [544, 0.5713034172888001], [547, 0.9864182959325798], [551, 0.025121479182103834], [559, 0.5499442670188757], [562, 0.8374195493494969], [569, 0.5169861095603084], [574, 0.2433744264572073], [582, 0.24961167770684567], [589, 0.1237140227285306], [591, 0.632137150494751], [597, 0.41136875353689095], [606, 0.5386833442843523], [608, 0.4223653554757354], [615, 0.23260885562168088], [618, 0.5807452569282614]], [[40, 0.026488972633580632], [50, 0.31589463077417623], [53, 0.3752812685550959], [62, 0.5802840227140457], [70, 0.48952959503077786], [79, 0.6724515819815962], [83, 0.6390682287810072], [91, 0.8506554881822808], [95, 0.5668921847377932], [102, 0.2714961804515672], [107, 0.2937632015368574], [111, 0.4126502667255627], [118, 0.9997839441614715], [124, 0.2773504634622319], [134, 0.8163124355286742], [141, 0.25768103716838064], [144, 0.27071178611618585], [148, 0.7739141925655263], [152, 0.8432961693395837], [156, 0.12813933401687871], [160, 0.8231219001106251], [168, 0.8951416362885661], [173, 0.08023585468047012], [175, 0.9631479902450203], [182, 0.3574881382863949], [192, 0.047127450447726926], [198, 0.5764301789481726], [200, 0.1735296450028755], [212, 0.045856881409146566], [215, 0.41559030657017915], [220, 0.011983373421425969], [226, 0.9821552197620144], [229, 0.20950633030862575], [238, 0.2306130643632197], [242, 0.8909108541506392], [246, 0.47716143115444876], [250, 0.1938206566589753], [257, 0.29667952792319485], [260, 0.9451320710903021], [270, 0.8355970044569841], [274, 0.09029732856372219], [281, 0.48943041240827023], [288, 0.9464562378506813], [292, 0.28176617810705884], [298, 0.20928133251979542], [305, 0.0549761066518033], [314, 0.3674665237301846], [319, 0.03238435137015938], [328, 0.5827419989823187], [336, 0.573606520911795], [343, 0.5418523620253239], [351, 0.7693611920215081], [356, 0.5416746916046151], [360, 0.6866821351719342], [367, 0.5050211720934898], [372, 0.045620007056940026], [380, 0.33169499660173074], [385, 0.004950721188543117], [389, 0.039483199496972876], [394, 0.6330534837805182], [404, 0.7817103172047252], [407, 0.6823999699851321], [411, 0.6433131381760853], [416, 0.38836166710308684], [419, 0.9424404531268578], [427, 0.9416208996288798], [442, 0.464631561467023], [445, 0.05811426540646991], [449, 0.5236142720162741], [454, 0.6959606686441475], [458, 0.7114773875585536], [467, 0.7370182907002597], [473, 0.712551829757311], [480, 0.2703085545685765], [486, 0.8409356030547432], [490, 0.3339936044373294], [505, 0.6731480730017201], [511, 0.5510372198280904], [518, 0.9099507706921075], [532, 0.7444376522606013], [535, 0.7873342440786003], [547, 0.38720446700816824], [556, 0.3797918005287988], [559, 0.9643028358284021], [565, 0.34065266945391315], [569, 0.7580761034949406], [575, 0.18638052073179645], [578, 0.5601071719554319], [586, 0.18460257671331792], [591, 0.9108698803491804], [593, 0.03680235791375863], [597, 0.13957554349728152], [600, 0.8352311796002897], [606, 0.39928574672731754], [612, 0.6878967967005524], [618, 0.005342657606916434], [625, 0.12972991033918113], [629, 0.4445868231476443], [639, 0.381442154995869], [646, 0.6365175693696874]]]]}];
updateResult(0);
function highlightDocsBySentence(sentenceIndex) {
const currentResult = allResults[document.getElementById("result-select").value];
currentDocValues = currentResult.doc_level[sentenceIndex];
currentSentenceIndex = sentenceIndex;
if (currentGranularity === "Document-level") {
const docValues = currentResult.doc_level[sentenceIndex];
// 归一化处理
const maxVal = Math.max(...docValues);
const minVal = Math.min(...docValues);
const range = maxVal - minVal || 1; // 防止除零
d3.selectAll(".doc-item")
.style("background", (d, j) => {
const normalized = (docValues[j] - minVal) / range;
return getColor(normalized);
});
} else {
const data = currentGranularity === "Span-level"
? currentResult.span_level[sentenceIndex]
: currentResult.word_level[sentenceIndex];
d3.selectAll(".doc-item").each(function(d, j) {
const rawText = d.text;
const formatted = formatDocumentText(rawText);
const matches = rawText.match(/Document \[([\d]+)\]\(Title:(.*?)\)(.*)/);
const offset = matches ? matches[0].length - matches[3].length : 0;
const spans = (data[j] || [])
const sorted = spans.slice().sort((a,b) => a[0] - b[0]);
const values = sorted.map(x => x[1]);
const minVal = Math.min(...values);
const maxVal = Math.max(...values);
const range = maxVal - minVal || 1;
let newContent = rawText;
let cumulativeShift = 0;
sorted.forEach((entry, i) => {
const idx = entry[0] || 0;
const val = entry[1] || 0;
const start = idx;
const end = i < sorted.length-1
? sorted[i+1][0]
: rawText.length;
const color = d3.interpolateReds((val - minVal)/range);
const span = `<span class="highlight-span" style="background:${color}" data-original-color="${color}" data-value="${val}" onclick="handleSpanClick(event, ${val})">`;
const insertStart = start + cumulativeShift;
const insertEnd = end + cumulativeShift;
newContent = newContent.slice(0, insertStart)
+ span
+ newContent.slice(insertStart, insertEnd)
+ "</span>"
+ newContent.slice(insertEnd);
cumulativeShift += span.length + "</span>".length;
});
newContent = formatDocumentText(newContent)
d3.select(this).select(".doc-content").html(newContent);
setTimeout(applyThresholdFilter, 0);
});
}
}
function updateResult(selectedIndex) {
const result = allResults[selectedIndex];
// 在updateResult函数开始添加
currentSentenceIndex = null;
currentDocValues = [];
d3.select(".color-box")
.style("background", "none")
.style("border-color", "#ddd");
d3.select(".value-display")
.text("Click document to show value")
.style("color", "#666");
// 修改updateResult函数中的doc-list部分
const docList = d3.select("#doc-list")
.html("")
.selectAll(".doc-item")
.data(result.doc_cache.map((d, j) => ({
text: d,
index: j
}))) // 绑定文档索引
.enter()
.append("div")
.classed("doc-item", true)
.html(d => `
<div class="doc-content">${formatDocumentText(d.text)}</div>
`)
.on("click", function(event, d) {
if (currentGranularity === "Document-level" && currentSentenceIndex !== null) {
const rawValue = currentDocValues[d.index];
const normalized = (rawValue - Math.min(...currentDocValues)) /
(Math.max(...currentDocValues) - Math.min(...currentDocValues) || 1);
d3.select(".color-box")
.style("background", getColor(normalized))
.style("border-color", "#999");
d3.select(".value-display")
.text(`Value: ${rawValue.toFixed(4)}`)
.style("color", "#333");
} else {
// 阻止非文档级点击事件
event.stopPropagation();
}
});
currentThreshold = 0;
d3.select("#threshold").property("value", 0);
d3.select("#threshold-value").text("0.00");
d3.select("#current-question").html(`❓ ${result.data.question}`);
d3.select("#current-answer").html(`📖 ${result.data.answer}`);
d3.select("#output-box")
.html("")
.selectAll(".output-line")
.data(result.output.map((d, i) => ({ text: d, index: i }))) // 这里添加映射
.enter()
.append("div")
.classed("output-line", true)
.html(d => `
<div class="output-text">${d.text}</div>
`)
.on("click", function(event, d) {
clearDocHighlights();
if (currentGranularity === "Document-level") {
highlightDocsBySentence(d.index);
} else {
highlightDocsBySentence(d.index);
}
});
}
// 在updateResult函数之后添加
d3.select("#granularity").on("change", function() {
currentGranularity = this.value;
clearDocHighlights(); // 切换粒度时清除高亮
currentSentenceIndex = null;
currentDocValues = [];
applyThresholdFilter();
if (currentGranularity === "Document-level") {
// a: 隐藏 class 为 "filter-slider" 的元素
document.querySelector('.filter-slider').style.display = 'none';
} else {
// b: 显示 class 为 "filter-slider" 的元素
document.querySelector('.filter-slider').style.display = 'block'; // 或者其他合适的显示方式,如 'flex', 'inline', 等
}
});
// 清除高亮的函数
function clearDocHighlights() {
d3.selectAll(".doc-item").style("background", "none");
d3.selectAll(".doc-content span").each(function() {
const parent = this.parentNode;
parent.replaceChild(document.createTextNode(this.textContent), this);
parent.normalize();
d3.select(".color-box")
.style("background", "none")
.style("border-color", "#ddd");
d3.select(".value-display")
.text("Click span to show value")
.style("color", "#666");
});
}
// 颜色映射函数(归一化到红色系)
function getColor(value) {
const alpha = value * 0.8 + 0.2; // 保证最小可见度
return `rgba(255,50,50,${alpha})`;
}
function parseDocumentText(text) {
const match = text.match(/\[(\d+)\]\(Title:(.*?)\)(.*)/);
return {
number: match[1],
title: match[2],
content: match[3]
};
}
function getTextOffset(formattedHtml) {
const temp = document.createElement('div');
temp.innerHTML = formattedHtml;
return temp.textContent.length - temp.querySelector('strong').nextSibling.textContent.length;
}
</script>
</body>
</html> |