Skip to content

Instantly share code, notes, and snippets.

@MNoichl
Last active March 7, 2018 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MNoichl/84da84c83530b15c9a65df5c5ae547dd to your computer and use it in GitHub Desktop.
Save MNoichl/84da84c83530b15c9a65df5c5ae547dd to your computer and use it in GitHub Desktop.
Graph for picture taking
license: gpl-3.0
height: 600

This simple force-directed graph shows character co-occurence in Les Misérables. A physical simulation of charged particles and springs places related characters in closer proximity, while unrelated characters are farther apart. Layout algorithm inspired by Tim Dwyer and Thomas Jakobsen. Data based on character coappearence in Victor Hugo's Les Misérables, compiled by Donald Knuth.

Compare this display to a force layout with curved links, a force layout with fisheye distortion and a matrix diagram.

forked from mbostock's block: Force-Directed Graph

forked from nixsee's block: Force-Directed Graph bostockv4

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.links line {
stroke: #999;
stroke-opacity: 0.6;
}
.nodes circle {
stroke: #fff;
stroke-width: 1.5px;
}
</style>
<svg width="960" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var attractForce = d3.forceManyBody().strength(600).distanceMax(10).distanceMin(10);
var repelForce = d3.forceManyBody().strength(-10).distanceMax(50).distanceMin(10);
var color = d3.scaleOrdinal().range(
["#264c40",
"#5676a3",
"#478976",
"#284058",
"#55818e"]
);
var simulation = d3.forceSimulation()
.force("charge", d3.forceManyBody().strength(-5))//-18
.force("link", d3.forceLink().iterations(7).id(function(d) { return d.id; }))
.force("center", d3.forceCenter(width / 2, height / 2));
d3.json("miserables.json", function(error, graph) {
if (error) throw error;
var link = svg.append("g")
.attr("class", "links")
.selectAll("line")
.data(graph.links)
.enter().append("line")
.attr("stroke-width", function(d) { return Math.sqrt(d.value); });
var node = svg.append("g")
.attr("class", "nodes")
.selectAll("circle")
.data(graph.nodes)
.enter().append("circle")
.attr("r", 5)
.attr("fill", function(d) { return color(d.cluster); })
.call(d3.drag()
.on("start", dragstarted)
.on("drag", dragged)
.on("end", dragended));
node.append("title")
.text(function(d) { return d.id; });
simulation
.nodes(graph.nodes)
.on("tick", ticked);
simulation.force("link")
.links(graph.links);
function ticked() {
link
.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
});
function dragstarted(d) {
if (!d3.event.active) simulation.alphaTarget(0.2).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragged(d) {
d.fx = d3.event.x;
d.fy = d3.event.y;
}
function dragended(d) {
if (!d3.event.active) simulation.alphaTarget(0);
d.fx = null;
d.fy = null;
}
</script>
{
"nodes": [{"authors":"thompson, sc","cluster":164,"id":1,"label":"thompson (1981)","scoreCitations":611,"scoreNormcitations":6.8192,"scorePubyear":1981,"source":"psychological bulletin, 90(1), 89-101","title":"will it hurt less if i can control it - a complex answer to a simple question","url":"http://dx.doi.org/10.1037/0033-2909.90.1.89","weightCitations":611,"weightLinks":0,"weightNormcitations":6.8192,"x":0.6899,"y":0.5015,"year":"1981"},{"authors":"ekman, p","cluster":163,"id":2,"label":"ekman (1994)","scoreCitations":484,"scoreNormcitations":7.9701,"scorePubyear":1994,"source":"psychological bulletin, 115(2), 268-287","title":"strong evidence for universals in facial expressions - a reply to russells mistaken critique","url":"http://dx.doi.org/10.1037//0033-2909.115.2.268","weightCitations":484,"weightLinks":1,"weightNormcitations":7.9701,"x":-0.1985,"y":0.8046,"year":"1994"},{"authors":"macdonald, mc; christiansen, mh","cluster":5,"id":3,"label":"macdonald (2002)","scoreCitations":376,"scoreNormcitations":7.0985,"scorePubyear":2002,"source":"psychological review, 109(1), 35-54","title":"reassessing working memory: comment on just and carpenter (1992) and waters and caplan (1996)","url":"http://dx.doi.org/10.1037//0033-295x.109.1.35","weightCitations":376,"weightLinks":5,"weightNormcitations":7.0985,"x":-0.5973,"y":-0.1872,"year":"2002"},{"authors":"gigerenzer, g","cluster":1,"id":4,"label":"gigerenzer (1996)","scoreCitations":364,"scoreNormcitations":5.2,"scorePubyear":1996,"source":"psychological review, 103(3), 592-596","title":"on narrow norms and vague heuristics: reply","url":"http://dx.doi.org/10.1037/0033-295x.103.3.592","weightCitations":364,"weightLinks":4,"weightNormcitations":5.2,"x":0.457,"y":-0.7023,"year":"1996"},{"authors":"roberts, s; pashler, h","cluster":2,"id":5,"label":"roberts (2000)","scoreCitations":352,"scoreNormcitations":9.1537,"scorePubyear":2000,"source":"psychological review, 107(2), 358-367","title":"how persuasive is a good fit? a comment on theory testing","url":"http://dx.doi.org/10.1037//0033-295x.107.2.358","weightCitations":352,"weightLinks":8,"weightNormcitations":9.1537,"x":-0.3917,"y":-0.1786,"year":"2000"},{"authors":"allison, pd; liker, jk","cluster":165,"id":6,"label":"allison (1982)","scoreCitations":291,"scoreNormcitations":6.8978,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 393-403","title":"analyzing sequential categorical-data on dyadic interaction - a comment","url":"http://dx.doi.org/10.1037/0033-2909.91.2.393","weightCitations":291,"weightLinks":0,"weightNormcitations":6.8978,"x":-0.2388,"y":0.4566,"year":"1982"},{"authors":"twenge, jm; crocker, j","cluster":8,"id":7,"label":"twenge (2002)","scoreCitations":272,"scoreNormcitations":5.1351,"scorePubyear":2002,"source":"psychological bulletin, 128(3), 371-408","title":"race and self-esteem: meta-analyses comparing whites, blacks, hispanics, asians, and american indians and comment on gray-little and hafdahl (2000)","url":"http://dx.doi.org/10.1037//0033-2909.128.3.371","weightCitations":272,"weightLinks":4,"weightNormcitations":5.1351,"x":0.2833,"y":-0.0959,"year":"2002"},{"authors":"reder, lm","cluster":166,"id":8,"label":"reder (1987)","scoreCitations":252,"scoreNormcitations":2.1585,"scorePubyear":1987,"source":"cognitive psychology, 19(1), 90-138","title":"strategy selection in question answering","url":"http://dx.doi.org/10.1016/0010-0285(87)90005-3","weightCitations":252,"weightLinks":0,"weightNormcitations":2.1585,"x":-0.1675,"y":-0.9145,"year":"1987"},{"authors":"kane, mj; hambrick, dz; conway, ara","cluster":25,"id":9,"label":"kane (2005)","scoreCitations":246,"scoreNormcitations":11.0977,"scorePubyear":2005,"source":"psychological bulletin, 131(1), 66-71","title":"working memory capacity and fluid intelligence are strongly related constructs: comment on ackerman, beier, and boyle (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.1.66","weightCitations":246,"weightLinks":3,"weightNormcitations":11.0977,"x":-0.2554,"y":-0.5683,"year":"2005"},{"authors":"studdert, m; liberman, am; harris, ks; cooper, fs","cluster":60,"id":10,"label":"studdert (1970)","scoreCitations":222,"scoreNormcitations":5.1829,"scorePubyear":1970,"source":"psychological review, 77(3), 234","title":"theoretical notes motor theory of speech perception - a reply to lanes critical review","url":"http://dx.doi.org/10.1037/h0029078","weightCitations":222,"weightLinks":1,"weightNormcitations":5.1829,"x":-0.0895,"y":-0.0947,"year":"1970"},{"authors":"smith, er; miller, fd","cluster":9,"id":11,"label":"smith (1978)","scoreCitations":214,"scoreNormcitations":8.2723,"scorePubyear":1978,"source":"psychological review, 85(4), 355-362","title":"limits on perception of cognitive-processes - reply to nisbett and wilson","url":"http://dx.doi.org/10.1037/0033-295x.85.4.355","weightCitations":214,"weightLinks":1,"weightNormcitations":8.2723,"x":0.2436,"y":-0.3063,"year":"1978"},{"authors":"dell, gs; oseaghdha, pg","cluster":3,"id":12,"label":"dell (1991)","scoreCitations":212,"scoreNormcitations":4.9799,"scorePubyear":1991,"source":"psychological review, 98(4), 604-614","title":"mediated and convergent lexical priming in language production - a comment","url":"http://dx.doi.org/10.1037/0033-295x.98.4.604","weightCitations":212,"weightLinks":7,"weightNormcitations":4.9799,"x":-0.6916,"y":-0.1724,"year":"1991"},{"authors":"baumeister, rf; sommer, kl","cluster":7,"id":13,"label":"baumeister (1997)","scoreCitations":204,"scoreNormcitations":4.0453,"scorePubyear":1997,"source":"psychological bulletin, 122(1), 38-44","title":"what do men want? gender differences and two spheres of belongingness: comment on cross and madson (1997)","url":"http://dx.doi.org/10.1037/0033-2909.122.1.38","weightCitations":204,"weightLinks":2,"weightNormcitations":4.0453,"x":-0.1365,"y":0.9706,"year":"1997"},{"authors":"cliff, n","cluster":167,"id":14,"label":"cliff (1993)","scoreCitations":196,"scoreNormcitations":5.0256,"scorePubyear":1993,"source":"psychological bulletin, 114(3), 494-509","title":"dominance statistics - ordinal analyses to answer ordinal questions","url":"http://dx.doi.org/10.1037/0033-2909.114.3.494","weightCitations":196,"weightLinks":0,"weightNormcitations":5.0256,"x":-0.0046,"y":-0.705,"year":"1993"},{"authors":"levelt, wjm; kelter, s","cluster":168,"id":15,"label":"levelt (1982)","scoreCitations":185,"scoreNormcitations":4.3852,"scorePubyear":1982,"source":"cognitive psychology, 14(1), 78-106","title":"surface form and memory in question answering","url":"http://dx.doi.org/10.1016/0010-0285(82)90005-6","weightCitations":185,"weightLinks":0,"weightNormcitations":4.3852,"x":-1.0437,"y":-0.237,"year":"1982"},{"authors":"mcvay, jc; kane, mj","cluster":6,"id":16,"label":"mcvay (2010)","scoreCitations":181,"scoreNormcitations":7.9937,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 188-197","title":"does mind wandering reflect executive function or executive failure? comment on smallwood and schooler (2006) and watkins (2008)","url":"http://dx.doi.org/10.1037/a0018298","weightCitations":181,"weightLinks":6,"weightNormcitations":7.9937,"x":-0.1737,"y":0.5894,"year":"2010"},{"authors":"fiske, ap","cluster":14,"id":17,"label":"fiske (2002)","scoreCitations":181,"scoreNormcitations":3.4171,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 78-88","title":"using individualism and collectivism to compare cultures - a critique of the validity and measurement of the constructs: comment on oyserman et al. (2002)","url":"http://dx.doi.org/10.1037/0033-2909.128.1.78","weightCitations":181,"weightLinks":2,"weightNormcitations":3.4171,"x":0.239,"y":-0.1457,"year":"2002"},{"authors":"kitayama, s","cluster":14,"id":18,"label":"kitayama (2002)","scoreCitations":178,"scoreNormcitations":3.3605,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 89-96","title":"culture and basic psychological processes - toward a system view of culture: comment on oyserman et al. (2002)","url":"http://dx.doi.org/10.1037/0033-2909.128.1.89","weightCitations":178,"weightLinks":3,"weightNormcitations":3.3605,"x":0.2455,"y":-0.2004,"year":"2002"},{"authors":"zuroff, dc; mongrain, m; santor, da","cluster":11,"id":19,"label":"zuroff (2004)","scoreCitations":175,"scoreNormcitations":7.549,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 489-511","title":"conceptualizing and measuring personality vulnerability to depression: comment on coyne and whiffen (1995)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.489","weightCitations":175,"weightLinks":4,"weightNormcitations":7.549,"x":0.537,"y":-0.0629,"year":"2004"},{"authors":"oberauer, k; schulze, r; wilhelm, o; suss, hm","cluster":25,"id":20,"label":"oberauer (2005)","scoreCitations":173,"scoreNormcitations":7.8045,"scorePubyear":2005,"source":"psychological bulletin, 131(1), 61-65","title":"working memory and intelligence - their correlation and their relation: comment on ackerman, beier, and boyle (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.1.61","weightCitations":173,"weightLinks":2,"weightNormcitations":7.8045,"x":-0.2659,"y":-0.5463,"year":"2005"},{"authors":"dillon, wr; kumar, a; mulani, n","cluster":169,"id":21,"label":"dillon (1987)","scoreCitations":161,"scoreNormcitations":1.379,"scorePubyear":1987,"source":"psychological bulletin, 101(1), 126-135","title":"offending estimates in covariance structure-analysis - comments on the causes of and solutions to heywood cases","url":"http://dx.doi.org/10.1037/0033-2909.101.1.126","weightCitations":161,"weightLinks":0,"weightNormcitations":1.379,"x":0.6512,"y":-0.0635,"year":"1987"},{"authors":"brown, gw; harris, t","cluster":35,"id":22,"label":"brown (1978)","scoreCitations":149,"scoreNormcitations":5.7597,"scorePubyear":1978,"source":"psychological medicine, 8(4), 577-588","title":"social origins of depression - reply","weightCitations":149,"weightLinks":2,"weightNormcitations":5.7597,"x":-0.3991,"y":0.5478,"year":"1978"},{"authors":"bogels, sm; alden, l; beidel, dc; clark, la; pine, ds; stein, mb; voncken, m","cluster":170,"id":23,"label":"bogels (2010)","scoreCitations":147,"scoreNormcitations":6.4921,"scorePubyear":2010,"source":"depression and anxiety, 27(2), 168-189","title":"social anxiety disorder: questions and answers for the dsm-v","url":"http://dx.doi.org/10.1002/da.20670","weightCitations":147,"weightLinks":0,"weightNormcitations":6.4921,"x":-0.2187,"y":-0.3087,"year":"2010"},{"authors":"pizarro, da; bloom, p","cluster":34,"id":24,"label":"pizarro (2003)","scoreCitations":144,"scoreNormcitations":5.3651,"scorePubyear":2003,"source":"psychological review, 110(1), 193-196","title":"the intelligence of the moral intuitions: comment on haidt (2001)","url":"http://dx.doi.org/10.1037/0033-295x.110.1.193","weightCitations":144,"weightLinks":3,"weightNormcitations":5.3651,"x":0.1803,"y":-0.3605,"year":"2003"},{"authors":"butterworth, b; hadar, u","cluster":20,"id":25,"label":"butterworth (1989)","scoreCitations":137,"scoreNormcitations":3.3415,"scorePubyear":1989,"source":"psychological review, 96(1), 168-174","title":"gesture, speech, and computational stages - a reply","url":"http://dx.doi.org/10.1037//0033-295x.96.1.168","weightCitations":137,"weightLinks":4,"weightNormcitations":3.3415,"x":-0.9332,"y":0.465,"year":"1989"},{"authors":"watson, d; tellegen, a","cluster":36,"id":26,"label":"watson (1999)","scoreCitations":136,"scoreNormcitations":3.2426,"scorePubyear":1999,"source":"psychological bulletin, 125(5), 601-610","title":"issues in the dimensional structure of affect - effects of descriptors, measurement error, and response formats: comment on russell and carroll (1999)","url":"http://dx.doi.org/10.1037//0033-2909.125.5.601","weightCitations":136,"weightLinks":2,"weightNormcitations":3.2426,"x":0.8205,"y":-0.4137,"year":"1999"},{"authors":"eisenberger, r; pierce, wd; cameron, j","cluster":24,"id":27,"label":"eisenberger (1999)","scoreCitations":132,"scoreNormcitations":3.1473,"scorePubyear":1999,"source":"psychological bulletin, 125(6), 677-691","title":"effects of reward on intrinsic motivation - negative, neutral, and positive: comment on deci, koestner, and ryan (1999)","url":"http://dx.doi.org/10.1037//0033-2909.125.6.677","weightCitations":132,"weightLinks":3,"weightNormcitations":3.1473,"x":0.7875,"y":0.5709,"year":"1999"},{"authors":"greenberg, j; jonas, e","cluster":26,"id":28,"label":"greenberg (2003)","scoreCitations":125,"scoreNormcitations":4.6572,"scorePubyear":2003,"source":"psychological bulletin, 129(3), 376-382","title":"psychological motives and political orientation - the left, the right, and the rigid: comment on jost et al. (2003)","url":"http://dx.doi.org/10.1037/0033-2909-129.3.376","weightCitations":125,"weightLinks":3,"weightNormcitations":4.6572,"x":0.1971,"y":-0.8992,"year":"2003"},{"authors":"parks, cm; yonelinas, ap","cluster":4,"id":29,"label":"parks (2007)","scoreCitations":120,"scoreNormcitations":12.1678,"scorePubyear":2007,"source":"psychological review, 114(1), 188-201","title":"moving beyond pure signal-detection models: comment on wixted (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.1.188","weightCitations":120,"weightLinks":1,"weightNormcitations":12.1678,"x":0.3554,"y":-0.3972,"year":"2007"},{"authors":"costa, pt; mccrae, rr","cluster":15,"id":30,"label":"costa (1995)","scoreCitations":120,"scoreNormcitations":4.0909,"scorePubyear":1995,"source":"psychological bulletin, 117(2), 216-220","title":"solid ground in the wetlands of personality - a reply to block","url":"http://dx.doi.org/10.1037//0033-2909.117.2.216","weightCitations":120,"weightLinks":1,"weightNormcitations":4.0909,"x":-0.9463,"y":0.2031,"year":"1995"},{"authors":"bond, mh","cluster":14,"id":31,"label":"bond (2002)","scoreCitations":118,"scoreNormcitations":2.2277,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 73-77","title":"reclaiming the individual from hofstede's ecological analysis - a 20-year odyssey: comment on oyserman et al. (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.1.73","weightCitations":118,"weightLinks":2,"weightNormcitations":2.2277,"x":0.2495,"y":-0.1674,"year":"2002"},{"authors":"baumrind, d; larzelere, re; cowan, pa","cluster":21,"id":32,"label":"baumrind (2002)","scoreCitations":115,"scoreNormcitations":2.1711,"scorePubyear":2002,"source":"psychological bulletin, 128(4), 580-589","title":"ordinary physical punishment: is it harmful? comment on gershoff (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.4.580","weightCitations":115,"weightLinks":2,"weightNormcitations":2.1711,"x":0.4213,"y":-0.93,"year":"2002"},{"authors":"lourenco, o; machado, a","cluster":171,"id":33,"label":"lourenco (1996)","scoreCitations":111,"scoreNormcitations":1.5857,"scorePubyear":1996,"source":"psychological review, 103(1), 143-164","title":"in defense of piaget's theory: a reply to 10 common criticisms","weightCitations":111,"weightLinks":0,"weightNormcitations":1.5857,"x":-0.4836,"y":0.5582,"year":"1996"},{"authors":"ferguson, cj; kilburn, j","cluster":17,"id":34,"label":"ferguson (2010)","scoreCitations":108,"scoreNormcitations":4.7697,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 174-178","title":"much ado about nothing: the misestimation and overinterpretation of violent video game effects in eastern and western nations: comment on anderson et al. (2010)","url":"http://dx.doi.org/10.1037/a0018566","weightCitations":108,"weightLinks":3,"weightNormcitations":4.7697,"x":0.1464,"y":0.1352,"year":"2010"},{"authors":"jost, jt; glaser, j; ktuglanski, aw; sulloway, fj","cluster":26,"id":35,"label":"jost (2003)","scoreCitations":106,"scoreNormcitations":3.9493,"scorePubyear":2003,"source":"psychological bulletin, 129(3), 383-393","title":"exceptions that prove the rule - using a theory of motivated social cognition to account for ideological incongruities and political anomalies: reply to greenberg and jonas (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.3.383","weightCitations":106,"weightLinks":2,"weightNormcitations":3.9493,"x":0.1902,"y":-0.8904,"year":"2003"},{"authors":"deci, el; koestner, r; ryan, rm","cluster":24,"id":36,"label":"deci (1999)","scoreCitations":101,"scoreNormcitations":2.4081,"scorePubyear":1999,"source":"psychological bulletin, 125(6), 692-700","title":"the undermining effect is a reality after all - extrinsic rewards, task interest, and self-determination: reply to eisenberger, pierce, and cameron (1999) and lepper, henderlong, and gingras (1999)","url":"http://dx.doi.org/10.1037/0033-2909.125.6.692","weightCitations":101,"weightLinks":4,"weightNormcitations":2.4081,"x":0.7774,"y":0.572,"year":"1999"},{"authors":"spence, jt; helmreich, rl","cluster":7,"id":37,"label":"spence (1981)","scoreCitations":94,"scoreNormcitations":1.0491,"scorePubyear":1981,"source":"psychological review, 88(4), 365-368","title":"androgyny versus gender schema - comment","url":"http://dx.doi.org/10.1037/0033-295x.88.4.365","weightCitations":94,"weightLinks":4,"weightNormcitations":1.0491,"x":-0.2237,"y":0.9964,"year":"1981"},{"authors":"ericsson, ka; patel, v; kintsch, w","cluster":27,"id":38,"label":"ericsson (2000)","scoreCitations":92,"scoreNormcitations":2.3924,"scorePubyear":2000,"source":"psychological review, 107(3), 578-592","title":"how experts' adaptations to representative task demands account for the expertise effect in memory recall: comment on vicente and wang (1998)","url":"http://dx.doi.org/10.1037//0033-295x.107.3.578","weightCitations":92,"weightLinks":2,"weightNormcitations":2.3924,"x":0.9343,"y":0.1355,"year":"2000"},{"authors":"mowrer, oh","cluster":13,"id":39,"label":"mowrer (1951)","scoreCitations":91,"scoreNormcitations":5.0092,"scorePubyear":1951,"source":"psychological review, 58(5), 350-354","title":"2-factor learning theory - summary and comment","url":"http://dx.doi.org/10.1037/h0058956","weightCitations":91,"weightLinks":2,"weightNormcitations":5.0092,"x":-0.4401,"y":-0.2579,"year":"1951"},{"authors":"white, jw; smith, ph; koss, mp; figueredo, aj","cluster":8,"id":40,"label":"white (2000)","scoreCitations":88,"scoreNormcitations":2.2884,"scorePubyear":2000,"source":"psychological bulletin, 126(5), 690-696","title":"intimate partner aggression - what have we learned? comment on archer (2000)","url":"http://dx.doi.org/10.1037//0033-2909.126.5.690","weightCitations":88,"weightLinks":2,"weightNormcitations":2.2884,"x":0.3379,"y":-0.0074,"year":"2000"},{"authors":"costa, pt; mccrae, rr","cluster":11,"id":41,"label":"costa (2006)","scoreCitations":87,"scoreNormcitations":5.9103,"scorePubyear":2006,"source":"psychological bulletin, 132(1), 26-28","title":"age changes in personality and their origins: comment on roberts, walton, and viechtbauer (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.1.26","weightCitations":87,"weightLinks":1,"weightNormcitations":5.9103,"x":0.5013,"y":-0.0486,"year":"2006"},{"authors":"bem, sl","cluster":7,"id":42,"label":"bem (1981)","scoreCitations":87,"scoreNormcitations":0.971,"scorePubyear":1981,"source":"psychological review, 88(4), 369-371","title":"the bsri and gender schema theory - reply","url":"http://dx.doi.org/10.1037//0033-295x.88.4.369","weightCitations":87,"weightLinks":3,"weightNormcitations":0.971,"x":-0.2376,"y":1.0032,"year":"1981"},{"authors":"miller, jg","cluster":14,"id":43,"label":"miller (2002)","scoreCitations":86,"scoreNormcitations":1.6236,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 97-109","title":"bringing culture to basic psychological theory - beyond individualism and collectivism: comment on oyserman et al. (2002)","url":"http://dx.doi.org/10.1037/0033-2909.128.1.97","weightCitations":86,"weightLinks":2,"weightNormcitations":1.6236,"x":0.2271,"y":-0.1524,"year":"2002"},{"authors":"pavlov, ip","cluster":162,"id":44,"label":"pavlov (1932)","scoreCitations":84,"scoreNormcitations":2.0,"scorePubyear":1932,"source":"psychological review, 39, 91-127","title":"the reply of a physiologist to psychologists","url":"http://dx.doi.org/10.1037/h0069929","weightCitations":84,"weightLinks":1,"weightNormcitations":2.0,"x":-0.269,"y":0.1254,"year":"1932"},{"authors":"seidenberg, ms; mcclelland, jl","cluster":5,"id":45,"label":"seidenberg (1990)","scoreCitations":80,"scoreNormcitations":3.6735,"scorePubyear":1990,"source":"psychological review, 97(3), 447-452","title":"more words but still no lexicon - reply","url":"http://dx.doi.org/10.1037/0033-295x.97.3.447","weightCitations":80,"weightLinks":1,"weightNormcitations":3.6735,"x":-0.5751,"y":-0.121,"year":"1990"},{"authors":"oyserman, d; kemmelmeier, m; coon, hm","cluster":14,"id":46,"label":"oyserman (2002)","scoreCitations":78,"scoreNormcitations":1.4726,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 110-117","title":"cultural psychology, a new look: reply to bond (2002), fiske (2002), kitayama (2002), and miller (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.1.110","weightCitations":78,"weightLinks":6,"weightNormcitations":1.4726,"x":0.2312,"y":-0.1676,"year":"2002"},{"authors":"gigerenzer, g; regier, t","cluster":1,"id":47,"label":"gigerenzer (1996)","scoreCitations":78,"scoreNormcitations":1.1143,"scorePubyear":1996,"source":"psychological bulletin, 119(1), 23-26","title":"how do we tell an association from a rule? comment","url":"http://dx.doi.org/10.1037/0033-2909.119.1.23","weightCitations":78,"weightLinks":2,"weightNormcitations":1.1143,"x":0.5368,"y":-0.6461,"year":"1996"},{"authors":"johnson, ej; schulte-mecklenbeck, m; willemsen, mc","cluster":2,"id":48,"label":"johnson (2008)","scoreCitations":77,"scoreNormcitations":4.2778,"scorePubyear":2008,"source":"psychological review, 115(1), 263-272","title":"process models deserve process data: comment on brandstatter, gigerenzer, and hertwig (2006)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.263","weightCitations":77,"weightLinks":2,"weightNormcitations":4.2778,"x":-0.3351,"y":-0.0939,"year":"2008"},{"authors":"williams, p; hand, d; tarnopolsky, a","cluster":61,"id":49,"label":"williams (1982)","scoreCitations":72,"scoreNormcitations":1.7067,"scorePubyear":1982,"source":"psychological medicine, 12(2), 431-434","title":"the problem of screening for uncommon disorders - a comment on the eating attitudes test","weightCitations":72,"weightLinks":1,"weightNormcitations":1.7067,"x":0.504,"y":-0.1949,"year":"1982"},{"authors":"lee, md; wagenmakers, ej","cluster":19,"id":50,"label":"lee (2005)","scoreCitations":70,"scoreNormcitations":3.1579,"scorePubyear":2005,"source":"psychological review, 112(3), 662-668","title":"bayesian statistical inference in psychology: comment on trafimow (2003)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.662","weightCitations":70,"weightLinks":4,"weightNormcitations":3.1579,"x":0.3646,"y":0.8847,"year":"2005"},{"authors":"gigerenzer, g; hoffrage, u","cluster":1,"id":51,"label":"gigerenzer (1999)","scoreCitations":70,"scoreNormcitations":1.669,"scorePubyear":1999,"source":"psychological review, 106(2), 425-430","title":"overcoming difficulties in bayesian reasoning: a reply to lewis and keren (1999) and mellers and mcgraw (1999)","url":"http://dx.doi.org/10.1037/0033-295x.106.2.425","weightCitations":70,"weightLinks":3,"weightNormcitations":1.669,"x":0.4934,"y":-0.5858,"year":"1999"},{"authors":"smallwood, j","cluster":6,"id":52,"label":"smallwood (2010)","scoreCitations":68,"scoreNormcitations":3.0032,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 202-207","title":"why the global availability of mind wandering necessitates resource competition: reply to mcvay and kane (2010)","url":"http://dx.doi.org/10.1037/a0018673","weightCitations":68,"weightLinks":3,"weightNormcitations":3.0032,"x":-0.1664,"y":0.6147,"year":"2010"},{"authors":"bryant, p; goswami, u","cluster":172,"id":53,"label":"bryant (1986)","scoreCitations":68,"scoreNormcitations":4.0874,"scorePubyear":1986,"source":"psychological bulletin, 100(1), 101-103","title":"strengths and weaknesses of the reading level design - a comment on backman, mamen, and ferguson","weightCitations":68,"weightLinks":0,"weightNormcitations":4.0874,"x":-0.9224,"y":-0.4308,"year":"1986"},{"authors":"whitley, be; kite, me","cluster":62,"id":54,"label":"whitley (1995)","scoreCitations":66,"scoreNormcitations":2.25,"scorePubyear":1995,"source":"psychological bulletin, 117(1), 146-154","title":"sex-differences in attitudes toward homosexuality - a comment on oliver and hyde (1993)","url":"http://dx.doi.org/10.1037//0033-2909.117.1.146","weightCitations":66,"weightLinks":1,"weightNormcitations":2.25,"x":0.5378,"y":-0.3592,"year":"1995"},{"authors":"marchesi, c; fonto, s; balista, c; cimmino, c; maggini, c","cluster":173,"id":55,"label":"marchesi (2005)","scoreCitations":64,"scoreNormcitations":2.8872,"scorePubyear":2005,"source":"psychotherapy and psychosomatics, 74(1), 56-60","title":"relationship between alexithymia and panic disorder: a longitudinal study to answer an open question","url":"http://dx.doi.org/10.1159/000082028","weightCitations":64,"weightLinks":0,"weightNormcitations":2.8872,"x":0.0531,"y":0.2038,"year":"2005"},{"authors":"kirsch, i","cluster":139,"id":56,"label":"kirsch (2004)","scoreCitations":61,"scoreNormcitations":2.6314,"scorePubyear":2004,"source":"psychological bulletin, 130(2), 341-343","title":"conditioning, expectancy, and the placebo effect: comment on stewart-williams and podd (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.2.341","weightCitations":61,"weightLinks":1,"weightNormcitations":2.6314,"x":0.1236,"y":0.6122,"year":"2004"},{"authors":"broadbent, de","cluster":37,"id":57,"label":"broadbent (1978)","scoreCitations":59,"scoreNormcitations":2.2807,"scorePubyear":1978,"source":"psychological bulletin, 85(5), 1052-1067","title":"current state of noise research - reply to poulton","url":"http://dx.doi.org/10.1037//0033-2909.85.5.1052","weightCitations":59,"weightLinks":2,"weightNormcitations":2.2807,"x":0.5681,"y":0.3225,"year":"1978"},{"authors":"gigerenzer, g; hoffrage, u; goldstein, dg","cluster":2,"id":58,"label":"gigerenzer (2008)","scoreCitations":57,"scoreNormcitations":3.1667,"scorePubyear":2008,"source":"psychological review, 115(1), 230-237","title":"fast and frugal heuristics are plausible models of cognition: reply to dougherty, franco-watkins, and thomas (2008)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.230","weightCitations":57,"weightLinks":2,"weightNormcitations":3.1667,"x":-0.3736,"y":-0.1305,"year":"2008"},{"authors":"matsumoto, d","cluster":174,"id":59,"label":"matsumoto (2002)","scoreCitations":57,"scoreNormcitations":1.0761,"scorePubyear":2002,"source":"psychological bulletin, 128(2), 236-242","title":"methodological requirements to test a possible in-group advantage in judging emotions across cultures: comment on elfenbein and ambady (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.2.236","weightCitations":57,"weightLinks":0,"weightNormcitations":1.0761,"x":-0.1699,"y":-0.8397,"year":"2002"},{"authors":"levelt, wjm; vorberg, d; pechmann, t; schriefers, h; meyer, as; havinga, j","cluster":3,"id":60,"label":"levelt (1991)","scoreCitations":57,"scoreNormcitations":1.3389,"scorePubyear":1991,"source":"psychological review, 98(4), 615-618","title":"normal and deviant lexical processing - reply","weightCitations":57,"weightLinks":5,"weightNormcitations":1.3389,"x":-0.6791,"y":-0.1715,"year":"1991"},{"authors":"kinchla, ra","cluster":4,"id":61,"label":"kinchla (1994)","scoreCitations":56,"scoreNormcitations":0.9222,"scorePubyear":1994,"source":"psychological review, 101(1), 166-171","title":"comments on batchelder and riefer multinomial model for source monitoring","url":"http://dx.doi.org/10.1037/0033-295x.101.1.166","weightCitations":56,"weightLinks":2,"weightNormcitations":0.9222,"x":0.4285,"y":-0.4306,"year":"1994"},{"authors":"birnbaum, mh","cluster":2,"id":62,"label":"birnbaum (1974)","scoreCitations":55,"scoreNormcitations":5.4225,"scorePubyear":1974,"source":"psychological bulletin, 81(11), 854-859","title":"devils advocates - dont confound model testing and measurement - reply","url":"http://dx.doi.org/10.1037/h0037132","weightCitations":55,"weightLinks":1,"weightNormcitations":5.4225,"x":-0.3003,"y":-0.0964,"year":"1974"},{"authors":"roelofs, a","cluster":3,"id":63,"label":"roelofs (2004)","scoreCitations":54,"scoreNormcitations":2.3294,"scorePubyear":2004,"source":"psychological review, 111(2), 561-572","title":"error biases in spoken word planning and monitoring by aphasic and nonaphasic speakers: comment on rapp and goldrick (2000)","url":"http://dx.doi.org/10.1037/0033-295x.111.2.561","weightCitations":54,"weightLinks":4,"weightNormcitations":2.3294,"x":-0.6635,"y":-0.1471,"year":"2004"},{"authors":"raz, n; lindenberger, u","cluster":45,"id":64,"label":"raz (2011)","scoreCitations":53,"scoreNormcitations":5.9235,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 790-795","title":"only time will tell: cross-sectional studies offer no solution to the age-brain-cognition triangle: comment on salthouse (2011)","url":"http://dx.doi.org/10.1037/a0024503","weightCitations":53,"weightLinks":1,"weightNormcitations":5.9235,"x":-0.0418,"y":0.0275,"year":"2011"},{"authors":"ijzerman, h; koole, sl","cluster":107,"id":65,"label":"ijzerman (2011)","scoreCitations":53,"scoreNormcitations":5.9235,"scorePubyear":2011,"source":"psychological bulletin, 137(2), 355-361","title":"from perceptual rags to metaphoric riches-bodily, social, and cultural constraints on sociocognitive metaphors: comment on landau, meier, and keefer (2010)","url":"http://dx.doi.org/10.1037/a0022373","weightCitations":53,"weightLinks":1,"weightNormcitations":5.9235,"x":0.2997,"y":0.1809,"year":"2011"},{"authors":"epstein, s","cluster":23,"id":66,"label":"epstein (1983)","scoreCitations":53,"scoreNormcitations":4.4632,"scorePubyear":1983,"source":"psychological review, 90(2), 179-184","title":"the stability of confusion - a reply","weightCitations":53,"weightLinks":1,"weightNormcitations":4.4632,"x":0.0036,"y":-0.9515,"year":"1983"},{"authors":"haidt, j","cluster":34,"id":67,"label":"haidt (2003)","scoreCitations":52,"scoreNormcitations":1.9374,"scorePubyear":2003,"source":"psychological review, 110(1), 197-198","title":"the emotional dog does learn new tricks: a reply to pizarro and bloom (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.1.197","weightCitations":52,"weightLinks":3,"weightNormcitations":1.9374,"x":0.1961,"y":-0.3518,"year":"2003"},{"authors":"bandura, a; bussey, k","cluster":81,"id":68,"label":"bandura (2004)","scoreCitations":51,"scoreNormcitations":2.2,"scorePubyear":2004,"source":"psychological bulletin, 130(5), 691-701","title":"on broadening the cognitive, motivational, and sociostructural scope of theorizing about gender development and functioning: comment on martin, ruble, and szkrvbalo (2002)","url":"http://dx.doi.org/10.1037/0033-2909.130.5.691","weightCitations":51,"weightLinks":1,"weightNormcitations":2.2,"x":0.4242,"y":-0.2238,"year":"2004"},{"authors":"krueger, ji","cluster":28,"id":69,"label":"krueger (2003)","scoreCitations":51,"scoreNormcitations":1.9001,"scorePubyear":2003,"source":"psychological review, 110(3), 585-590","title":"return of the ego - self-referent information as a filter for social prediction: comment on karniol (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.3.585","weightCitations":51,"weightLinks":1,"weightNormcitations":1.9001,"x":0.174,"y":0.9512,"year":"2003"},{"authors":"goldberg, lr; saucier, g","cluster":15,"id":70,"label":"goldberg (1995)","scoreCitations":51,"scoreNormcitations":1.7386,"scorePubyear":1995,"source":"psychological bulletin, 117(2), 221-225","title":"so what do you propose we use instead - a reply","url":"http://dx.doi.org/10.1037//0033-2909.117.2.221","weightCitations":51,"weightLinks":1,"weightNormcitations":1.7386,"x":-0.9446,"y":0.1894,"year":"1995"},{"authors":"panksepp, j","cluster":16,"id":71,"label":"panksepp (2003)","scoreCitations":50,"scoreNormcitations":1.8629,"scorePubyear":2003,"source":"psychological review, 110(2), 376-388","title":"can anthropomorphic analyses of separation cries in other animals inform us about the emotional nature of social loss in humans? comment on blumberg and sokoloff (2001)","url":"http://dx.doi.org/10.1037/0033-295x.110.2.376","weightCitations":50,"weightLinks":2,"weightNormcitations":1.8629,"x":0.5845,"y":-0.8463,"year":"2003"},{"authors":"critschristoph, p","cluster":38,"id":72,"label":"critschristoph (1997)","scoreCitations":50,"scoreNormcitations":0.9915,"scorePubyear":1997,"source":"psychological bulletin, 122(3), 216-220","title":"limitations of the dodo bird verdict and the role of clinical trials in psychotherapy research: comment","url":"http://dx.doi.org/10.1037/0033-2909.122.3.216","weightCitations":50,"weightLinks":1,"weightNormcitations":0.9915,"x":-0.0493,"y":-0.7766,"year":"1997"},{"authors":"dubois, dl; flay, br","cluster":10,"id":73,"label":"dubois (2004)","scoreCitations":49,"scoreNormcitations":2.1137,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 415-420","title":"the healthy pursuit of self-esteem: comment on and alternative to the crocker and park (2004) formulation","url":"http://dx.doi.org/10.1037/0033-2909.130.3.415","weightCitations":49,"weightLinks":1,"weightNormcitations":2.1137,"x":0.1239,"y":0.7532,"year":"2004"},{"authors":"lepper, mr; henderlong, j; gingras, i","cluster":24,"id":74,"label":"lepper (1999)","scoreCitations":49,"scoreNormcitations":1.1683,"scorePubyear":1999,"source":"psychological bulletin, 125(6), 669-676","title":"understanding the effects of extrinsic rewards on intrinsic motivation - uses and abuses of meta-analysis: comment on deci, koestner, and ryan (1999)","url":"http://dx.doi.org/10.1037//0033-2909.125.6.669","weightCitations":49,"weightLinks":3,"weightNormcitations":1.1683,"x":0.7671,"y":0.5731,"year":"1999"},{"authors":"barber, tx; silver, mj","cluster":175,"id":75,"label":"barber (1968)","scoreCitations":48,"scoreNormcitations":2.2018,"scorePubyear":1968,"source":"psychological bulletin, 70(6p2), 48","title":"pitfalls in data analysis and interpretation - a reply to rosenthal","url":"http://dx.doi.org/10.1037/h0026725","weightCitations":48,"weightLinks":0,"weightNormcitations":2.2018,"x":0.4803,"y":0.3184,"year":"1968"},{"authors":"huesmann, lr","cluster":17,"id":76,"label":"huesmann (2010)","scoreCitations":47,"scoreNormcitations":2.0757,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 179-181","title":"nailing the coffin shut on doubts that violent video games stimulate aggression: comment on anderson et al. (2010)","url":"http://dx.doi.org/10.1037/a0018567","weightCitations":47,"weightLinks":1,"weightNormcitations":2.0757,"x":0.1462,"y":0.1018,"year":"2010"},{"authors":"russell, ja; carroll, jm","cluster":36,"id":77,"label":"russell (1999)","scoreCitations":47,"scoreNormcitations":1.1206,"scorePubyear":1999,"source":"psychological bulletin, 125(5), 611-617","title":"the phoenix of bipolarity: reply to watson and tellegen (1999)","url":"http://dx.doi.org/10.1037/0033-2909.125.5.611","weightCitations":47,"weightLinks":2,"weightNormcitations":1.1206,"x":0.8261,"y":-0.4091,"year":"1999"},{"authors":"heuer, h","cluster":176,"id":78,"label":"heuer (1988)","scoreCitations":47,"scoreNormcitations":3.1333,"scorePubyear":1988,"source":"psychological review, 95(4), 552-557","title":"testing the invariance of relative timing - comment","url":"http://dx.doi.org/10.1037//0033-295x.95.4.552","weightCitations":47,"weightLinks":0,"weightNormcitations":3.1333,"x":-0.5235,"y":0.4254,"year":"1988"},{"authors":"laughlin, je","cluster":89,"id":79,"label":"laughlin (1978)","scoreCitations":47,"scoreNormcitations":1.8168,"scorePubyear":1978,"source":"psychological bulletin, 85(2), 247-253","title":"estimating coefficients in linear-models - dont make no nevermind - comment","url":"http://dx.doi.org/10.1037//0033-2909.85.2.247","weightCitations":47,"weightLinks":1,"weightNormcitations":1.8168,"x":-0.4569,"y":0.4706,"year":"1978"},{"authors":"crider, a; schwartz, ge; shnidman, s","cluster":69,"id":80,"label":"crider (1969)","scoreCitations":47,"scoreNormcitations":1.9859,"scorePubyear":1969,"source":"psychological bulletin, 71(6), 455","title":"on criteria for instrumental autonomic conditioning - a reply to katkin and murray","url":"http://dx.doi.org/10.1037/h0027251","weightCitations":47,"weightLinks":1,"weightNormcitations":1.9859,"x":0.2319,"y":1.0404,"year":"1969"},{"authors":"miller, ne","cluster":63,"id":81,"label":"miller (1935)","scoreCitations":47,"scoreNormcitations":1.9184,"scorePubyear":1935,"source":"psychological review, 42, 280-292","title":"a reply to 'sign-gestalt or conditioned reflex?","url":"http://dx.doi.org/10.1037/h0054961","weightCitations":47,"weightLinks":1,"weightNormcitations":1.9184,"x":-1.0573,"y":-0.1591,"year":"1935"},{"authors":"johnsonlaird, pn; byrne, rmj; schaeken, w","cluster":177,"id":82,"label":"johnsonlaird (1994)","scoreCitations":46,"scoreNormcitations":0.7575,"scorePubyear":1994,"source":"psychological review, 101(4), 734-739","title":"why models rather than rules give a better account of propositional reasoning - reply","url":"http://dx.doi.org/10.1037//0033-295x.101.4.734","weightCitations":46,"weightLinks":0,"weightNormcitations":0.7575,"x":0.6695,"y":0.7669,"year":"1994"},{"authors":"kounin, js","cluster":178,"id":83,"label":"kounin (1948)","scoreCitations":46,"scoreNormcitations":3.2281,"scorePubyear":1948,"source":"psychological review, 55(3), 157-166","title":"the meaning of rigidity - a reply","url":"http://dx.doi.org/10.1037/h0062399","weightCitations":46,"weightLinks":0,"weightNormcitations":3.2281,"x":-0.3932,"y":1.0035,"year":"1948"},{"authors":"criss, ah; shiffrin, rm","cluster":179,"id":84,"label":"criss (2004)","scoreCitations":45,"scoreNormcitations":1.9412,"scorePubyear":2004,"source":"psychological review, 111(3), 800-807","title":"context noise and item noise jointly determine recognition memory: a comment on dennis and humphreys (2001)","url":"http://dx.doi.org/10.1037/0033-295x.111.3.800","weightCitations":45,"weightLinks":0,"weightNormcitations":1.9412,"x":-0.5927,"y":-0.9026,"year":"2004"},{"authors":"stevens, j","cluster":180,"id":85,"label":"stevens (1979)","scoreCitations":45,"scoreNormcitations":4.1143,"scorePubyear":1979,"source":"psychological bulletin, 86(2), 355-360","title":"choosing a test statistic in multivariate-analysis of variance - comment","url":"http://dx.doi.org/10.1037/0033-2909.86.2.355","weightCitations":45,"weightLinks":0,"weightNormcitations":4.1143,"x":-0.0504,"y":-0.8719,"year":"1979"},{"authors":"eysenck, hj","cluster":64,"id":86,"label":"eysenck (1977)","scoreCitations":45,"scoreNormcitations":4.1327,"scorePubyear":1977,"source":"psychological bulletin, 84(3), 405-411","title":"personality and factor-analysis - reply to guilford","url":"http://dx.doi.org/10.1037//0033-2909.84.3.405","weightCitations":45,"weightLinks":1,"weightNormcitations":4.1327,"x":0.0604,"y":-0.3667,"year":"1977"},{"authors":"seligman, me","cluster":65,"id":87,"label":"seligman (1969)","scoreCitations":45,"scoreNormcitations":1.9014,"scorePubyear":1969,"source":"psychological review, 76(5), 484","title":"control group and conditioning - a comment on operationism","url":"http://dx.doi.org/10.1037/h0028111","weightCitations":45,"weightLinks":1,"weightNormcitations":1.9014,"x":0.0043,"y":-0.1751,"year":"1969"},{"authors":"brandstatter, e; gigerenzer, g; hertwig, r","cluster":2,"id":88,"label":"brandstatter (2008)","scoreCitations":44,"scoreNormcitations":2.4444,"scorePubyear":2008,"source":"psychological review, 115(1), 281-289","title":"risky choice with heuristics: reply to birnbaum (2008), johnson, schulte-mecklenbeck, and willemsen (2008), and rieger and wang (2008)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.281","weightCitations":44,"weightLinks":5,"weightNormcitations":2.4444,"x":-0.3373,"y":-0.1087,"year":"2008"},{"authors":"roberts, bw; walton, ke; viechtbauer, w","cluster":181,"id":89,"label":"roberts (2006)","scoreCitations":44,"scoreNormcitations":2.9891,"scorePubyear":2006,"source":"psychological bulletin, 132(1), 29-32","title":"personality traits change in adulthood: reply to costa and mccrae (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.1.29","weightCitations":44,"weightLinks":0,"weightNormcitations":2.9891,"x":0.768,"y":0.1706,"year":"2006"},{"authors":"dallam, sj; gleaves, dh; cepeda-benito, a; silberg, jl; kraemer, hc; spiegel, d","cluster":66,"id":90,"label":"dallam (2001)","scoreCitations":44,"scoreNormcitations":3.3333,"scorePubyear":2001,"source":"psychological bulletin, 127(6), 715-733","title":"the effects of child sexual abuse: comment on rind, tromovitch, and bauserman (1998)","url":"http://dx.doi.org/10.1037//0033-2909.127.6.715","weightCitations":44,"weightLinks":1,"weightNormcitations":3.3333,"x":0.5586,"y":-0.4552,"year":"2001"},{"authors":"brunswik, e","cluster":182,"id":91,"label":"brunswik (1955)","scoreCitations":44,"scoreNormcitations":1.9775,"scorePubyear":1955,"source":"psychological review, 62(3), 236-242","title":"in defense of probabilistic functionalism - a reply","url":"http://dx.doi.org/10.1037/h0040198","weightCitations":44,"weightLinks":0,"weightNormcitations":1.9775,"x":-0.3983,"y":0.6373,"year":"1955"},{"authors":"nietzel, mt; fisher, sg","cluster":72,"id":92,"label":"nietzel (1981)","scoreCitations":43,"scoreNormcitations":0.4799,"scorePubyear":1981,"source":"psychological bulletin, 89(3), 555-565","title":"effectiveness of professional and paraprofessional helpers - a comment on durlak","url":"http://dx.doi.org/10.1037//0033-2909.89.3.555","weightCitations":43,"weightLinks":1,"weightNormcitations":0.4799,"x":-0.8032,"y":-0.3509,"year":"1981"},{"authors":"raskin, dc; podlesny, ja","cluster":183,"id":93,"label":"raskin (1979)","scoreCitations":43,"scoreNormcitations":3.9314,"scorePubyear":1979,"source":"psychological bulletin, 86(1), 54-59","title":"truth and deception - reply","url":"http://dx.doi.org/10.1037/0033-2909.86.1.54","weightCitations":43,"weightLinks":0,"weightNormcitations":3.9314,"x":0.1253,"y":-0.8223,"year":"1979"},{"authors":"archer, j","cluster":8,"id":94,"label":"archer (2000)","scoreCitations":41,"scoreNormcitations":1.0662,"scorePubyear":2000,"source":"psychological bulletin, 126(5), 697-702","title":"sex differences in physical aggression to partners: a reply to frieze (2000), o'leary (2000), and white, smith, koss, and figueredo (2000)","url":"http://dx.doi.org/10.1037//0033-2909.126.5.697","weightCitations":41,"weightLinks":4,"weightNormcitations":1.0662,"x":0.3327,"y":-0.015,"year":"2000"},{"authors":"guilford, jp","cluster":64,"id":95,"label":"guilford (1977)","scoreCitations":41,"scoreNormcitations":3.7653,"scorePubyear":1977,"source":"psychological bulletin, 84(3), 412-416","title":"will real factor of extraversion-introversion please stand up - reply to eysenck","url":"http://dx.doi.org/10.1037//0033-2909.84.3.412","weightCitations":41,"weightLinks":1,"weightNormcitations":3.7653,"x":0.0592,"y":-0.3701,"year":"1977"},{"authors":"griffiths, tl; chater, n; norris, d; pouget, a","cluster":5,"id":96,"label":"griffiths (2012)","scoreCitations":40,"scoreNormcitations":5.1429,"scorePubyear":2012,"source":"psychological bulletin, 138(3), 415-422","title":"how the bayesians got their beliefs (and what those beliefs actually are): comment on bowers and davis (2012)","url":"http://dx.doi.org/10.1037/a0026884","weightCitations":40,"weightLinks":2,"weightNormcitations":5.1429,"x":-0.5663,"y":-0.0822,"year":"2012"},{"authors":"tooby, j; cosmides, l; barrett, hc","cluster":18,"id":97,"label":"tooby (2003)","scoreCitations":40,"scoreNormcitations":1.4903,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 858-865","title":"the second law of thermodynamics is the first law of psychology: evolutionary developmental psychology and the theory of tandem, coordinated inheritances: comment on lickliter and honeycutt (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.858","weightCitations":40,"weightLinks":1,"weightNormcitations":1.4903,"x":0.307,"y":-0.5744,"year":"2003"},{"authors":"ondersma, sj; chaffin, m; berliner, l; cordon, i; goodman, gs; barnett, d","cluster":66,"id":98,"label":"ondersma (2001)","scoreCitations":40,"scoreNormcitations":3.0303,"scorePubyear":2001,"source":"psychological bulletin, 127(6), 707-714","title":"sex with children is abuse: comment on rind, tromovitch, and bauserman (1998)","url":"http://dx.doi.org/10.1037//0033-2909.127.6.707","weightCitations":40,"weightLinks":1,"weightNormcitations":3.0303,"x":0.5556,"y":-0.4571,"year":"2001"},{"authors":"heckhausen, j; schulz, r","cluster":184,"id":99,"label":"heckhausen (1999)","scoreCitations":40,"scoreNormcitations":0.9537,"scorePubyear":1999,"source":"psychological review, 106(3), 605-609","title":"the primacy of primary control is a human universal: a reply to gould's (1999) critique of the life-span theory of control","url":"http://dx.doi.org/10.1037/0033-295x.106.3.605","weightCitations":40,"weightLinks":0,"weightNormcitations":0.9537,"x":0.004,"y":0.3706,"year":"1999"},{"authors":"mischel, w; peake, pk","cluster":23,"id":100,"label":"mischel (1983)","scoreCitations":40,"scoreNormcitations":3.3684,"scorePubyear":1983,"source":"psychological review, 90(4), 394-402","title":"some facets of consistency - reply to epstein, funder, and bem","url":"http://dx.doi.org/10.1037/0033-295x.90.4.394","weightCitations":40,"weightLinks":3,"weightNormcitations":3.3684,"x":0.0124,"y":-0.9515,"year":"1983"},{"authors":"frieze, ih","cluster":8,"id":101,"label":"frieze (2000)","scoreCitations":39,"scoreNormcitations":1.0142,"scorePubyear":2000,"source":"psychological bulletin, 126(5), 681-684","title":"violence in close relationships-development of a research area: comment on archer (2000)","url":"http://dx.doi.org/10.1037//0033-2909.126.5.681","weightCitations":39,"weightLinks":2,"weightNormcitations":1.0142,"x":0.3401,"y":-0.026,"year":"2000"},{"authors":"batchelder, wh; riefer, dm; hu, xg","cluster":185,"id":102,"label":"batchelder (1994)","scoreCitations":38,"scoreNormcitations":0.6257,"scorePubyear":1994,"source":"psychological review, 101(1), 172-176","title":"measuring memory factors in-source monitoring - reply","url":"http://dx.doi.org/10.1037/0033-295x.101.1.172","weightCitations":38,"weightLinks":0,"weightNormcitations":0.6257,"x":0.1809,"y":-0.6427,"year":"1994"},{"authors":"bushman, bj; rothstein, hr; anderson, ca","cluster":17,"id":103,"label":"bushman (2010)","scoreCitations":37,"scoreNormcitations":1.6341,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 182-187","title":"much ado about something: violent video game effects and a school of red herring: reply to ferguson and kilburn (2010)","url":"http://dx.doi.org/10.1037/a0018718","weightCitations":37,"weightLinks":2,"weightNormcitations":1.6341,"x":0.1489,"y":0.1249,"year":"2010"},{"authors":"birnbaum, mh","cluster":2,"id":104,"label":"birnbaum (2008)","scoreCitations":37,"scoreNormcitations":2.0556,"scorePubyear":2008,"source":"psychological review, 115(1), 253-260","title":"evaluation of the priority heuristic as a descriptive model of risky decision making: comment on brandstatter, gigerenzer, and hertwig (2006)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.253","weightCitations":37,"weightLinks":3,"weightNormcitations":2.0556,"x":-0.3096,"y":-0.0972,"year":"2008"},{"authors":"howard, ki; krause, ms; saunders, sm; kopta, sm","cluster":38,"id":105,"label":"howard (1997)","scoreCitations":37,"scoreNormcitations":0.7337,"scorePubyear":1997,"source":"psychological bulletin, 122(3), 221-225","title":"trials and tribulations in the meta-analysis of treatment differences: comment","url":"http://dx.doi.org/10.1037/0033-2909.122.3.221","weightCitations":37,"weightLinks":1,"weightNormcitations":0.7337,"x":-0.0401,"y":-0.785,"year":"1997"},{"authors":"gibson, jj","cluster":186,"id":106,"label":"gibson (1952)","scoreCitations":37,"scoreNormcitations":3.8657,"scorePubyear":1952,"source":"psychological review, 59(2), 149-151","title":"the visual field and the visual world - a reply to boring","url":"http://dx.doi.org/10.1037/h0059018","weightCitations":37,"weightLinks":0,"weightNormcitations":3.8657,"x":-0.4123,"y":0.8103,"year":"1952"},{"authors":"holden, gw","cluster":21,"id":107,"label":"holden (2002)","scoreCitations":36,"scoreNormcitations":0.6796,"scorePubyear":2002,"source":"psychological bulletin, 128(4), 590-595","title":"perspectives on the effects of corporal punishment: comment on gershoff (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.4.590","weightCitations":36,"weightLinks":2,"weightNormcitations":0.6796,"x":0.4362,"y":-0.9464,"year":"2002"},{"authors":"storm, l; ertel, s","cluster":67,"id":108,"label":"storm (2001)","scoreCitations":36,"scoreNormcitations":2.7273,"scorePubyear":2001,"source":"psychological bulletin, 127(3), 424-433","title":"does psi exist? comments on milton and wiseman's (1999) meta-analysis of ganzfeld research","url":"http://dx.doi.org/10.1037/0033-2909.127.3.424","weightCitations":36,"weightLinks":1,"weightNormcitations":2.7273,"x":-0.161,"y":-0.5103,"year":"2001"},{"authors":"o'leary, kd","cluster":8,"id":109,"label":"o'leary (2000)","scoreCitations":36,"scoreNormcitations":0.9362,"scorePubyear":2000,"source":"psychological bulletin, 126(5), 685-689","title":"are women really more aggressive than men in intimate relationships? comment on archer (2000)","url":"http://dx.doi.org/10.1037/0033-2909.126.5.685","weightCitations":36,"weightLinks":2,"weightNormcitations":0.9362,"x":0.3197,"y":-0.0132,"year":"2000"},{"authors":"neiss, r","cluster":187,"id":110,"label":"neiss (1990)","scoreCitations":36,"scoreNormcitations":1.6531,"scorePubyear":1990,"source":"psychological bulletin, 107(1), 101-105","title":"ending arousals reign of error - a reply","url":"http://dx.doi.org/10.1037//0033-2909.107.1.101","weightCitations":36,"weightLinks":0,"weightNormcitations":1.6531,"x":0.7541,"y":-0.1403,"year":"1990"},{"authors":"plaut, dc; mcclelland, jl","cluster":3,"id":111,"label":"plaut (2010)","scoreCitations":35,"scoreNormcitations":1.5457,"scorePubyear":2010,"source":"psychological review, 117(1), 284-290","title":"locating object knowledge in the brain: comment on bowers's (2009) attempt to revive the grandmother cell hypothesis","url":"http://dx.doi.org/10.1037/a0017101","weightCitations":35,"weightLinks":2,"weightNormcitations":1.5457,"x":-0.7297,"y":-0.0825,"year":"2010"},{"authors":"weisz, jr; weersing, vr; henggeler, sw","cluster":12,"id":112,"label":"weisz (2005)","scoreCitations":35,"scoreNormcitations":1.5789,"scorePubyear":2005,"source":"psychological bulletin, 131(3), 418-426","title":"jousting with straw men: comment on westen, novotny, and thompson-brenner (2004)","url":"http://dx.doi.org/10.1037/0033-2909.131.3.418","weightCitations":35,"weightLinks":2,"weightNormcitations":1.5789,"x":0.2411,"y":0.4245,"year":"2005"},{"authors":"feyereisen, p","cluster":20,"id":113,"label":"feyereisen (1987)","scoreCitations":35,"scoreNormcitations":0.2998,"scorePubyear":1987,"source":"psychological review, 94(4), 493-498","title":"gestures and speech, interactions and separations - a reply","url":"http://dx.doi.org/10.1037//0033-295x.94.4.493","weightCitations":35,"weightLinks":4,"weightNormcitations":0.2998,"x":-0.9172,"y":0.4584,"year":"1987"},{"authors":"westen, d; novotny, cm; thompson-brenner, h","cluster":12,"id":114,"label":"westen (2005)","scoreCitations":34,"scoreNormcitations":1.5338,"scorePubyear":2005,"source":"psychological bulletin, 131(3), 427-433","title":"ebp not equal est: reply to crits-christoph et al. (2005) and weisz et al. (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.3.427","weightCitations":34,"weightLinks":3,"weightNormcitations":1.5338,"x":0.2522,"y":0.4228,"year":"2005"},{"authors":"ruml, w; caramazza, a","cluster":3,"id":115,"label":"ruml (2000)","scoreCitations":34,"scoreNormcitations":0.8842,"scorePubyear":2000,"source":"psychological review, 107(3), 609-634","title":"an evaluation of a computational model of lexical access: comment on dell et al. (1997)","url":"http://dx.doi.org/10.1037/0033-295x.107.3.609","weightCitations":34,"weightLinks":4,"weightNormcitations":0.8842,"x":-0.713,"y":-0.1744,"year":"2000"},{"authors":"van der helm, pa; leeuwenberg, elj","cluster":39,"id":116,"label":"van der helm (1999)","scoreCitations":34,"scoreNormcitations":0.8107,"scorePubyear":1999,"source":"psychological review, 106(3), 622-630","title":"a better approach to goodness: reply to wagemans (1999)","url":"http://dx.doi.org/10.1037//0033-295x.106.3.622","weightCitations":34,"weightLinks":1,"weightNormcitations":0.8107,"x":-0.6112,"y":0.1234,"year":"1999"},{"authors":"allan, lg; siegel, s","cluster":29,"id":117,"label":"allan (1986)","scoreCitations":34,"scoreNormcitations":2.0437,"scorePubyear":1986,"source":"psychological bulletin, 100(3), 388-393","title":"mccollough effects as conditioned-responses - reply","url":"http://dx.doi.org/10.1037//0033-2909.100.3.388","weightCitations":34,"weightLinks":3,"weightNormcitations":2.0437,"x":-0.8241,"y":0.0812,"year":"1986"},{"authors":"ryan, rm; deci, el","cluster":10,"id":118,"label":"ryan (2004)","scoreCitations":33,"scoreNormcitations":1.4235,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 473-477","title":"avoiding death or engaging life as accounts of meaning and culture: comment on pyszczynski et al. (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.473","weightCitations":33,"weightLinks":1,"weightNormcitations":1.4235,"x":0.1591,"y":0.7952,"year":"2004"},{"authors":"mellers, ba; mcgraw, ap","cluster":1,"id":119,"label":"mellers (1999)","scoreCitations":32,"scoreNormcitations":0.763,"scorePubyear":1999,"source":"psychological review, 106(2), 417-424","title":"how to improve bayesian reasoning: comment on gigerenzer and hoffrage (1995)","url":"http://dx.doi.org/10.1037/0033-295x.106.2.417","weightCitations":32,"weightLinks":2,"weightNormcitations":0.763,"x":0.4958,"y":-0.6077,"year":"1999"},{"authors":"seward, gh; wagner, ps; heinrich, jf; bloch, sk; myerhoff, hl","cluster":68,"id":120,"label":"seward (1965)","scoreCitations":32,"scoreNormcitations":2.4202,"scorePubyear":1965,"source":"psychosomatic medicine, 27(6), 533-545","title":"the question of psychophysiologic infertility - some negative answers","weightCitations":32,"weightLinks":1,"weightNormcitations":2.4202,"x":0.1282,"y":-0.0516,"year":"1965"},{"authors":"kimmel, hd","cluster":69,"id":121,"label":"kimmel (1964)","scoreCitations":32,"scoreNormcitations":3.5556,"scorePubyear":1964,"source":"psychological review, 71(2), 160-166","title":"further analysis of gsr conditioning - a reply to stewart, stern, winokur, and fredman","url":"http://dx.doi.org/10.1037/h0046898","weightCitations":32,"weightLinks":1,"weightNormcitations":3.5556,"x":0.2355,"y":1.0412,"year":"1964"},{"authors":"alvarez-jimenez, m; gleeson, jf; cotton, sm; wade, d; crisp, k; yap, mbh; mcgorry, pd","cluster":188,"id":122,"label":"alvarez-jimenez (2010)","scoreCitations":31,"scoreNormcitations":1.3691,"scorePubyear":2010,"source":"psychological medicine, 40(1), 63-72","title":"differential predictors of critical comments and emotional over-involvement in first-episode psychosis","url":"http://dx.doi.org/10.1017/s0033291708004765","weightCitations":31,"weightLinks":0,"weightNormcitations":1.3691,"x":-0.1035,"y":-0.0181,"year":"2010"},{"authors":"skinner, ea","cluster":70,"id":123,"label":"skinner (2007)","scoreCitations":31,"scoreNormcitations":3.1434,"scorePubyear":2007,"source":"psychological bulletin, 133(6), 911-916","title":"secondary control critiqued: is it secondary? is it control? comment on morling and evered (2006)","url":"http://dx.doi.org/10.1037/0033-2909.133.6.911","weightCitations":31,"weightLinks":1,"weightNormcitations":3.1434,"x":-0.0298,"y":1.0686,"year":"2007"},{"authors":"gershoff, et","cluster":21,"id":124,"label":"gershoff (2002)","scoreCitations":31,"scoreNormcitations":0.5853,"scorePubyear":2002,"source":"psychological bulletin, 128(4), 602-611","title":"corporal punishment, physical abuse, and the burden of proof: reply to baumrind, larzelere, and cowan (2002), holden (2002), and parke (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.4.602","weightCitations":31,"weightLinks":4,"weightNormcitations":0.5853,"x":0.4286,"y":-0.9402,"year":"2002"},{"authors":"wellman, hm","cluster":40,"id":125,"label":"wellman (1998)","scoreCitations":31,"scoreNormcitations":2.3527,"scorePubyear":1998,"source":"psychological bulletin, 123(1), 33-36","title":"culture, variation, and levels of analysis in folk psychologies: comment on lillard (1998)","url":"http://dx.doi.org/10.1037//0033-2909.123.1.33","weightCitations":31,"weightLinks":1,"weightNormcitations":2.3527,"x":-0.0983,"y":-0.4468,"year":"1998"},{"authors":"horn, jl; knapp, jr","cluster":71,"id":126,"label":"horn (1974)","scoreCitations":31,"scoreNormcitations":3.0563,"scorePubyear":1974,"source":"psychological bulletin, 81(8), 502-504","title":"30 wrongs do not make a right - reply","url":"http://dx.doi.org/10.1037/h0036784","weightCitations":31,"weightLinks":1,"weightNormcitations":3.0563,"x":-0.4583,"y":0.3736,"year":"1974"},{"authors":"leary, mr","cluster":10,"id":127,"label":"leary (2004)","scoreCitations":30,"scoreNormcitations":1.2941,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 478-482","title":"the function of self-esteem in terror management theory and sociometer theory: comment on pyszczynski et al. (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.478","weightCitations":30,"weightLinks":1,"weightNormcitations":1.2941,"x":0.1705,"y":0.7857,"year":"2004"},{"authors":"simon, ha; gobet, f","cluster":27,"id":128,"label":"simon (2000)","scoreCitations":30,"scoreNormcitations":0.7801,"scorePubyear":2000,"source":"psychological review, 107(3), 593-600","title":"expertise effects in memory recall: comment on vicente and wang (1998)","url":"http://dx.doi.org/10.1037//0033-295x.107.3.593","weightCitations":30,"weightLinks":2,"weightNormcitations":0.7801,"x":0.9183,"y":0.1276,"year":"2000"},{"authors":"glucksberg, s; mcglone, ms; keysar, b","cluster":189,"id":129,"label":"glucksberg (1992)","scoreCitations":30,"scoreNormcitations":2.6471,"scorePubyear":1992,"source":"psychological review, 99(3), 578-581","title":"metaphor understanding and accessing conceptual schema - reply","weightCitations":30,"weightLinks":0,"weightNormcitations":2.6471,"x":-0.3902,"y":-0.7229,"year":"1992"},{"authors":"durlak, ja","cluster":72,"id":130,"label":"durlak (1981)","scoreCitations":30,"scoreNormcitations":0.3348,"scorePubyear":1981,"source":"psychological bulletin, 89(3), 566-569","title":"evaluating comparative studies of paraprofessional and professional helpers - a reply to nietzel and fisher","url":"http://dx.doi.org/10.1037//0033-2909.89.3.566","weightCitations":30,"weightLinks":1,"weightNormcitations":0.3348,"x":-0.8065,"y":-0.3496,"year":"1981"},{"authors":"hershberger, wa","cluster":190,"id":131,"label":"hershberger (1967)","scoreCitations":30,"scoreNormcitations":2.5862,"scorePubyear":1967,"source":"psychological review, 74(3), 235","title":"comment on apparent reversal (oscillation) of rotary motion in depth","url":"http://dx.doi.org/10.1037/h0024484","weightCitations":30,"weightLinks":0,"weightNormcitations":2.5862,"x":-0.6436,"y":0.0395,"year":"1967"},{"authors":"rachman, s; eysenck, hj","cluster":73,"id":132,"label":"rachman (1966)","scoreCitations":30,"scoreNormcitations":2.2222,"scorePubyear":1966,"source":"psychological bulletin, 65(3), 165","title":"reply to a critique and reformulation of behavior therapy","url":"http://dx.doi.org/10.1037/h0023057","weightCitations":30,"weightLinks":1,"weightNormcitations":2.2222,"x":-0.5614,"y":0.8939,"year":"1966"},{"authors":"borsboom, d; dolan, cv","cluster":191,"id":133,"label":"borsboom (2006)","scoreCitations":29,"scoreNormcitations":1.9701,"scorePubyear":2006,"source":"psychological review, 113(2), 433-437","title":"why g is not an adaptation: a comment on kanazawa (2004)","url":"http://dx.doi.org/10.1037/0033-295x.113.2.433","weightCitations":29,"weightLinks":0,"weightNormcitations":1.9701,"x":-0.5336,"y":-0.6556,"year":"2006"},{"authors":"wickens, td; hirshman, e","cluster":4,"id":134,"label":"wickens (2000)","scoreCitations":29,"scoreNormcitations":0.7541,"scorePubyear":2000,"source":"psychological review, 107(2), 377-383","title":"false memories and statistical decision theory: comment on miller and wolford (1999) and roediger and mcdermott (1999)","url":"http://dx.doi.org/10.1037/0033-295x.107.2.377","weightCitations":29,"weightLinks":1,"weightNormcitations":0.7541,"x":0.4186,"y":-0.4673,"year":"2000"},{"authors":"treisman, a","cluster":192,"id":135,"label":"treisman (1990)","scoreCitations":29,"scoreNormcitations":1.3316,"scorePubyear":1990,"source":"psychological review, 97(3), 460-463","title":"variations on the theme of feature integration - reply","weightCitations":29,"weightLinks":0,"weightNormcitations":1.3316,"x":-0.3519,"y":0.8751,"year":"1990"},{"authors":"anderson, nh","cluster":193,"id":136,"label":"anderson (1969)","scoreCitations":29,"scoreNormcitations":1.2254,"scorePubyear":1969,"source":"psychological bulletin, 72(1), 63","title":"comment on an analysis-of-variance model for assessment of configural cue utilization in clinical judgment","url":"http://dx.doi.org/10.1037/h0027420","weightCitations":29,"weightLinks":0,"weightNormcitations":1.2254,"x":-0.45,"y":0.6977,"year":"1969"},{"authors":"vogel, w; broverman, dm","cluster":194,"id":137,"label":"vogel (1966)","scoreCitations":29,"scoreNormcitations":2.1481,"scorePubyear":1966,"source":"psychological bulletin, 65(2), 99","title":"a reply to relationship between eeg and test intelligence - a commentary","url":"http://dx.doi.org/10.1037/h0022863","weightCitations":29,"weightLinks":0,"weightNormcitations":2.1481,"x":-0.3794,"y":0.9465,"year":"1966"},{"authors":"ward, jh","cluster":195,"id":138,"label":"ward (1962)","scoreCitations":29,"scoreNormcitations":1.1373,"scorePubyear":1962,"source":"psychological bulletin, 59(1), 74-76","title":"comments on the paramorphic representation of clinical judgment","url":"http://dx.doi.org/10.1037/h0045341","weightCitations":29,"weightLinks":0,"weightNormcitations":1.1373,"x":0.7614,"y":-0.2053,"year":"1962"},{"authors":"ullman, m","cluster":196,"id":139,"label":"ullman (1959)","scoreCitations":29,"scoreNormcitations":2.3514,"scorePubyear":1959,"source":"psychosomatic medicine, 21(6), 473-488","title":"on the psyche and warts .1. suggestion and warts - a review and comment","weightCitations":29,"weightLinks":0,"weightNormcitations":2.3514,"x":-0.5528,"y":-0.7838,"year":"1959"},{"authors":"cave, kr; bush, ws; taylor, tgg","cluster":197,"id":140,"label":"cave (2010)","scoreCitations":28,"scoreNormcitations":1.2366,"scorePubyear":2010,"source":"psychological review, 117(2), 685-695","title":"split attention as part of a flexible attentional system for complex scenes: comment on jans, peters, and de weerd (2010)","url":"http://dx.doi.org/10.1037/a0019083","weightCitations":28,"weightLinks":0,"weightNormcitations":1.2366,"x":-0.1225,"y":0.7947,"year":"2010"},{"authors":"coltheart, m; tree, jj; saunders, sj","cluster":5,"id":141,"label":"coltheart (2010)","scoreCitations":28,"scoreNormcitations":1.2366,"scorePubyear":2010,"source":"psychological review, 117(1), 256-271","title":"computational modeling of reading in semantic dementia: comment on woollams, lambon ralph, plaut, and patterson (2007)","url":"http://dx.doi.org/10.1037/a0015948","weightCitations":28,"weightLinks":2,"weightNormcitations":1.2366,"x":-0.5281,"y":-0.1155,"year":"2010"},{"authors":"anderson, bl","cluster":74,"id":142,"label":"anderson (2007)","scoreCitations":28,"scoreNormcitations":2.8392,"scorePubyear":2007,"source":"psychological review, 114(2), 470-487","title":"the demise of the identity hypothesis and the insufficiency and nonnecessity of contour relatability in predicting object interpolation: comment on kellman, garrigan, and shipley (2005)","url":"http://dx.doi.org/10.1037/0033-295x.114.2.470","weightCitations":28,"weightLinks":1,"weightNormcitations":2.8392,"x":-1.0645,"y":-0.0575,"year":"2007"},{"authors":"ablon, js; marci, c","cluster":12,"id":143,"label":"ablon (2004)","scoreCitations":28,"scoreNormcitations":1.2078,"scorePubyear":2004,"source":"psychological bulletin, 130(4), 664-668","title":"psychotherapy process: the missing link: comment on westen, novotny, and thompson-brenner (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.4.664","weightCitations":28,"weightLinks":1,"weightNormcitations":1.2078,"x":0.2163,"y":0.4164,"year":"2004"},{"authors":"caplan, d; waters, g","cluster":5,"id":144,"label":"caplan (2002)","scoreCitations":28,"scoreNormcitations":0.5286,"scorePubyear":2002,"source":"psychological review, 109(1), 66-74","title":"working memory and connectionist models of parsing: a reply to macdonald and christiansen (2002)","url":"http://dx.doi.org/10.1037//0033-295x.109.1.66","weightCitations":28,"weightLinks":4,"weightNormcitations":0.5286,"x":-0.5833,"y":-0.1921,"year":"2002"},{"authors":"holtgraves, t","cluster":198,"id":145,"label":"holtgraves (1998)","scoreCitations":28,"scoreNormcitations":2.125,"scorePubyear":1998,"source":"cognitive psychology, 37(1), 1-27","title":"interpreting indirect replies","url":"http://dx.doi.org/10.1006/cogp.1998.0689","weightCitations":28,"weightLinks":0,"weightNormcitations":2.125,"x":-0.2776,"y":-0.8639,"year":"1998"},{"authors":"chein, i","cluster":199,"id":146,"label":"chein (1948)","scoreCitations":28,"scoreNormcitations":1.9649,"scorePubyear":1948,"source":"psychological review, 55(3), 175-188","title":"behavior theory and the behavior of attitudes - some critical comments","url":"http://dx.doi.org/10.1037/h0054019","weightCitations":28,"weightLinks":0,"weightNormcitations":1.9649,"x":-0.075,"y":-0.3567,"year":"1948"},{"authors":"quiroga, rq; kreiman, g","cluster":3,"id":147,"label":"quiroga (2010)","scoreCitations":27,"scoreNormcitations":1.1924,"scorePubyear":2010,"source":"psychological review, 117(1), 291-297","title":"measuring sparseness in the brain: comment on bowers (2009)","url":"http://dx.doi.org/10.1037/a0016917","weightCitations":27,"weightLinks":1,"weightNormcitations":1.1924,"x":-0.7433,"y":-0.0528,"year":"2010"},{"authors":"plaut, dc; booth, jr","cluster":200,"id":148,"label":"plaut (2006)","scoreCitations":27,"scoreNormcitations":1.8342,"scorePubyear":2006,"source":"psychological review, 113(1), 196-200","title":"more modeling but still no stages: reply to borowsky and besner","url":"http://dx.doi.org/10.1037/0033-295x.113.1.196","weightCitations":27,"weightLinks":0,"weightNormcitations":1.8342,"x":-0.8223,"y":0.4334,"year":"2006"},{"authors":"funder, dc","cluster":23,"id":149,"label":"funder (1983)","scoreCitations":27,"scoreNormcitations":2.2737,"scorePubyear":1983,"source":"psychological review, 90(3), 283-289","title":"3 issues in predicting more of the people - reply","url":"http://dx.doi.org/10.1037/0033-295x.90.3.283","weightCitations":27,"weightLinks":1,"weightNormcitations":2.2737,"x":0.0148,"y":-0.9431,"year":"1983"},{"authors":"jay, tb","cluster":201,"id":150,"label":"jay (1980)","scoreCitations":27,"scoreNormcitations":2.7,"scorePubyear":1980,"source":"psychological bulletin, 88(3), 614-621","title":"sex-roles and dirty word usage - a review of the literature and a reply to haas","url":"http://dx.doi.org/10.1037/0033-2909.88.3.614","weightCitations":27,"weightLinks":0,"weightNormcitations":2.7,"x":-0.7346,"y":0.4968,"year":"1980"},{"authors":"davis, jm; gosenfeld, l; tsai, cc","cluster":202,"id":151,"label":"davis (1976)","scoreCitations":27,"scoreNormcitations":2.3625,"scorePubyear":1976,"source":"psychological bulletin, 83(3), 431-447","title":"maintenance antipsychotic-drugs do prevent relapse - reply to tobias and macdonald","url":"http://dx.doi.org/10.1037//0033-2909.83.3.431","weightCitations":27,"weightLinks":0,"weightNormcitations":2.3625,"x":-0.4543,"y":-0.4298,"year":"1976"},{"authors":"lindquist, ka; siegel, eh; quigley, ks; barrett, lf","cluster":75,"id":152,"label":"lindquist (2013)","scoreCitations":26,"scoreNormcitations":6.5455,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 255-263","title":"the hundred-year emotion war: are emotions natural kinds or psychological constructions? comment on lench, flores, and bench (2011)","url":"http://dx.doi.org/10.1037/a0029038","weightCitations":26,"weightLinks":1,"weightNormcitations":6.5455,"x":0.4799,"y":0.9581,"year":"2013"},{"authors":"rohling, ml; larrabee, gj; greiffenstein, mf; ben-porath, ys; lees-haley, p; green, p; greve, kw","cluster":104,"id":153,"label":"rohling (2011)","scoreCitations":26,"scoreNormcitations":2.9059,"scorePubyear":2011,"source":"psychological bulletin, 137(4), 708-712","title":"a misleading review of response bias: comment on mcgrath, mitchell, kim, and hough (2010)","url":"http://dx.doi.org/10.1037/a0023327","weightCitations":26,"weightLinks":1,"weightNormcitations":2.9059,"x":-0.474,"y":-0.6996,"year":"2011"},{"authors":"klauer, kc; kellen, d","cluster":4,"id":154,"label":"klauer (2011)","scoreCitations":26,"scoreNormcitations":2.9059,"scorePubyear":2011,"source":"psychological review, 118(1), 164-173","title":"assessing the belief bias effect with rocs: reply to dube, rotello, and heit (2010)","url":"http://dx.doi.org/10.1037/a0020698","weightCitations":26,"weightLinks":3,"weightNormcitations":2.9059,"x":0.4171,"y":-0.4582,"year":"2011"},{"authors":"wood, ac; buitelaar, j; rijsdijk, f; asherson, p; kuntsi, j","cluster":203,"id":155,"label":"wood (2010)","scoreCitations":26,"scoreNormcitations":1.1483,"scorePubyear":2010,"source":"psychological bulletin, 136(3), 331-340","title":"rethinking shared environment as a source of variance underlying attention-deficit/hyperactivity disorder symptoms: comment on burt (2009)","url":"http://dx.doi.org/10.1037/a0019048","weightCitations":26,"weightLinks":0,"weightNormcitations":1.1483,"x":-0.6668,"y":0.6973,"year":"2010"},{"authors":"brown, gda; neath, i; chater, n","cluster":100,"id":156,"label":"brown (2008)","scoreCitations":26,"scoreNormcitations":1.4444,"scorePubyear":2008,"source":"psychological review, 115(3), 781-785","title":"serial and free recall: common effects and common mechanisms? a reply to murdock (2008)","url":"http://dx.doi.org/10.1037/a0012563","weightCitations":26,"weightLinks":1,"weightNormcitations":1.4444,"x":-0.3841,"y":0.4294,"year":"2008"},{"authors":"taylor, s; mckay, d; abramowitz, js","cluster":204,"id":157,"label":"taylor (2005)","scoreCitations":26,"scoreNormcitations":1.1729,"scorePubyear":2005,"source":"psychological review, 112(3), 650-656","title":"is obsessive-compulsive disorder a disturbance of security motivation? comment on szechtman and woody (2004)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.650","weightCitations":26,"weightLinks":0,"weightNormcitations":1.1729,"x":-0.3441,"y":0.7556,"year":"2005"},{"authors":"crits-christoph, p; wilson, gt; hollon, sd","cluster":12,"id":158,"label":"crits-christoph (2005)","scoreCitations":26,"scoreNormcitations":1.1729,"scorePubyear":2005,"source":"psychological bulletin, 131(3), 412-417","title":"empirically supported psychotherapies: comment on westen, novotny, and thompson-brenner (2004)","url":"http://dx.doi.org/10.1037/0033-2909.131.3.412","weightCitations":26,"weightLinks":1,"weightNormcitations":1.1729,"x":0.2609,"y":0.4214,"year":"2005"},{"authors":"wagemans, j","cluster":39,"id":159,"label":"wagemans (1999)","scoreCitations":26,"scoreNormcitations":0.6199,"scorePubyear":1999,"source":"psychological review, 106(3), 610-621","title":"toward a better approach to goodness: comments on van der helm and leeuwenberg (1996)","url":"http://dx.doi.org/10.1037//0033-295x.106.3.610","weightCitations":26,"weightLinks":1,"weightNormcitations":0.6199,"x":-0.6011,"y":0.116,"year":"1999"},{"authors":"wickens, td","cluster":205,"id":160,"label":"wickens (1998)","scoreCitations":26,"scoreNormcitations":1.9732,"scorePubyear":1998,"source":"psychological review, 105(2), 379-386","title":"on the form of the retention function: comment on rubin and wenzel (1996): a quantitative description of retention","url":"http://dx.doi.org/10.1037/0033-295x.105.2.379","weightCitations":26,"weightLinks":0,"weightNormcitations":1.9732,"x":0.1182,"y":0.3858,"year":"1998"},{"authors":"jackson, wj","cluster":206,"id":161,"label":"jackson (1968)","scoreCitations":26,"scoreNormcitations":1.1927,"scorePubyear":1968,"source":"psychological bulletin, 69(1), 20","title":"a comment on hippocampus and behavior","url":"http://dx.doi.org/10.1037/h0025304","weightCitations":26,"weightLinks":0,"weightNormcitations":1.1927,"x":-0.1461,"y":0.8581,"year":"1968"},{"authors":"szasz, ts","cluster":207,"id":162,"label":"szasz (1949)","scoreCitations":26,"scoreNormcitations":1.9623,"scorePubyear":1949,"source":"psychosomatic medicine, 11(4), 187-199","title":"psychiatric aspects of vagotomy .2. a psychiatric study of vagotomized ulcer patients with comments on prognosis","weightCitations":26,"weightLinks":0,"weightNormcitations":1.9623,"x":-0.8548,"y":-0.6656,"year":"1949"},{"authors":"saroglou, v","cluster":41,"id":163,"label":"saroglou (2012)","scoreCitations":25,"scoreNormcitations":3.2143,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 907-912","title":"is religion not prosocial at all? comment on galen (2012)","url":"http://dx.doi.org/10.1037/a0028927","weightCitations":25,"weightLinks":1,"weightNormcitations":3.2143,"x":-0.5296,"y":-0.3982,"year":"2012"},{"authors":"bremner, jd","cluster":30,"id":164,"label":"bremner (2010)","scoreCitations":25,"scoreNormcitations":1.1041,"scorePubyear":2010,"source":"psychological bulletin, 136(1), 1-6","title":"cognitive processes in dissociation: comment on giesbrecht et al. (2008)","url":"http://dx.doi.org/10.1037/a0018021","weightCitations":25,"weightLinks":2,"weightNormcitations":1.1041,"x":0.5118,"y":0.2213,"year":"2010"},{"authors":"watson, d","cluster":42,"id":165,"label":"watson (2009)","scoreCitations":25,"scoreNormcitations":3.7109,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 205-208","title":"locating anger in the hierarchical structure of affect: comment on carver and harmon-jones (2009)","url":"http://dx.doi.org/10.1037/a0014413","weightCitations":25,"weightLinks":1,"weightNormcitations":3.7109,"x":-0.1781,"y":0.1563,"year":"2009"},{"authors":"kellman, pj; garrigan, p; shipley, tf; keane, bp","cluster":74,"id":166,"label":"kellman (2007)","scoreCitations":25,"scoreNormcitations":2.535,"scorePubyear":2007,"source":"psychological review, 114(2), 488-502","title":"interpolation processes in object perception: reply to anderson (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.2.488","weightCitations":25,"weightLinks":1,"weightNormcitations":2.535,"x":-1.0638,"y":-0.061,"year":"2007"},{"authors":"sheldon, km","cluster":0,"id":167,"label":"sheldon (2004)","scoreCitations":1,"scoreNormcitations":2004.0,"scorePubyear":25,"url":"sidelong","weightCitations":10,"weightLinks":0,"weightNormcitations":1.0},{"authors":"van der helm, pa; leeuwenberg, elj","cluster":39,"id":168,"label":"van der helm (2004)","scoreCitations":25,"scoreNormcitations":1.0784,"scorePubyear":2004,"source":"psychological review, 111(1), 261-273","title":"holographic goodness is not that bad: reply to olivers, chater, and watson (2004)","url":"http://dx.doi.org/10.1037/0033-295x.111.1.261","weightCitations":25,"weightLinks":2,"weightNormcitations":1.0784,"x":-0.6061,"y":0.1197,"year":"2004"},{"authors":"hill, ce; gelso, cj; mohr, jj","cluster":55,"id":169,"label":"hill (2000)","scoreCitations":25,"scoreNormcitations":0.6501,"scorePubyear":2000,"source":"psychological bulletin, 126(4), 495-500","title":"client concealment and self-presentation in therapy: comment on kelly (2000)","url":"http://dx.doi.org/10.1037//0033-2909.126.4.495","weightCitations":25,"weightLinks":1,"weightNormcitations":0.6501,"x":-0.1159,"y":-0.2802,"year":"2000"},{"authors":"lewis, c; keren, g","cluster":1,"id":170,"label":"lewis (1999)","scoreCitations":25,"scoreNormcitations":0.5961,"scorePubyear":1999,"source":"psychological review, 106(2), 411-416","title":"on the difficulties underlying bayesian reasoning: a comment on gigerenzer and hoffrage","url":"http://dx.doi.org/10.1037/0033-295x.106.2.411","weightCitations":25,"weightLinks":1,"weightNormcitations":0.5961,"x":0.4991,"y":-0.5787,"year":"1999"},{"authors":"kihlstrom, jf","cluster":9,"id":171,"label":"kihlstrom (1998)","scoreCitations":25,"scoreNormcitations":1.8973,"scorePubyear":1998,"source":"psychological bulletin, 123(2), 186-191","title":"dissociations and dissociation theory in hypnosis: comment on kirsch and lynn (1998)","weightCitations":25,"weightLinks":1,"weightNormcitations":1.8973,"x":0.3101,"y":-0.2741,"year":"1998"},{"authors":"breland, hm","cluster":208,"id":172,"label":"breland (1973)","scoreCitations":25,"scoreNormcitations":3.0797,"scorePubyear":1973,"source":"psychological bulletin, 80(3), 210-212","title":"birth-order effects - reply","url":"http://dx.doi.org/10.1037/h0034838","weightCitations":25,"weightLinks":0,"weightNormcitations":3.0797,"x":0.7831,"y":0.7409,"year":"1973"},{"authors":"ryan, ta","cluster":209,"id":173,"label":"ryan (1959)","scoreCitations":25,"scoreNormcitations":2.027,"scorePubyear":1959,"source":"psychological bulletin, 56(5), 394-396","title":"comments on orthogonal components","url":"http://dx.doi.org/10.1037/h0041280","weightCitations":25,"weightLinks":0,"weightNormcitations":2.027,"x":-0.5555,"y":-0.6003,"year":"1959"},{"authors":"hill, wf","cluster":52,"id":174,"label":"hill (1957)","scoreCitations":25,"scoreNormcitations":2.7027,"scorePubyear":1957,"source":"psychological bulletin, 54(6), 490-493","title":"comments on taylor drive theory and manifest anxiety","url":"http://dx.doi.org/10.1037/h0045709","weightCitations":25,"weightLinks":1,"weightNormcitations":2.7027,"x":-0.3624,"y":-0.4363,"year":"1957"},{"authors":"miller, ne","cluster":13,"id":175,"label":"miller (1951)","scoreCitations":25,"scoreNormcitations":1.3761,"scorePubyear":1951,"source":"psychological review, 58(5), 375-381","title":"multiple-process conceptions of learning - comments","url":"http://dx.doi.org/10.1037/h0054093","weightCitations":25,"weightLinks":1,"weightNormcitations":1.3761,"x":-0.4465,"y":-0.257,"year":"1951"},{"authors":"grammer, k; fink, b; moller, ap; manning, jt","cluster":210,"id":176,"label":"grammer (2005)","scoreCitations":24,"scoreNormcitations":1.0827,"scorePubyear":2005,"source":"psychological bulletin, 131(5), 658-661","title":"physical attractiveness and health: comment on weeden and sabini (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.5.658","weightCitations":24,"weightLinks":0,"weightNormcitations":1.0827,"x":-0.347,"y":0.8147,"year":"2005"},{"authors":"woody, e; sadler, p","cluster":9,"id":177,"label":"woody (1998)","scoreCitations":24,"scoreNormcitations":1.8214,"scorePubyear":1998,"source":"psychological bulletin, 123(2), 192-197","title":"on reintegrating dissociated theories: comment on kirsch and lynn (1998)","url":"http://dx.doi.org/10.1037//0033-2909.123.2.192","weightCitations":24,"weightLinks":2,"weightNormcitations":1.8214,"x":0.2897,"y":-0.2823,"year":"1998"},{"authors":"cross, se; madson, l","cluster":7,"id":178,"label":"cross (1997)","scoreCitations":24,"scoreNormcitations":0.4759,"scorePubyear":1997,"source":"psychological bulletin, 122(1), 51-55","title":"elaboration of models of the self: reply to baumeister and sommer (1997) and martin and ruble (1997)","weightCitations":24,"weightLinks":3,"weightNormcitations":0.4759,"x":-0.1452,"y":0.9767,"year":"1997"},{"authors":"fleiss, jl","cluster":211,"id":179,"label":"fleiss (1976)","scoreCitations":24,"scoreNormcitations":2.1,"scorePubyear":1976,"source":"psychological bulletin, 83(5), 774-775","title":"asserted paradox concerning measurement of change - comment","url":"http://dx.doi.org/10.1037//0033-2909.83.5.774","weightCitations":24,"weightLinks":0,"weightNormcitations":2.1,"x":0.6963,"y":-0.1739,"year":"1976"},{"authors":"breger, l; mcgaugh, jl","cluster":73,"id":180,"label":"breger (1966)","scoreCitations":24,"scoreNormcitations":1.7778,"scorePubyear":1966,"source":"psychological bulletin, 65(3), 170","title":"learning theory and behavior therapy - a reply to rachman and eysenck","url":"http://dx.doi.org/10.1037/h0023056","weightCitations":24,"weightLinks":1,"weightNormcitations":1.7778,"x":-0.5579,"y":0.8932,"year":"1966"},{"authors":"braine, mds","cluster":212,"id":181,"label":"braine (1965)","scoreCitations":24,"scoreNormcitations":1.8151,"scorePubyear":1965,"source":"psychological review, 72(6), 483-492","title":"on the basis of phrase structure - reply","url":"http://dx.doi.org/10.1037/h0022735","weightCitations":24,"weightLinks":0,"weightNormcitations":1.8151,"x":-0.417,"y":-0.5235,"year":"1965"},{"authors":"bruner, js","cluster":213,"id":182,"label":"bruner (1951)","scoreCitations":24,"scoreNormcitations":1.3211,"scorePubyear":1951,"source":"psychological review, 58(4), 306-312","title":"one kind of perception - reply","url":"http://dx.doi.org/10.1037/h0059692","weightCitations":24,"weightLinks":0,"weightNormcitations":1.3211,"x":0.7467,"y":0.2392,"year":"1951"},{"authors":"steeg, s; cooper, j","cluster":76,"id":183,"label":"steeg (2012)","scoreCitations":23,"scoreNormcitations":2.9571,"scorePubyear":2012,"source":"psychological medicine, 42(9), 2012-2013","title":"screening for suicide - reply","url":"http://dx.doi.org/10.1017/s0033291712001389","weightCitations":23,"weightLinks":1,"weightNormcitations":2.9571,"x":-0.1505,"y":0.0734,"year":"2012"},{"authors":"cheng, pw; novick, lr","cluster":46,"id":184,"label":"cheng (2005)","scoreCitations":23,"scoreNormcitations":1.0376,"scorePubyear":2005,"source":"psychological review, 112(3), 694-706","title":"constraints and nonconstraints in causal learning: reply to white (2005) and to luhmann and ahn (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.694","weightCitations":23,"weightLinks":2,"weightNormcitations":1.0376,"x":0.0204,"y":0.1173,"year":"2005"},{"authors":"horn, jl; cattell, rb","cluster":71,"id":185,"label":"horn (1982)","scoreCitations":23,"scoreNormcitations":0.5452,"scorePubyear":1982,"source":"psychological bulletin, 91(3), 623-633","title":"whimsy and misunderstandings of gf-gc theory - a comment","url":"http://dx.doi.org/10.1037//0033-2909.91.3.623","weightCitations":23,"weightLinks":1,"weightNormcitations":0.5452,"x":-0.4563,"y":0.3706,"year":"1982"},{"authors":"lazarus, rs","cluster":214,"id":186,"label":"lazarus (1956)","scoreCitations":23,"scoreNormcitations":1.6829,"scorePubyear":1956,"source":"psychological review, 63(5), 343-347","title":"subception - fact or artifact - a reply to eriksen","url":"http://dx.doi.org/10.1037/h0046434","weightCitations":23,"weightLinks":0,"weightNormcitations":1.6829,"x":0.0216,"y":-0.6505,"year":"1956"},{"authors":"usher, m; davelaar, ej; haarmann, hj; goshen-gottstein, y","cluster":94,"id":187,"label":"usher (2008)","scoreCitations":22,"scoreNormcitations":1.2222,"scorePubyear":2008,"source":"psychological review, 115(4), 1108-1116","title":"short-term memory after all: comment on sederberg, howard, and kahana (2008)","url":"http://dx.doi.org/10.1037/a0013725","weightCitations":22,"weightLinks":1,"weightNormcitations":1.2222,"x":0.7408,"y":0.0801,"year":"2008"},{"authors":"murdock, bb","cluster":215,"id":188,"label":"murdock (1985)","scoreCitations":22,"scoreNormcitations":2.0,"scorePubyear":1985,"source":"psychological review, 92(1), 130-132","title":"convolution and matrix systems - a reply","weightCitations":22,"weightLinks":0,"weightNormcitations":2.0,"x":0.4743,"y":0.8695,"year":"1985"},{"authors":"kraemer, hc","cluster":216,"id":189,"label":"kraemer (1982)","scoreCitations":22,"scoreNormcitations":0.5215,"scorePubyear":1982,"source":"psychological bulletin, 92(3), 749-754","title":"estimating false alarms and missed events from interobserver agreement - comment","url":"http://dx.doi.org/10.1037//0033-2909.92.3.749","weightCitations":22,"weightLinks":0,"weightNormcitations":0.5215,"x":-0.5916,"y":0.5974,"year":"1982"},{"authors":"lockhart, ra; grings, ww","cluster":217,"id":190,"label":"lockhart (1963)","scoreCitations":22,"scoreNormcitations":3.0877,"scorePubyear":1963,"source":"psychological review, 70(6), 562-564","title":"comments on an analysis of gsr conditioning","url":"http://dx.doi.org/10.1037/h0041696","weightCitations":22,"weightLinks":0,"weightNormcitations":3.0877,"x":0.852,"y":-0.5203,"year":"1963"},{"authors":"luce, rd","cluster":218,"id":191,"label":"luce (1962)","scoreCitations":22,"scoreNormcitations":0.8627,"scorePubyear":1962,"source":"psychological review, 69(6), 548-551","title":"on the possible psychophysical laws - comment","weightCitations":22,"weightLinks":0,"weightNormcitations":0.8627,"x":-0.7348,"y":-0.7847,"year":"1962"},{"authors":"gibson, jj; gibson, ej","cluster":219,"id":192,"label":"gibson (1955)","scoreCitations":22,"scoreNormcitations":0.9888,"scorePubyear":1955,"source":"psychological review, 62(6), 447-450","title":"what is learned in perceptual learning - a reply","url":"http://dx.doi.org/10.1037/h0048196","weightCitations":22,"weightLinks":0,"weightNormcitations":0.9888,"x":-0.0426,"y":0.1816,"year":"1955"},{"authors":"meehl, pe; maccorquodale, k","cluster":220,"id":193,"label":"meehl (1951)","scoreCitations":22,"scoreNormcitations":1.211,"scorePubyear":1951,"source":"psychological review, 58(3), 230-233","title":"some methodological comments concerning expectancy theory","url":"http://dx.doi.org/10.1037/h0056360","weightCitations":22,"weightLinks":0,"weightNormcitations":1.211,"x":0.5294,"y":-0.9391,"year":"1951"},{"authors":"allport, gw","cluster":221,"id":194,"label":"allport (1940)","scoreCitations":22,"scoreNormcitations":4.5833,"scorePubyear":1940,"source":"psychological review, 47, 533-554","title":"motivation in personality reply to mr bertocci","url":"http://dx.doi.org/10.1037/h0059220","weightCitations":22,"weightLinks":0,"weightNormcitations":4.5833,"x":-0.4525,"y":0.9754,"year":"1940"},{"authors":"botvinick, mm; plaut, dc","cluster":110,"id":195,"label":"botvinick (2006)","scoreCitations":21,"scoreNormcitations":1.4266,"scorePubyear":2006,"source":"psychological review, 113(4), 917-927","title":"such stuff as habits are made on: a reply to cooper and shallice (2006)","url":"http://dx.doi.org/10.1037/0033-295x.113.4.917","weightCitations":21,"weightLinks":1,"weightNormcitations":1.4266,"x":0.9472,"y":0.2512,"year":"2006"},{"authors":"petty, re; brinol, p","id":196,"label":"petty (2006)","scoreCitations":1,"scoreNormcitations":21.0,"scorePubyear":31,"url":"implicit","weightCitations":0,"weightNormcitations":-0.4844},{"authors":"greenwald, ag; rudman, la; nosek, ba; zayas, v","cluster":77,"id":197,"label":"greenwald (2006)","scoreCitations":21,"scoreNormcitations":1.4266,"scorePubyear":2006,"source":"psychological review, 113(1), 170-180","title":"why so little faith? a reply to blanton and jaccard's (2006) skeptical view of testing pure multiplicative theories","url":"http://dx.doi.org/10.1037/0033-295x.113.1.170","weightCitations":21,"weightLinks":1,"weightNormcitations":1.4266,"x":-0.2917,"y":-0.3613,"year":"2006"},{"authors":"juslin, p; olsson, h","cluster":1,"id":198,"label":"juslin (2005)","scoreCitations":21,"scoreNormcitations":0.9474,"scorePubyear":2005,"source":"psychological review, 112(1), 256-267","title":"capacity limitations and the detection of correlations: comment on kareev (2000)","url":"http://dx.doi.org/10.1037/0033-295x.112.1.256","weightCitations":21,"weightLinks":2,"weightNormcitations":0.9474,"x":0.4057,"y":-0.7079,"year":"2005"},{"authors":"buss, dm; reeve, hk","cluster":18,"id":199,"label":"buss (2003)","scoreCitations":21,"scoreNormcitations":0.7824,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 848-853","title":"evolutionary psychology and developmental dynamics: comment on lickliter and honeycutt (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.848","weightCitations":21,"weightLinks":1,"weightNormcitations":0.7824,"x":0.2827,"y":-0.5841,"year":"2003"},{"authors":"hyde, js; durik, am","cluster":58,"id":200,"label":"hyde (2000)","scoreCitations":21,"scoreNormcitations":0.5461,"scorePubyear":2000,"source":"psychological bulletin, 126(3), 375-379","title":"gender differences in erotic plasticity-evolutionary or sociocultural forces? comment on baumeister (2000)","weightCitations":21,"weightLinks":1,"weightNormcitations":0.5461,"x":-0.4461,"y":0.8861,"year":"2000"},{"authors":"cohen, jd; usher, m; mcclelland, jl","cluster":5,"id":201,"label":"cohen (1998)","scoreCitations":21,"scoreNormcitations":1.5938,"scorePubyear":1998,"source":"psychological review, 105(1), 188-194","title":"a pdp approach to set size effects within the stroop task: reply to kanne, balota, spieler, and faust (1998)","url":"http://dx.doi.org/10.1037/0033-295x.105.1.188","weightCitations":21,"weightLinks":1,"weightNormcitations":1.5938,"x":-0.5574,"y":-0.1414,"year":"1998"},{"authors":"hyman, r","cluster":22,"id":202,"label":"hyman (1994)","scoreCitations":21,"scoreNormcitations":0.3458,"scorePubyear":1994,"source":"psychological bulletin, 115(1), 19-24","title":"anomaly or artifact - comments","weightCitations":21,"weightLinks":1,"weightNormcitations":0.3458,"x":0.3948,"y":0.2833,"year":"1994"},{"authors":"allan, lg; siegel, s","cluster":29,"id":203,"label":"allan (1993)","scoreCitations":21,"scoreNormcitations":0.5385,"scorePubyear":1993,"source":"psychological review, 100(2), 342-346","title":"mccollough effects as conditioned-responses - reply","weightCitations":21,"weightLinks":2,"weightNormcitations":0.5385,"x":-0.8191,"y":0.0725,"year":"1993"},{"authors":"meyer, dl","cluster":222,"id":204,"label":"meyer (1991)","scoreCitations":21,"scoreNormcitations":0.4933,"scorePubyear":1991,"source":"psychological bulletin, 110(3), 571-573","title":"misinterpretation of interaction effects - a reply","url":"http://dx.doi.org/10.1037//0033-2909.110.3.571","weightCitations":21,"weightLinks":0,"weightNormcitations":0.4933,"x":0.8906,"y":-0.4727,"year":"1991"},{"authors":"algina, j","cluster":78,"id":205,"label":"algina (1978)","scoreCitations":21,"scoreNormcitations":0.8118,"scorePubyear":1978,"source":"psychological bulletin, 85(1), 135-138","title":"comment on bartkos on various intra-class correlation reliability coefficients","weightCitations":21,"weightLinks":1,"weightNormcitations":0.8118,"x":0.2591,"y":0.616,"year":"1978"},{"authors":"rokeach, m","cluster":223,"id":206,"label":"rokeach (1967)","scoreCitations":21,"scoreNormcitations":1.8103,"scorePubyear":1967,"source":"psychological bulletin, 67(5), 349","title":"authoritarianism scales and responses bias - comment on peabodys paper","url":"http://dx.doi.org/10.1037/h0024534","weightCitations":21,"weightLinks":0,"weightNormcitations":1.8103,"x":-0.4053,"y":-0.6577,"year":"1967"},{"authors":"lynn, sj; lilienfeld, so; merckelbach, h; giesbrecht, t; mcnally, rj; loftus, ef; bruck, m; garry, m; malaktaris, a","cluster":30,"id":207,"label":"lynn (2014)","scoreCitations":20,"scoreNormcitations":3.0588,"scorePubyear":2014,"source":"psychological bulletin, 140(3), 896-910","title":"the trauma model of dissociation: inconvenient truths and stubborn fictions. comment on dalenberg et al. (2012)","url":"http://dx.doi.org/10.1037/a0035570","weightCitations":20,"weightLinks":3,"weightNormcitations":3.0588,"x":0.5146,"y":0.2117,"year":"2014"},{"authors":"myers, dg","cluster":41,"id":208,"label":"myers (2012)","scoreCitations":20,"scoreNormcitations":2.5714,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 913-917","title":"reflections on religious belief and prosociality: comment on galen (2012)","url":"http://dx.doi.org/10.1037/a0029009","weightCitations":20,"weightLinks":1,"weightNormcitations":2.5714,"x":-0.5387,"y":-0.3896,"year":"2012"},{"authors":"westen, d; novotny, cm; thompson-brenner, h","cluster":12,"id":209,"label":"westen (2004)","scoreCitations":20,"scoreNormcitations":0.8627,"scorePubyear":2004,"source":"psychological bulletin, 130(4), 677-683","title":"the next generation of psychotherapy research: reply to ablon and marci (2004), goldfried and eubanks-carter (2004), and haaga (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.4.677","weightCitations":20,"weightLinks":5,"weightNormcitations":0.8627,"x":0.2222,"y":0.428,"year":"2004"},{"authors":"dickens, wt; flynn, jr","cluster":224,"id":210,"label":"dickens (2002)","scoreCitations":20,"scoreNormcitations":0.3776,"scorePubyear":2002,"source":"psychological review, 109(4), 764-771","title":"the iq paradox is still resolved: reply to loehlin (2002) and rowe and rodgers (002)","url":"http://dx.doi.org/10.1037//0033-295x.109.4.764","weightCitations":20,"weightLinks":0,"weightNormcitations":0.3776,"x":0.8619,"y":0.641,"year":"2002"},{"authors":"just, ma; varma, s","cluster":5,"id":211,"label":"just (2002)","scoreCitations":20,"scoreNormcitations":0.3776,"scorePubyear":2002,"source":"psychological review, 109(1), 55-65","title":"a hybrid architecture for working memory: reply to macdonald and christiansen (2002)","url":"http://dx.doi.org/10.1037//0033-295x.109.1.55","weightCitations":20,"weightLinks":2,"weightNormcitations":0.3776,"x":-0.5815,"y":-0.2022,"year":"2002"},{"authors":"martin, cl; ruble, dn","cluster":7,"id":212,"label":"martin (1997)","scoreCitations":20,"scoreNormcitations":0.3966,"scorePubyear":1997,"source":"psychological bulletin, 122(1), 45-50","title":"a developmental perspective of self-construals and sex differences: comment on cross and madson (1997)","weightCitations":20,"weightLinks":3,"weightNormcitations":0.3966,"x":-0.1629,"y":0.9753,"year":"1997"},{"authors":"dodwell, pc; humphrey, gk","cluster":29,"id":213,"label":"dodwell (1993)","scoreCitations":20,"scoreNormcitations":0.5128,"scorePubyear":1993,"source":"psychological review, 100(2), 347-350","title":"what is important about mccollough effects - reply","weightCitations":20,"weightLinks":3,"weightNormcitations":0.5128,"x":-0.8292,"y":0.0733,"year":"1993"},{"authors":"nelson, to","cluster":225,"id":214,"label":"nelson (1986)","scoreCitations":20,"scoreNormcitations":1.2022,"scorePubyear":1986,"source":"psychological bulletin, 100(1), 128-132","title":"roc curves and measures of discrimination accuracy - a reply to swets","url":"http://dx.doi.org/10.1037/0033-2909.100.1.128","weightCitations":20,"weightLinks":0,"weightNormcitations":1.2022,"x":0.066,"y":-0.7033,"year":"1986"},{"authors":"kaplan, mf","cluster":226,"id":215,"label":"kaplan (1974)","scoreCitations":20,"scoreNormcitations":1.9718,"scorePubyear":1974,"source":"psychological bulletin, 81(11), 891-895","title":"context-induced shifts in personality-trait evaluation - comment on evaluative halo effect and meaning change interpretations","url":"http://dx.doi.org/10.1037/h0037274","weightCitations":20,"weightLinks":0,"weightNormcitations":1.9718,"x":-0.9099,"y":-0.0693,"year":"1974"},{"authors":"engel, gl; hamburger, ww; reiser, m; plunkett, j","cluster":227,"id":216,"label":"engel (1953)","scoreCitations":20,"scoreNormcitations":1.7391,"scorePubyear":1953,"source":"psychosomatic medicine, 15(4), 337-348","title":"electroencephalographic and psychological studies of a case of migraine with severe preheadache phenomena - with comments on cerebral vasospasm and focal hypertensive encephalopathy","weightCitations":20,"weightLinks":0,"weightNormcitations":1.7391,"x":0.7034,"y":0.6467,"year":"1953"},{"authors":"terman, lm","cluster":228,"id":217,"label":"terman (1948)","scoreCitations":20,"scoreNormcitations":1.4035,"scorePubyear":1948,"source":"psychological bulletin, 45(5), 443-459","title":"kinsey sexual behavior in the human male - some comments and criticisms","url":"http://dx.doi.org/10.1037/h0060435","weightCitations":20,"weightLinks":0,"weightNormcitations":1.4035,"x":-0.7396,"y":-0.4131,"year":"1948"},{"authors":"halliday, jl","cluster":229,"id":218,"label":"halliday (1945)","scoreCitations":20,"scoreNormcitations":2.0,"scorePubyear":1945,"source":"psychosomatic medicine, 7(4), 240-245","title":"comments from contributors relative to the psychosomatic concept - the significance of the concept of a psychosomatic affection","weightCitations":20,"weightLinks":0,"weightNormcitations":2.0,"x":0.4352,"y":0.6545,"year":"1945"},{"authors":"lahey, bb","cluster":11,"id":219,"label":"lahey (2014)","scoreCitations":19,"scoreNormcitations":2.9059,"scorePubyear":2014,"source":"psychological bulletin, 140(1), 58-63","title":"what we need to know about callous-unemotional traits: comment on frick, ray, thornton, and kahn (2014)","url":"http://dx.doi.org/10.1037/a0033387","weightCitations":19,"weightLinks":1,"weightNormcitations":2.9059,"x":0.4926,"y":-0.0218,"year":"2014"},{"authors":"swanson, jm; wigal, tl; volkow, nd","cluster":43,"id":220,"label":"swanson (2011)","scoreCitations":19,"scoreNormcitations":2.1235,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 742-748","title":"contrast of medical and nonmedical use of stimulant drugs, basis for the distinction, and risk of addiction: comment on smith and farah (2011)","url":"http://dx.doi.org/10.1037/a0024898","weightCitations":19,"weightLinks":1,"weightNormcitations":2.1235,"x":0.141,"y":-0.5762,"year":"2011"},{"authors":"harmon-jones, e; gable, pa; price, tf","cluster":79,"id":221,"label":"harmon-jones (2011)","scoreCitations":19,"scoreNormcitations":2.1235,"scorePubyear":2011,"source":"psychological bulletin, 137(3), 508-512","title":"toward an understanding of the influence of affective states on attentional tuning: comment on friedman and forster (2010)","url":"http://dx.doi.org/10.1037/a0022744","weightCitations":19,"weightLinks":1,"weightNormcitations":2.1235,"x":0.4723,"y":-0.2999,"year":"2011"},{"authors":"berntsen, d; rubin, dc; bohni, mk","cluster":230,"id":222,"label":"berntsen (2008)","scoreCitations":19,"scoreNormcitations":1.0556,"scorePubyear":2008,"source":"psychological review, 115(4), 1099-1106","title":"contrasting models of posttraumatic stress disorder: reply to monroe and mineka (2008)","url":"http://dx.doi.org/10.1037/a0013730","weightCitations":19,"weightLinks":0,"weightNormcitations":1.0556,"x":-0.8527,"y":0.5486,"year":"2008"},{"authors":"wixted, jt","cluster":4,"id":223,"label":"wixted (2007)","scoreCitations":19,"scoreNormcitations":1.9266,"scorePubyear":2007,"source":"psychological review, 114(1), 203-209","title":"spotlighting the probative findings: reply to parks and yonelinas (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.1.203","weightCitations":19,"weightLinks":2,"weightNormcitations":1.9266,"x":0.3374,"y":-0.4178,"year":"2007"},{"authors":"gawronski, b; bodenhausen, gv","cluster":31,"id":224,"label":"gawronski (2006)","scoreCitations":19,"scoreNormcitations":1.2908,"scorePubyear":2006,"source":"psychological bulletin, 132(5), 745-750","title":"associative and propositional processes in evaluation: conceptual, empirical, and metatheoretical issues: reply to albarracin, hart, and mcculloch (2006), kruglanski and dechesne (2006), and petty and brinol (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.5.745","weightCitations":19,"weightLinks":3,"weightNormcitations":1.2908,"x":0.0835,"y":-0.4759,"year":"2006"},{"authors":"mcneill, d","cluster":20,"id":225,"label":"mcneill (1987)","scoreCitations":19,"scoreNormcitations":0.1627,"scorePubyear":1987,"source":"psychological review, 94(4), 499-504","title":"so you do think gestures are nonverbal - reply","url":"http://dx.doi.org/10.1037//0033-295x.94.4.499","weightCitations":19,"weightLinks":4,"weightNormcitations":0.1627,"x":-0.9276,"y":0.4559,"year":"1987"},{"authors":"skowbo, d","cluster":29,"id":226,"label":"skowbo (1986)","scoreCitations":19,"scoreNormcitations":1.1421,"scorePubyear":1986,"source":"psychological bulletin, 100(3), 394-397","title":"mccollough effects as conditioned-responses - reply","url":"http://dx.doi.org/10.1037//0033-2909.100.3.394","weightCitations":19,"weightLinks":2,"weightNormcitations":1.1421,"x":-0.8342,"y":0.082,"year":"1986"},{"authors":"tucker, lr; gollob, hf","cluster":231,"id":227,"label":"tucker (1968)","scoreCitations":19,"scoreNormcitations":0.8716,"scorePubyear":1968,"source":"psychological bulletin, 70(5), 345","title":"comments on confounding of sources of variation in factor-analytic techniques","url":"http://dx.doi.org/10.1037/h0026437","weightCitations":19,"weightLinks":0,"weightNormcitations":0.8716,"x":-0.4704,"y":-0.6266,"year":"1968"},{"authors":"baier, de","cluster":232,"id":228,"label":"baier (1951)","scoreCitations":19,"scoreNormcitations":1.0459,"scorePubyear":1951,"source":"psychological bulletin, 48(5), 421-434","title":"reply to travers a critical review of the validity and rationale of the forced-choice technique","url":"http://dx.doi.org/10.1037/h0059746","weightCitations":19,"weightLinks":0,"weightNormcitations":1.0459,"x":-0.9491,"y":-0.3738,"year":"1951"},{"authors":"allport, gw","cluster":233,"id":229,"label":"allport (1946)","scoreCitations":19,"scoreNormcitations":3.2759,"scorePubyear":1946,"source":"psychological review, 53(2), 132-135","title":"personalistic psychology as science - a reply","url":"http://dx.doi.org/10.1037/h0058477","weightCitations":19,"weightLinks":0,"weightNormcitations":3.2759,"x":-0.4151,"y":0.755,"year":"1946"},{"authors":"gildersleeve, k; haselton, mg; fales, mr","cluster":44,"id":230,"label":"gildersleeve (2014)","scoreCitations":18,"scoreNormcitations":2.7529,"scorePubyear":2014,"source":"psychological bulletin, 140(5), 1272-1280","title":"meta-analyses and p-curves support robust cycle shifts in women's mate preferences: reply to wood and carden (2014) and harris, pashler, and mickes (2014)","url":"http://dx.doi.org/10.1037/a0037714.supp","weightCitations":18,"weightLinks":2,"weightNormcitations":2.7529,"x":-0.0657,"y":-0.5654,"year":"2014"},{"authors":"kvavilashvili, l","cluster":80,"id":231,"label":"kvavilashvili (2014)","scoreCitations":18,"scoreNormcitations":2.7529,"scorePubyear":2014,"source":"psychological bulletin, 140(1), 98-104","title":"solving the mystery of intrusive flashbacks in posttraumatic stress disorder: comment on brewin 2014)","url":"http://dx.doi.org/10.1037/a0034677","weightCitations":18,"weightLinks":1,"weightNormcitations":2.7529,"x":0.0323,"y":0.4984,"year":"2014"},{"authors":"bowers, js; davis, cj","cluster":5,"id":232,"label":"bowers (2012)","scoreCitations":18,"scoreNormcitations":2.3143,"scorePubyear":2012,"source":"psychological bulletin, 138(3), 423-426","title":"is that what bayesians believe? reply to griffiths, chater, norris, and pouget (2012)","url":"http://dx.doi.org/10.1037/a0027750","weightCitations":18,"weightLinks":1,"weightNormcitations":2.3143,"x":-0.5658,"y":-0.0755,"year":"2012"},{"authors":"salthouse, ta","cluster":45,"id":233,"label":"salthouse (2011)","scoreCitations":18,"scoreNormcitations":2.0118,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 796-799","title":"all data collection and analysis methods have limitations: reply to rabbitt (2011) and raz and lindenberger (2011) reply","url":"http://dx.doi.org/10.1037/a0024843","weightCitations":18,"weightLinks":2,"weightNormcitations":2.0118,"x":-0.038,"y":0.0224,"year":"2011"},{"authors":"dube, c; rotello, cm; heit, e","cluster":4,"id":234,"label":"dube (2011)","scoreCitations":18,"scoreNormcitations":2.0118,"scorePubyear":2011,"source":"psychological review, 118(1), 155-163","title":"the belief bias effect is aptly named: a reply to klauer and kellen (2011)","url":"http://dx.doi.org/10.1037/a0021774","weightCitations":18,"weightLinks":3,"weightNormcitations":2.0118,"x":0.4225,"y":-0.4426,"year":"2011"},{"authors":"hotaling, jm; busemeyer, jr; li, jy","cluster":234,"id":235,"label":"hotaling (2010)","scoreCitations":18,"scoreNormcitations":0.795,"scorePubyear":2010,"source":"psychological review, 117(4), 1294-1298","title":"theoretical developments in decision field theory: comment on tsetsos, usher, and chater (2010)","url":"http://dx.doi.org/10.1037/a0020401","weightCitations":18,"weightLinks":0,"weightNormcitations":0.795,"x":0.3323,"y":0.7775,"year":"2010"},{"authors":"howe, ml","cluster":49,"id":236,"label":"howe (2008)","scoreCitations":18,"scoreNormcitations":1.0,"scorePubyear":2008,"source":"psychological bulletin, 134(5), 768-772","title":"what is false memory development the development of? comment on brainerd, reyna, and ceci (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.5.768","weightCitations":18,"weightLinks":1,"weightNormcitations":1.0,"x":-0.0211,"y":0.9703,"year":"2008"},{"authors":"luhmann, cc; ahn, wk","cluster":46,"id":237,"label":"luhmann (2005)","scoreCitations":18,"scoreNormcitations":0.812,"scorePubyear":2005,"source":"psychological review, 112(3), 685-692","title":"the meaning and computation of causal power: comment on cheng (1997) and novick and cheng (2004)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.685","weightCitations":18,"weightLinks":1,"weightNormcitations":0.812,"x":0.023,"y":0.1116,"year":"2005"},{"authors":"crocker, j; nuer, n","cluster":10,"id":238,"label":"crocker (2004)","scoreCitations":18,"scoreNormcitations":0.7765,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 469-472","title":"do people need self-esteem? comment on pyszczynski et al. (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.469","weightCitations":18,"weightLinks":2,"weightNormcitations":0.7765,"x":0.1525,"y":0.7649,"year":"2004"},{"authors":"vicente, kj","cluster":27,"id":239,"label":"vicente (2000)","scoreCitations":18,"scoreNormcitations":0.4681,"scorePubyear":2000,"source":"psychological review, 107(3), 601-608","title":"revisiting the constraint attunement hypothesis: reply to ericsson, patel, and kintsch (2000) and simon and gobet (2000)","weightCitations":18,"weightLinks":3,"weightNormcitations":0.4681,"x":0.9242,"y":0.1358,"year":"2000"},{"authors":"wampold, be; mondin, gw; moody, m; ahn, hn","cluster":38,"id":240,"label":"wampold (1997)","scoreCitations":18,"scoreNormcitations":0.3569,"scorePubyear":1997,"source":"psychological bulletin, 122(3), 226-230","title":"the flat earth as a metaphor for the evidence for uniform efficacy of bona fide psychotherapies: reply","url":"http://dx.doi.org/10.1037//0033-2909.122.3.226","weightCitations":18,"weightLinks":2,"weightNormcitations":0.3569,"x":-0.0448,"y":-0.7807,"year":"1997"},{"authors":"mcnamara, tp","cluster":3,"id":241,"label":"mcnamara (1994)","scoreCitations":18,"scoreNormcitations":0.2964,"scorePubyear":1994,"source":"psychological review, 101(1), 185-187","title":"priming and theories of memory - a reply","url":"http://dx.doi.org/10.1037//0033-295x.101.1.185","weightCitations":18,"weightLinks":1,"weightNormcitations":0.2964,"x":-0.6914,"y":-0.1129,"year":"1994"},{"authors":"hintzman, dl","cluster":235,"id":242,"label":"hintzman (1993)","scoreCitations":18,"scoreNormcitations":0.4615,"scorePubyear":1993,"source":"psychological review, 100(1), 143-148","title":"on variability, simpsons paradox, and the relation between recognition and recall - reply to tulving and flexser","url":"http://dx.doi.org/10.1037//0033-295x.100.1.143","weightCitations":18,"weightLinks":0,"weightNormcitations":0.4615,"x":0.1842,"y":-0.7996,"year":"1993"},{"authors":"okeefe, j; nadel, l; willner, j","cluster":236,"id":243,"label":"okeefe (1979)","scoreCitations":18,"scoreNormcitations":1.6457,"scorePubyear":1979,"source":"psychological bulletin, 86(6), 1280-1289","title":"tuning out irrelevancy - comments on solomon temporal mapping view of the hippocampus","weightCitations":18,"weightLinks":0,"weightNormcitations":1.6457,"x":-0.7965,"y":-0.4263,"year":"1979"},{"authors":"grossberg, s","cluster":102,"id":244,"label":"grossberg (1978)","scoreCitations":18,"scoreNormcitations":0.6958,"scorePubyear":1978,"source":"psychological review, 85(6), 592-596","title":"do all neural models really look alike - comment","url":"http://dx.doi.org/10.1037/0033-295x.85.6.592","weightCitations":18,"weightLinks":1,"weightNormcitations":0.6958,"x":-0.0045,"y":-1.069,"year":"1978"},{"authors":"parton, da; ross, ao","cluster":237,"id":245,"label":"parton (1967)","scoreCitations":18,"scoreNormcitations":1.5517,"scorePubyear":1967,"source":"psychological bulletin, 67(5), 323","title":"a reply to use of rate as a measure of response in studies of social reinforcement","url":"http://dx.doi.org/10.1037/h0024506","weightCitations":18,"weightLinks":0,"weightNormcitations":1.5517,"x":-0.9172,"y":0.0853,"year":"1967"},{"authors":"eysenck, hj","cluster":238,"id":246,"label":"eysenck (1956)","scoreCitations":18,"scoreNormcitations":1.3171,"scorePubyear":1956,"source":"psychological bulletin, 53(2), 177-182","title":"the psychology of politics - reply","url":"http://dx.doi.org/10.1037/h0039843","weightCitations":18,"weightLinks":0,"weightNormcitations":1.3171,"x":0.6078,"y":0.7494,"year":"1956"},{"authors":"wiers, rw; stacy, aw","cluster":9,"id":247,"label":"wiers (2010)","scoreCitations":17,"scoreNormcitations":0.7508,"scorePubyear":2010,"source":"psychological bulletin, 136(1), 12-16","title":"are alcohol expectancies associations? comment on moss and albery (2009)","url":"http://dx.doi.org/10.1037/a0017769","weightCitations":17,"weightLinks":1,"weightNormcitations":0.7508,"x":0.2035,"y":-0.2797,"year":"2010"},{"authors":"carver, cs; harmon-jones, e","cluster":42,"id":248,"label":"carver (2009)","scoreCitations":17,"scoreNormcitations":2.5234,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 215-217","title":"anger and approach: reply to watson (2009) and to tomarken and zald (2009)","url":"http://dx.doi.org/10.1037/a0015026","weightCitations":17,"weightLinks":2,"weightNormcitations":2.5234,"x":-0.1792,"y":0.1624,"year":"2009"},{"authors":"tomarken, aj; zald, dh","cluster":42,"id":249,"label":"tomarken (2009)","scoreCitations":17,"scoreNormcitations":2.5234,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 209-214","title":"conceptual, methodological, and empirical ambiguities in the linkage between anger and approach: comment on carver and harmon-jones (2009)","url":"http://dx.doi.org/10.1037/a0014735","weightCitations":17,"weightLinks":1,"weightNormcitations":2.5234,"x":-0.1804,"y":0.1687,"year":"2009"},{"authors":"o'sullivan, m","cluster":47,"id":250,"label":"o'sullivan (2008)","scoreCitations":17,"scoreNormcitations":0.9444,"scorePubyear":2008,"source":"psychological bulletin, 134(4), 493-497","title":"home runs and humbugs: comment on bond and depaulo (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.4.493","weightCitations":17,"weightLinks":1,"weightNormcitations":0.9444,"x":0.4271,"y":0.0721,"year":"2008"},{"authors":"rieger, mo; wang, m","cluster":2,"id":251,"label":"rieger (2008)","scoreCitations":17,"scoreNormcitations":0.9444,"scorePubyear":2008,"source":"psychological review, 115(1), 274-280","title":"what is behind the priority heuristic? a mathematical analysis and comment on brandstdtter, gigerenzer, and hertwig (2006)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.274","weightCitations":17,"weightLinks":2,"weightNormcitations":0.9444,"x":-0.3508,"y":-0.1032,"year":"2008"},{"authors":"murdock, b","cluster":32,"id":252,"label":"murdock (2006)","scoreCitations":17,"scoreNormcitations":1.1549,"scorePubyear":2006,"source":"psychological review, 113(3), 648-655","title":"decision-making models of remember-know judgments: comment on rotello, macmillan, and reeder (2004)","url":"http://dx.doi.org/10.1037/0033-295x.113.3.648","weightCitations":17,"weightLinks":3,"weightNormcitations":1.1549,"x":-0.328,"y":-0.2198,"year":"2006"},{"authors":"martin, cl; ruble, dn; szkrybalo, j","cluster":81,"id":253,"label":"martin (2004)","scoreCitations":17,"scoreNormcitations":0.7333,"scorePubyear":2004,"source":"psychological bulletin, 130(5), 702-710","title":"recognizing the centrality of gender identity and stereotype knowledge in gender development and moving toward theoretical integration: reply to bandura and bussey (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.5.702","weightCitations":17,"weightLinks":1,"weightNormcitations":0.7333,"x":0.4257,"y":-0.227,"year":"2004"},{"authors":"pyszczynski, t; cox, c","cluster":10,"id":254,"label":"pyszczynski (2004)","scoreCitations":17,"scoreNormcitations":0.7333,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 425-429","title":"can we really do without self-esteem? comment on crocker and park (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.425","weightCitations":17,"weightLinks":2,"weightNormcitations":0.7333,"x":0.1419,"y":0.7738,"year":"2004"},{"authors":"rapp, b; goldrick, m","cluster":3,"id":255,"label":"rapp (2004)","scoreCitations":17,"scoreNormcitations":0.7333,"scorePubyear":2004,"source":"psychological review, 111(2), 573-578","title":"feedback by any other name is still interactivity: a reply to roelofs (2004)","url":"http://dx.doi.org/10.1037/0033-295x.111.2.573","weightCitations":17,"weightLinks":3,"weightNormcitations":0.7333,"x":-0.6416,"y":-0.1347,"year":"2004"},{"authors":"brase, gl","cluster":1,"id":256,"label":"brase (2002)","scoreCitations":17,"scoreNormcitations":0.3209,"scorePubyear":2002,"source":"psychological review, 109(4), 722-728","title":"ecological and evolutionary validity: comments on johnson-laird, legrenzi, girotto, legrenzi, and caverni's (1999) mental-model theory of extensional reasoning","url":"http://dx.doi.org/10.1037//0033-295x.109.4.722","weightCitations":17,"weightLinks":1,"weightNormcitations":0.3209,"x":0.4863,"y":-0.5802,"year":"2002"},{"authors":"parke, rd","cluster":21,"id":257,"label":"parke (2002)","scoreCitations":17,"scoreNormcitations":0.3209,"scorePubyear":2002,"source":"psychological bulletin, 128(4), 596-601","title":"punishment revisited - science, values, and the right question: comment on gershoff (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.4.596","weightCitations":17,"weightLinks":2,"weightNormcitations":0.3209,"x":0.4183,"y":-0.9519,"year":"2002"},{"authors":"corballis, mc","cluster":82,"id":258,"label":"corballis (2001)","scoreCitations":17,"scoreNormcitations":1.2879,"scorePubyear":2001,"source":"psychological review, 108(4), 805-810","title":"is the handedness gene on the x chromosome? comment on jones and martin (2000)","url":"http://dx.doi.org/10.1037//0033.295x.108.4.805","weightCitations":17,"weightLinks":1,"weightNormcitations":1.2879,"x":0.0595,"y":0.0108,"year":"2001"},{"authors":"gauvain, m","cluster":40,"id":259,"label":"gauvain (1998)","scoreCitations":17,"scoreNormcitations":1.2902,"scorePubyear":1998,"source":"psychological bulletin, 123(1), 37-42","title":"culture, development, and theory of mind: comment on lillard (1998)","url":"http://dx.doi.org/10.1037//0033-2909.123.1.37","weightCitations":17,"weightLinks":1,"weightNormcitations":1.2902,"x":-0.1023,"y":-0.4351,"year":"1998"},{"authors":"reisenzein, r; meyer, wu; schutzwohl, a","cluster":239,"id":260,"label":"reisenzein (1995)","scoreCitations":17,"scoreNormcitations":0.5795,"scorePubyear":1995,"source":"psychological review, 102(4), 757-761","title":"james and the physical basis of emotion - a comment on ellsworth","url":"http://dx.doi.org/10.1037//0033-295x.102.4.757","weightCitations":17,"weightLinks":0,"weightNormcitations":0.5795,"x":-0.5736,"y":0.2152,"year":"1995"},{"authors":"greenspan, sl; segal, em","cluster":240,"id":261,"label":"greenspan (1984)","scoreCitations":17,"scoreNormcitations":2.4286,"scorePubyear":1984,"source":"cognitive psychology, 16(4), 556-606","title":"reference and comprehension - a topic comment analysis of sentence picture verification","url":"http://dx.doi.org/10.1016/0010-0285(84)90020-3","weightCitations":17,"weightLinks":0,"weightNormcitations":2.4286,"x":-0.593,"y":-0.6729,"year":"1984"},{"authors":"rebec, gv; bashore, tr","cluster":83,"id":262,"label":"rebec (1982)","scoreCitations":17,"scoreNormcitations":0.403,"scorePubyear":1982,"source":"psychological bulletin, 92(2), 403-409","title":"amphetamine models of paranoid schizophrenia - a precautionary note - comments","url":"http://dx.doi.org/10.1037/0033-2909.92.2.403","weightCitations":17,"weightLinks":1,"weightNormcitations":0.403,"x":-0.3696,"y":0.3455,"year":"1982"},{"authors":"anderson, nh","cluster":241,"id":263,"label":"anderson (1973)","scoreCitations":17,"scoreNormcitations":2.0942,"scorePubyear":1973,"source":"psychological review, 80(1), 88-92","title":"comments on articles of hodges and of schonemann, cafferty, and rotton","url":"http://dx.doi.org/10.1037/h0033873","weightCitations":17,"weightLinks":0,"weightNormcitations":2.0942,"x":0.449,"y":0.3686,"year":"1973"},{"authors":"clark, hh","cluster":242,"id":264,"label":"clark (1972)","scoreCitations":17,"scoreNormcitations":2.9383,"scorePubyear":1972,"source":"psychological review, 79(5), 428","title":"evidence concerning huttenlocher,j and higgins,et theory of reasoning - second reply","url":"http://dx.doi.org/10.1037/h0020298","weightCitations":17,"weightLinks":0,"weightNormcitations":2.9383,"x":-0.0991,"y":0.2097,"year":"1972"},{"authors":"weiner, h","cluster":243,"id":265,"label":"weiner (1972)","scoreCitations":17,"scoreNormcitations":2.9383,"scorePubyear":1972,"source":"psychosomatic medicine, 34(4), 355-380","title":"presidential address - comments on transduction of experience by brain - implications for our understanding of relationship of mind to body","weightCitations":17,"weightLinks":0,"weightNormcitations":2.9383,"x":-0.7009,"y":0.1387,"year":"1972"},{"authors":"garron, dc; cheifetz, di","cluster":244,"id":266,"label":"garron (1965)","scoreCitations":17,"scoreNormcitations":1.2857,"scorePubyear":1965,"source":"psychological bulletin, 63(3), 197-200","title":"comment on bender gestalt discernment of organic pathology","url":"http://dx.doi.org/10.1037/h0021894","weightCitations":17,"weightLinks":0,"weightNormcitations":1.2857,"x":0.0014,"y":0.6422,"year":"1965"},{"authors":"mandler, g","cluster":84,"id":267,"label":"mandler (1965)","scoreCitations":17,"scoreNormcitations":1.2857,"scorePubyear":1965,"source":"psychological review, 72(4), 323-326","title":"subjects do think - reply","url":"http://dx.doi.org/10.1037/h0022000","weightCitations":17,"weightLinks":1,"weightNormcitations":1.2857,"x":-1.0179,"y":0.2935,"year":"1965"},{"authors":"mcculloch, tl","cluster":85,"id":268,"label":"mcculloch (1939)","scoreCitations":17,"scoreNormcitations":3.5172,"scorePubyear":1939,"source":"psychological review, 46, 75-85","title":"comment on the formation of discrimination habits","url":"http://dx.doi.org/10.1037/h0056114","weightCitations":17,"weightLinks":1,"weightNormcitations":3.5172,"x":0.2292,"y":-0.6911,"year":"1939"},{"authors":"anastasi, a","cluster":86,"id":269,"label":"anastasi (1938)","scoreCitations":17,"scoreNormcitations":4.0476,"scorePubyear":1938,"source":"psychological bulletin, 35(6), 391-395","title":"faculties versus factors: a reply to professor thurstone","url":"http://dx.doi.org/10.1037/h0054577","weightCitations":17,"weightLinks":1,"weightNormcitations":4.0476,"x":0.5957,"y":0.0621,"year":"1938"},{"authors":"nosek, ba; greenwald, ag","cluster":48,"id":270,"label":"nosek (2009)","scoreCitations":16,"scoreNormcitations":2.375,"scorePubyear":2009,"source":"psychological bulletin, 135(3), 373-376","title":"(part of) the case for a pragmatic approach to validity: comment on de houwer, teige-mocigemba, spruyt, and moors (2009)","url":"http://dx.doi.org/10.1037/a0015047","weightCitations":16,"weightLinks":1,"weightNormcitations":2.375,"x":-0.363,"y":-0.9909,"year":"2009"},{"authors":"trafimow, d","cluster":19,"id":271,"label":"trafimow (2005)","scoreCitations":16,"scoreNormcitations":0.7218,"scorePubyear":2005,"source":"psychological review, 112(3), 669-674","title":"the ubiquitous laplacian assumption: reply to lee and wagenmakers (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.669","weightCitations":16,"weightLinks":3,"weightNormcitations":0.7218,"x":0.3705,"y":0.8717,"year":"2005"},{"authors":"panksepp, j","cluster":16,"id":272,"label":"panksepp (2005)","scoreCitations":16,"scoreNormcitations":0.7218,"scorePubyear":2005,"source":"psychological bulletin, 131(2), 224-230","title":"why does separation distress hurt? comment on macdonald and leary (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.2.224","weightCitations":16,"weightLinks":2,"weightNormcitations":0.7218,"x":0.5945,"y":-0.8372,"year":"2005"},{"authors":"kareev, y","cluster":1,"id":273,"label":"kareev (2005)","scoreCitations":16,"scoreNormcitations":0.7218,"scorePubyear":2005,"source":"psychological review, 112(1), 280-285","title":"and yet the small-sample effect does hold: reply to juslin and olsson (2005) and anderson, doherty, berg, and friedrich (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.1.280","weightCitations":16,"weightLinks":2,"weightNormcitations":0.7218,"x":0.4069,"y":-0.7146,"year":"2005"},{"authors":"goldfried, mr; eubanks-carter, c","cluster":12,"id":274,"label":"goldfried (2004)","scoreCitations":16,"scoreNormcitations":0.6902,"scorePubyear":2004,"source":"psychological bulletin, 130(4), 669-673","title":"on the need for a new psychotherapy research paradigm: comment on westen, novotny, and thompson-brenner (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.4.669","weightCitations":16,"weightLinks":1,"weightNormcitations":0.6902,"x":0.2088,"y":0.4305,"year":"2004"},{"authors":"milton, j; wiseman, r","cluster":67,"id":275,"label":"milton (2001)","scoreCitations":16,"scoreNormcitations":1.2121,"scorePubyear":2001,"source":"psychological bulletin, 127(3), 434-438","title":"does psi exist? reply to storm and ertel (2001)","url":"http://dx.doi.org/10.1037//0033-2909.127.3.434","weightCitations":16,"weightLinks":1,"weightNormcitations":1.2121,"x":-0.1585,"y":-0.513,"year":"2001"},{"authors":"dell, gs; schwartz, mf; martin, n; saffran, em; gagnon, da","cluster":3,"id":276,"label":"dell (2000)","scoreCitations":16,"scoreNormcitations":0.4161,"scorePubyear":2000,"source":"psychological review, 107(3), 635-645","title":"the role of computational models in neuropsychological investigations of language: reply to ruml and caramazza (2000)","url":"http://dx.doi.org/10.1037//0033-295x.107.3.635","weightCitations":16,"weightLinks":4,"weightNormcitations":0.4161,"x":-0.7079,"y":-0.1578,"year":"2000"},{"authors":"holmes, ds","cluster":120,"id":277,"label":"holmes (1981)","scoreCitations":16,"scoreNormcitations":0.1786,"scorePubyear":1981,"source":"psychological bulletin, 90(3), 460-466","title":"existence of classical projection and the stress-reducing function of attributive projection - a reply to sherwood","url":"http://dx.doi.org/10.1037//0033-2909.90.3.460","weightCitations":16,"weightLinks":1,"weightNormcitations":0.1786,"x":-0.2368,"y":-0.7136,"year":"1981"},{"authors":"rips, lj; smith, ee; shoben, ej","cluster":245,"id":278,"label":"rips (1975)","scoreCitations":16,"scoreNormcitations":3.6364,"scorePubyear":1975,"source":"psychological review, 82(2), 156-157","title":"set-theoretic and network models reconsidered - comment on hollans features and semantic memory","url":"http://dx.doi.org/10.1037/h0076781","weightCitations":16,"weightLinks":0,"weightNormcitations":3.6364,"x":0.745,"y":0.4733,"year":"1975"},{"authors":"hebb, do","cluster":246,"id":279,"label":"hebb (1971)","scoreCitations":16,"scoreNormcitations":2.1513,"scorePubyear":1971,"source":"psychological bulletin, 76(6), 409","title":"comment on altruism - comparative evidence","url":"http://dx.doi.org/10.1037/h0031898","weightCitations":16,"weightLinks":0,"weightNormcitations":2.1513,"x":-0.9016,"y":0.3595,"year":"1971"},{"authors":"jackson, dn","cluster":247,"id":280,"label":"jackson (1971)","scoreCitations":16,"scoreNormcitations":2.1513,"scorePubyear":1971,"source":"psychological bulletin, 75(6), 421","title":"comments on evaluation of multimethod factor analysis","url":"http://dx.doi.org/10.1037/h0031245","weightCitations":16,"weightLinks":0,"weightNormcitations":2.1513,"x":-0.7581,"y":0.4451,"year":"1971"},{"authors":"mills, j","cluster":248,"id":281,"label":"mills (1967)","scoreCitations":16,"scoreNormcitations":1.3793,"scorePubyear":1967,"source":"psychological review, 74(6), 535","title":"comment on bems self-perception - an alternative interpretation of cognitive dissonance phenomena","url":"http://dx.doi.org/10.1037/h0025146","weightCitations":16,"weightLinks":0,"weightNormcitations":1.3793,"x":-0.9691,"y":-0.3111,"year":"1967"},{"authors":"kiernan, cc","cluster":123,"id":282,"label":"kiernan (1964)","scoreCitations":16,"scoreNormcitations":1.7778,"scorePubyear":1964,"source":"psychological bulletin, 62(5), 351-357","title":"positive reinforcement by light - comments on lockards article","url":"http://dx.doi.org/10.1037/h0043198","weightCitations":16,"weightLinks":1,"weightNormcitations":1.7778,"x":0.5189,"y":0.4806,"year":"1964"},{"authors":"dalenberg, cj; brand, bl; loewenstein, rj; gleaves, dh; dorahy, mj; cardena, e; frewen, pa; carlson, eb; spiegel, d","cluster":30,"id":283,"label":"dalenberg (2014)","scoreCitations":15,"scoreNormcitations":2.2941,"scorePubyear":2014,"source":"psychological bulletin, 140(3), 911-920","title":"reality versus fantasy: reply to lynn et al. (2014)","url":"http://dx.doi.org/10.1037/a0036685","weightCitations":15,"weightLinks":2,"weightNormcitations":2.2941,"x":0.5082,"y":0.2039,"year":"2014"},{"authors":"birnbaum, mh","cluster":2,"id":284,"label":"birnbaum (2011)","scoreCitations":15,"scoreNormcitations":1.6765,"scorePubyear":2011,"source":"psychological review, 118(4), 675-683","title":"testing mixture models of transitive preference: comment on regenwetter, dana, and davis-stober (2011)","url":"http://dx.doi.org/10.1037/a0023852","weightCitations":15,"weightLinks":4,"weightNormcitations":1.6765,"x":-0.3563,"y":-0.0355,"year":"2011"},{"authors":"bowers, js","cluster":3,"id":285,"label":"bowers (2010)","scoreCitations":15,"scoreNormcitations":0.6625,"scorePubyear":2010,"source":"psychological review, 117(1), 300-306","title":"more on grandmother cells and the biological implausibility of pdp models of cognition: a reply to plaut and mcclelland (2010) and quian quiroga and kreiman (2010)","url":"http://dx.doi.org/10.1037/a0018047","weightCitations":15,"weightLinks":4,"weightNormcitations":0.6625,"x":-0.7488,"y":-0.0612,"year":"2010"},{"authors":"radin, d; nelson, r; dobyns, y; houtkooper, j","cluster":54,"id":286,"label":"radin (2006)","scoreCitations":15,"scoreNormcitations":1.019,"scorePubyear":2006,"source":"psychological bulletin, 132(4), 529-532","title":"reexamining psychokinesis: comment on bosch, steinkamp, and boller (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.4.529","weightCitations":15,"weightLinks":1,"weightNormcitations":1.019,"x":-0.2471,"y":-0.9616,"year":"2006"},{"authors":"anderson, rb; doherty, me; berg, nd; friedrich, jc","cluster":1,"id":287,"label":"anderson (2005)","scoreCitations":15,"scoreNormcitations":0.6767,"scorePubyear":2005,"source":"psychological review, 112(1), 268-279","title":"sample size and the detection of correlation - a signal detection account: comment on kareev (2000) and juslin and olsson (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.1.268","weightCitations":15,"weightLinks":3,"weightNormcitations":0.6767,"x":0.4181,"y":-0.7092,"year":"2005"},{"authors":"moskowitz, ds","cluster":249,"id":288,"label":"moskowitz (2004)","scoreCitations":15,"scoreNormcitations":0.6471,"scorePubyear":2004,"source":"psychological review, 111(3), 808-811","title":"does elevated power lead to approach and reduced power to inhibition? comment on keltner, gruenfeld, and anderson (2003)","url":"http://dx.doi.org/10.1037/0033-295x.111.3.808","weightCitations":15,"weightLinks":0,"weightNormcitations":0.6471,"x":0.305,"y":-0.7033,"year":"2004"},{"authors":"bjorklund, df","cluster":18,"id":289,"label":"bjorklund (2003)","scoreCitations":15,"scoreNormcitations":0.5589,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 836-841","title":"evolutionary psychology from a developmental systems perspective: comment on lickliter and honeycutt (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.836","weightCitations":15,"weightLinks":1,"weightNormcitations":0.5589,"x":0.2914,"y":-0.5704,"year":"2003"},{"authors":"mussweiler, t","cluster":28,"id":290,"label":"mussweiler (2003)","scoreCitations":15,"scoreNormcitations":0.5589,"scorePubyear":2003,"source":"psychological review, 110(3), 581-584","title":"when egocentrism breeds distinctness - comparison processes in social prediction: comment on karniol (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.3.581","weightCitations":15,"weightLinks":1,"weightNormcitations":0.5589,"x":0.1863,"y":0.9602,"year":"2003"},{"authors":"taylor, se; lewis, bp; gruenewald, tl; gurung, rar; updegraff, ja; klein, lc","cluster":250,"id":291,"label":"taylor (2002)","scoreCitations":15,"scoreNormcitations":0.2832,"scorePubyear":2002,"source":"psychological review, 109(4), 751-753","title":"sex differences in biobehavioral responses to threat: reply to geary and flinn (2002)","url":"http://dx.doi.org/10.1037//0033-295x.109.4.751","weightCitations":15,"weightLinks":0,"weightNormcitations":0.2832,"x":0.373,"y":0.6543,"year":"2002"},{"authors":"rodgers, jl; rowe, dc","cluster":2,"id":292,"label":"rodgers (2002)","scoreCitations":15,"scoreNormcitations":0.2832,"scorePubyear":2002,"source":"psychological review, 109(3), 599-604","title":"theory development should begin (but not end) with good empirical fits: a comment on roberts and pashler (2000)","url":"http://dx.doi.org/10.1037//0033-295x.109.3.599","weightCitations":15,"weightLinks":2,"weightNormcitations":0.2832,"x":-0.4114,"y":-0.1708,"year":"2002"},{"authors":"bem, dj","cluster":251,"id":293,"label":"bem (1998)","scoreCitations":15,"scoreNormcitations":1.1384,"scorePubyear":1998,"source":"psychological review, 105(2), 395-398","title":"is ebe theory supported by the evidence? is it androcentric? a reply to peplau et al. (1998)","url":"http://dx.doi.org/10.1037/0033-295x.105.2.395","weightCitations":15,"weightLinks":0,"weightNormcitations":1.1384,"x":-0.5522,"y":-0.4785,"year":"1998"},{"authors":"rasmussen, jl","cluster":252,"id":294,"label":"rasmussen (1988)","scoreCitations":15,"scoreNormcitations":1.0,"scorePubyear":1988,"source":"psychological bulletin, 104(2), 297-299","title":"bootstrap confidence-intervals - good or bad - comments","url":"http://dx.doi.org/10.1037/0033-2909.104.2.297","weightCitations":15,"weightLinks":0,"weightNormcitations":1.0,"x":0.0981,"y":0.5491,"year":"1988"},{"authors":"proctor, rw","cluster":253,"id":295,"label":"proctor (1986)","scoreCitations":15,"scoreNormcitations":0.9016,"scorePubyear":1986,"source":"psychological review, 93(4), 473-477","title":"response bias, criteria settings, and the fast-same phenomenon - a reply","url":"http://dx.doi.org/10.1037/0033-295x.93.4.473","weightCitations":15,"weightLinks":0,"weightNormcitations":0.9016,"x":0.8042,"y":0.2289,"year":"1986"},{"authors":"conley, jj","cluster":23,"id":296,"label":"conley (1984)","scoreCitations":15,"scoreNormcitations":2.1429,"scorePubyear":1984,"source":"psychological review, 91(4), 491-496","title":"relation of temporal stability and cross-situational consistency in personality - comment on the mischel-epstein debate","url":"http://dx.doi.org/10.1037/0033-295x.91.4.491","weightCitations":15,"weightLinks":1,"weightNormcitations":2.1429,"x":0.0267,"y":-0.971,"year":"1984"},{"authors":"miller, jk","cluster":254,"id":297,"label":"miller (1975)","scoreCitations":15,"scoreNormcitations":3.4091,"scorePubyear":1975,"source":"psychological bulletin, 82(2), 207-209","title":"defense of general canonical correlation index - reply","url":"http://dx.doi.org/10.1037/h0076379","weightCitations":15,"weightLinks":0,"weightNormcitations":3.4091,"x":0.581,"y":0.9109,"year":"1975"},{"authors":"schooler, c","cluster":255,"id":298,"label":"schooler (1973)","scoreCitations":15,"scoreNormcitations":1.8478,"scorePubyear":1973,"source":"psychological bulletin, 80(3), 213-214","title":"birth-order effects - reply","url":"http://dx.doi.org/10.1037/h0034841","weightCitations":15,"weightLinks":0,"weightNormcitations":1.8478,"x":-0.4925,"y":0.294,"year":"1973"},{"authors":"bem, dj","cluster":256,"id":299,"label":"bem (1967)","scoreCitations":15,"scoreNormcitations":1.2931,"scorePubyear":1967,"source":"psychological review, 74(6), 536","title":"reply to judson mills","url":"http://dx.doi.org/10.1037/h0025145","weightCitations":15,"weightLinks":0,"weightNormcitations":1.2931,"x":0.263,"y":-1.047,"year":"1967"},{"authors":"szasz, ts","cluster":257,"id":300,"label":"szasz (1949)","scoreCitations":15,"scoreNormcitations":1.1321,"scorePubyear":1949,"source":"psychosomatic medicine, 11(5), 300-304","title":"factors in the pathogenesis of peptic ulcer - some critical comments on a recent article by mahl,george,f.","weightCitations":15,"weightLinks":0,"weightNormcitations":1.1321,"x":-0.5268,"y":0.3513,"year":"1949"},{"authors":"smith, pl; ratcliff, r; mckoon, g","cluster":147,"id":301,"label":"smith (2014)","scoreCitations":14,"scoreNormcitations":2.1412,"scorePubyear":2014,"source":"psychological review, 121(4), 679-688","title":"the diffusion model is not a deterministic growth model: comment on jones and dzhafarov (2014)","url":"http://dx.doi.org/10.1037/a0037667","weightCitations":14,"weightLinks":1,"weightNormcitations":2.1412,"x":0.6183,"y":0.4876,"year":"2014"},{"authors":"regenwetter, m; dana, j; davis-stober, cp; guo, y","cluster":2,"id":302,"label":"regenwetter (2011)","scoreCitations":14,"scoreNormcitations":1.5647,"scorePubyear":2011,"source":"psychological review, 118(4), 684-688","title":"parsimonious testing of transitive or intransitive preferences: reply to birnbaum (2011) reply","url":"http://dx.doi.org/10.1037/a0025291","weightCitations":14,"weightLinks":2,"weightNormcitations":1.5647,"x":-0.355,"y":-0.0534,"year":"2011"},{"authors":"giesbrecht, t; lynn, sj; lilienfeld, so; merckelbach, h","cluster":30,"id":303,"label":"giesbrecht (2010)","scoreCitations":14,"scoreNormcitations":0.6183,"scorePubyear":2010,"source":"psychological bulletin, 136(1), 7-11","title":"cognitive processes, trauma, and dissociation-misconceptions and misrepresentations: reply to bremner (2010)","url":"http://dx.doi.org/10.1037/a0018068","weightCitations":14,"weightLinks":3,"weightNormcitations":0.6183,"x":0.5054,"y":0.2136,"year":"2010"},{"authors":"woollams, am; ralph, mal; plaut, dc; patterson, k","cluster":5,"id":304,"label":"woollams (2010)","scoreCitations":14,"scoreNormcitations":0.6183,"scorePubyear":2010,"source":"psychological review, 117(1), 273-281","title":"sd-squared revisited: reply to coltheart, tree, and saunders (2010)","url":"http://dx.doi.org/10.1017/a0017641","weightCitations":14,"weightLinks":1,"weightNormcitations":0.6183,"x":-0.5222,"y":-0.1128,"year":"2010"},{"authors":"white, pa","cluster":46,"id":305,"label":"white (2005)","scoreCitations":14,"scoreNormcitations":0.6316,"scorePubyear":2005,"source":"psychological review, 112(3), 675-682","title":"the power pc theory and causal powers: comment on cheng (1997) and novick and cheng (2004)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.675","weightCitations":14,"weightLinks":1,"weightNormcitations":0.6316,"x":0.0177,"y":0.1231,"year":"2005"},{"authors":"dalgleish, t; power, mj","cluster":105,"id":306,"label":"dalgleish (2004)","scoreCitations":14,"scoreNormcitations":0.6039,"scorePubyear":2004,"source":"psychological review, 111(3), 812-819","title":"the i of the storm - relations between self and conscious emotion experience: comment on lambie and marcel (2002)","url":"http://dx.doi.org/10.1037/0033-295x.111.3.812","weightCitations":14,"weightLinks":1,"weightNormcitations":0.6039,"x":-0.6983,"y":-0.6028,"year":"2004"},{"authors":"coyne, jc; thompson, r; whiffen, v","cluster":11,"id":307,"label":"coyne (2004)","scoreCitations":14,"scoreNormcitations":0.6039,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 512-517","title":"is the promissory note of personality as vulnerability to depression in default? reply to zuroff, mongrain, and santor (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.512","weightCitations":14,"weightLinks":2,"weightNormcitations":0.6039,"x":0.5523,"y":-0.0667,"year":"2004"},{"authors":"thompson, r; henkel, v; coyne, jc","cluster":258,"id":308,"label":"thompson (2004)","scoreCitations":14,"scoreNormcitations":0.6039,"scorePubyear":2004,"source":"psychosomatic medicine, 66(3), 455-456","title":"suicidal ideation in primary care: ask a vague question, get a confusing answer","url":"http://dx.doi.org/10.1097/01.psy.0000127691.46148.2b","weightCitations":14,"weightLinks":0,"weightNormcitations":0.6039,"x":0.6898,"y":0.2587,"year":"2004"},{"authors":"sedikides, c","cluster":28,"id":309,"label":"sedikides (2003)","scoreCitations":14,"scoreNormcitations":0.5216,"scorePubyear":2003,"source":"psychological review, 110(3), 591-594","title":"on the status of self in social prediction: comment on karniol (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.3.591","weightCitations":14,"weightLinks":1,"weightNormcitations":0.5216,"x":0.1722,"y":0.9662,"year":"2003"},{"authors":"jones, gv; martin, m","cluster":82,"id":310,"label":"jones (2001)","scoreCitations":14,"scoreNormcitations":1.0606,"scorePubyear":2001,"source":"psychological review, 108(4), 811-813","title":"confirming the x-linked handedness gene as recessive, not additive: reply to corballis (2001)","url":"http://dx.doi.org/10.1037//0033-295x.108.4.811","weightCitations":14,"weightLinks":1,"weightNormcitations":1.0606,"x":0.0571,"y":0.008,"year":"2001"},{"authors":"mckoon, g; ratcliff, r","cluster":259,"id":311,"label":"mckoon (2001)","scoreCitations":14,"scoreNormcitations":1.0606,"scorePubyear":2001,"source":"psychological review, 108(3), 674-681","title":"counter model for word identification: reply to bowers (1999)","url":"http://dx.doi.org/10.1037//0033-295x.108.3.674","weightCitations":14,"weightLinks":0,"weightNormcitations":1.0606,"x":-0.6381,"y":0.6424,"year":"2001"},{"authors":"chow, sl","cluster":260,"id":312,"label":"chow (1989)","scoreCitations":14,"scoreNormcitations":0.3415,"scorePubyear":1989,"source":"psychological bulletin, 106(1), 161-165","title":"significance tests and deduction - reply","url":"http://dx.doi.org/10.1037/0033-2909.106.1.161","weightCitations":14,"weightLinks":0,"weightNormcitations":0.3415,"x":-0.9297,"y":-0.5492,"year":"1989"},{"authors":"bandura, a","cluster":261,"id":313,"label":"bandura (1983)","scoreCitations":14,"scoreNormcitations":1.1789,"scorePubyear":1983,"source":"psychological review, 90(2), 166-170","title":"temporal dynamics and decomposition of reciprocal determinism - a reply","url":"http://dx.doi.org/10.1037//0033-295x.90.2.166","weightCitations":14,"weightLinks":0,"weightNormcitations":1.1789,"x":-0.9044,"y":-0.3271,"year":"1983"},{"authors":"mcglynn, rp","cluster":87,"id":314,"label":"mcglynn (1982)","scoreCitations":14,"scoreNormcitations":0.3319,"scorePubyear":1982,"source":"psychological bulletin, 92(1), 184-185","title":"a comment on the meta-analysis of goal structures","url":"http://dx.doi.org/10.1037//0033-2909.92.1.184","weightCitations":14,"weightLinks":1,"weightNormcitations":0.3319,"x":-0.7961,"y":-0.6251,"year":"1982"},{"authors":"martin, e","cluster":88,"id":315,"label":"martin (1981)","scoreCitations":14,"scoreNormcitations":0.1562,"scorePubyear":1981,"source":"psychological review, 88(4), 372-374","title":"simpson paradox resolved - a reply","url":"http://dx.doi.org/10.1037/0033-295x.88.4.372","weightCitations":14,"weightLinks":1,"weightNormcitations":0.1562,"x":0.6469,"y":-0.7267,"year":"1981"},{"authors":"ryan, ta","cluster":262,"id":316,"label":"ryan (1980)","scoreCitations":14,"scoreNormcitations":1.4,"scorePubyear":1980,"source":"psychological bulletin, 88(2), 354-355","title":"comment on protecting the overall rate of type-i errors for pairwise comparisons with an omnibus test statistic","url":"http://dx.doi.org/10.1037/0033-2909.88.2.354","weightCitations":14,"weightLinks":0,"weightNormcitations":1.4,"x":0.6312,"y":0.8699,"year":"1980"},{"authors":"kendler, hh; kendler, ts","cluster":263,"id":317,"label":"kendler (1966)","scoreCitations":14,"scoreNormcitations":1.037,"scorePubyear":1966,"source":"psychological bulletin, 66(4), 282","title":"selective attention versus mediation - some comments on mackintoshs analysis of 2-stage models of discrimination learning","url":"http://dx.doi.org/10.1037/h0023753","weightCitations":14,"weightLinks":0,"weightNormcitations":1.037,"x":0.7441,"y":-0.6829,"year":"1966"},{"authors":"spitz, ra","cluster":98,"id":318,"label":"spitz (1955)","scoreCitations":14,"scoreNormcitations":0.6292,"scorePubyear":1955,"source":"psychological bulletin, 52(5), 453-459","title":"the infantile disorders of hospitalism and anaclitic depression - reply","url":"http://dx.doi.org/10.1037/h0041575","weightCitations":14,"weightLinks":1,"weightNormcitations":0.6292,"x":1.065,"y":-0.0627,"year":"1955"},{"authors":"senders, vl","cluster":264,"id":319,"label":"senders (1953)","scoreCitations":14,"scoreNormcitations":1.2174,"scorePubyear":1953,"source":"psychological review, 60(6), 423-424","title":"a comment on burke additive scales and statistics","url":"http://dx.doi.org/10.1037/h0056186","weightCitations":14,"weightLinks":0,"weightNormcitations":1.2174,"x":0.6077,"y":0.5604,"year":"1953"},{"authors":"blum, ml; mintz, a","cluster":265,"id":320,"label":"blum (1951)","scoreCitations":14,"scoreNormcitations":0.7706,"scorePubyear":1951,"source":"psychological bulletin, 48(5), 413-418","title":"correlation versus curve fitting in research on accident proneness - reply to maritz","url":"http://dx.doi.org/10.1037/h0055068","weightCitations":14,"weightLinks":0,"weightNormcitations":0.7706,"x":0.7966,"y":-0.0508,"year":"1951"},{"authors":"batchelder, wh; alexander, ge","cluster":4,"id":321,"label":"batchelder (2013)","scoreCitations":13,"scoreNormcitations":3.2727,"scorePubyear":2013,"source":"psychological bulletin, 139(6), 1204-1212","title":"discrete-state models: comment on pazzaglia, dube, and rotello (2013)","url":"http://dx.doi.org/10.1037/a0033894","weightCitations":13,"weightLinks":2,"weightNormcitations":3.2727,"x":0.421,"y":-0.4254,"year":"2013"},{"authors":"kruglanski, aw; dechesne, m","cluster":31,"id":322,"label":"kruglanski (2006)","scoreCitations":13,"scoreNormcitations":0.8832,"scorePubyear":2006,"source":"psychological bulletin, 132(5), 736-739","title":"are associative and propositional processes qualitatively distinct? comment on gawronski and bodenhausen (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.5.736","weightCitations":13,"weightLinks":1,"weightNormcitations":0.8832,"x":0.0899,"y":-0.4698,"year":"2006"},{"authors":"gibbs, jc","cluster":34,"id":323,"label":"gibbs (2006)","scoreCitations":13,"scoreNormcitations":0.8832,"scorePubyear":2006,"source":"psychological review, 113(3), 666-671","title":"should kohlberg's cognitive developmental approach to morality be replaced with a more pragmatic approach? comment on krebs and denton (2005)","url":"http://dx.doi.org/10.1037/0033-295x.113.3.666","weightCitations":13,"weightLinks":2,"weightNormcitations":0.8832,"x":0.1761,"y":-0.3704,"year":"2006"},{"authors":"riccio, dc; richardson, r; ebner, dl","cluster":101,"id":324,"label":"riccio (1999)","scoreCitations":13,"scoreNormcitations":0.31,"scorePubyear":1999,"source":"psychological bulletin, 125(2), 187-189","title":"the contextual change paradox is still unresolved: comment on bouton, nelson, and rosas (1999)","url":"http://dx.doi.org/10.1037/0033-2909.125.2.187","weightCitations":13,"weightLinks":1,"weightNormcitations":0.31,"x":0.4277,"y":-0.1356,"year":"1999"},{"authors":"fellbaum, c; miller, ga","cluster":119,"id":325,"label":"fellbaum (1990)","scoreCitations":13,"scoreNormcitations":0.5969,"scorePubyear":1990,"source":"psychological review, 97(4), 565-570","title":"folk psychology or semantic entailment - comment","url":"http://dx.doi.org/10.1037//0033-295x.97.4.565","weightCitations":13,"weightLinks":1,"weightNormcitations":0.5969,"x":0.11,"y":0.4736,"year":"1990"},{"authors":"mcneill, d","cluster":20,"id":326,"label":"mcneill (1989)","scoreCitations":13,"scoreNormcitations":0.3171,"scorePubyear":1989,"source":"psychological review, 96(1), 175-179","title":"a straight path - to where - reply","url":"http://dx.doi.org/10.1037/0033-295x.96.1.175","weightCitations":13,"weightLinks":4,"weightNormcitations":0.3171,"x":-0.9261,"y":0.4731,"year":"1989"},{"authors":"morris, jd","cluster":89,"id":327,"label":"morris (1982)","scoreCitations":13,"scoreNormcitations":0.3081,"scorePubyear":1982,"source":"psychological bulletin, 91(1), 203-210","title":"ridge-regression and some alternative weighting techniques - a comment on darlington","url":"http://dx.doi.org/10.1037//0033-2909.91.1.203","weightCitations":13,"weightLinks":1,"weightNormcitations":0.3081,"x":-0.4567,"y":0.467,"year":"1982"},{"authors":"bartko, jj","cluster":78,"id":328,"label":"bartko (1978)","scoreCitations":13,"scoreNormcitations":0.5025,"scorePubyear":1978,"source":"psychological bulletin, 85(1), 139-140","title":"various intra-class correlation reliability coefficients - reply","weightCitations":13,"weightLinks":1,"weightNormcitations":0.5025,"x":0.2575,"y":0.6193,"year":"1978"},{"authors":"katahn, m; koplin, jh","cluster":266,"id":329,"label":"katahn (1968)","scoreCitations":13,"scoreNormcitations":0.5963,"scorePubyear":1968,"source":"psychological bulletin, 69(2), 147","title":"paradigm clash - comment on some recent criticisms of behaviorism and learning theory with special reference to breger and mcgaugh and to chomsky","url":"http://dx.doi.org/10.1037/h0025261","weightCitations":13,"weightLinks":0,"weightNormcitations":0.5963,"x":0.1059,"y":-1.0169,"year":"1968"},{"authors":"tharp, rg","cluster":267,"id":330,"label":"tharp (1964)","scoreCitations":13,"scoreNormcitations":1.4444,"scorePubyear":1964,"source":"psychological bulletin, 61(2), 158-160","title":"reply to levingers note","url":"http://dx.doi.org/10.1037/h0042315","weightCitations":13,"weightLinks":0,"weightNormcitations":1.4444,"x":0.3086,"y":1.0144,"year":"1964"},{"authors":"eichler, rm","cluster":268,"id":331,"label":"eichler (1951)","scoreCitations":13,"scoreNormcitations":0.7156,"scorePubyear":1951,"source":"psychological bulletin, 48(3), 257-259","title":"some comments on the controlling of differences in responses on the rorschach test","url":"http://dx.doi.org/10.1037/h0058318","weightCitations":13,"weightLinks":0,"weightNormcitations":0.7156,"x":-0.5484,"y":-0.7253,"year":"1951"},{"authors":"rubinow, dr; johnson, sl; schmidt, pj; girdler, s; gaynes, b","cluster":269,"id":332,"label":"rubinow (2015)","scoreCitations":12,"scoreNormcitations":5.0526,"scorePubyear":2015,"source":"depression and anxiety, 32(8), 539-549","title":"efficacy of estradiol in perimenopausal depression: so much promise and so few answers","url":"http://dx.doi.org/10.1002/da.22391","weightCitations":12,"weightLinks":0,"weightNormcitations":5.0526,"x":-0.3039,"y":0.4016,"year":"2015"},{"authors":"ericsson, ka; fox, mc","cluster":6,"id":333,"label":"ericsson (2011)","scoreCitations":12,"scoreNormcitations":1.3412,"scorePubyear":2011,"source":"psychological bulletin, 137(2), 351-354","title":"thinking aloud is not a form of introspection but a qualitatively different methodology: reply to schooler (2011)","url":"http://dx.doi.org/10.1037/a0022388","weightCitations":12,"weightLinks":1,"weightNormcitations":1.3412,"x":-0.1201,"y":0.6189,"year":"2011"},{"authors":"burt, sa","cluster":156,"id":334,"label":"burt (2010)","scoreCitations":12,"scoreNormcitations":0.53,"scorePubyear":2010,"source":"psychological bulletin, 136(3), 341-343","title":"are there shared environmental influences on attention-deficit/hyperactivity disorder? reply to wood, buitelaar, rijsdijk, asherson, and kunsti (2010)","url":"http://dx.doi.org/10.1037/a0019116","weightCitations":12,"weightLinks":1,"weightNormcitations":0.53,"x":-0.0125,"y":0.2404,"year":"2010"},{"authors":"ghetti, s","cluster":49,"id":335,"label":"ghetti (2008)","scoreCitations":12,"scoreNormcitations":0.6667,"scorePubyear":2008,"source":"psychological bulletin, 134(5), 764-767","title":"processes underlying developmental reversals in false-memory formation: comment on brainerd, reyna, and ceci (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.5.764","weightCitations":12,"weightLinks":1,"weightNormcitations":0.6667,"x":-0.0148,"y":0.9811,"year":"2008"},{"authors":"krebs, dl","cluster":18,"id":336,"label":"krebs (2003)","scoreCitations":12,"scoreNormcitations":0.4471,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 842-847","title":"fictions and facts about evolutionary approaches to human behavior: comment on lickliter and honeycutt (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.842","weightCitations":12,"weightLinks":1,"weightNormcitations":0.4471,"x":0.2932,"y":-0.5966,"year":"2003"},{"authors":"lickliter, r; honeycutt, h","cluster":18,"id":337,"label":"lickliter (2003)","scoreCitations":12,"scoreNormcitations":0.4471,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 866-872","title":"developmental dynamics and contemporary evolutionary psychology: status quo or irreconcilable views? reply to bjorklund (2003), krebs (2003), buss and reeve (2003), crawford (2003), and tooby et al. (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.866","weightCitations":12,"weightLinks":5,"weightNormcitations":0.4471,"x":0.2965,"y":-0.5832,"year":"2003"},{"authors":"andersen, bl; cyranowski, jm; aarestad, s","cluster":58,"id":338,"label":"andersen (2000)","scoreCitations":12,"scoreNormcitations":0.3121,"scorePubyear":2000,"source":"psychological bulletin, 126(3), 380-384","title":"beyond artificial, sex-linked distinctions to conceptualize female sexuality: comment on baumeister (2000)","url":"http://dx.doi.org/10.1037/0033-2909.126.3.380","weightCitations":12,"weightLinks":1,"weightNormcitations":0.3121,"x":-0.4337,"y":0.8878,"year":"2000"},{"authors":"haber, m","cluster":270,"id":339,"label":"haber (1990)","scoreCitations":12,"scoreNormcitations":0.551,"scorePubyear":1990,"source":"psychological bulletin, 108(1), 146-149","title":"the test of homogeneity for 2x2 contingency-tables - a review of and some personal opinions on the controversy - comments","url":"http://dx.doi.org/10.1037//0033-2909.108.1.146","weightCitations":12,"weightLinks":0,"weightNormcitations":0.551,"x":0.6448,"y":-0.6538,"year":"1990"},{"authors":"akiyama, mm","cluster":271,"id":340,"label":"akiyama (1979)","scoreCitations":12,"scoreNormcitations":1.0971,"scorePubyear":1979,"source":"cognitive psychology, 11(4), 485-504","title":"yes-no answering systems in young-children","url":"http://dx.doi.org/10.1016/0010-0285(79)90022-7","weightCitations":12,"weightLinks":0,"weightNormcitations":1.0971,"x":0.8163,"y":-0.1673,"year":"1979"},{"authors":"brainerd, cj; hooper, fh","cluster":272,"id":341,"label":"brainerd (1978)","scoreCitations":12,"scoreNormcitations":0.4639,"scorePubyear":1978,"source":"psychological bulletin, 85(1), 70-75","title":"more on identity-equivalence sequence - update and some replies to miller","url":"http://dx.doi.org/10.1037//0033-2909.85.1.70","weightCitations":12,"weightLinks":0,"weightNormcitations":0.4639,"x":-0.5338,"y":-0.9123,"year":"1978"},{"authors":"overall, je; spiegel, dk","cluster":273,"id":342,"label":"overall (1973)","scoreCitations":12,"scoreNormcitations":1.4783,"scorePubyear":1973,"source":"psychological bulletin, 80(1), 28-30","title":"comment on regression-analysis of proportional cell data","url":"http://dx.doi.org/10.1037/h0034629","weightCitations":12,"weightLinks":0,"weightNormcitations":1.4783,"x":-0.2844,"y":0.2004,"year":"1973"},{"authors":"harris, dr; bisbee, ct; evans, sh","cluster":274,"id":343,"label":"harris (1971)","scoreCitations":12,"scoreNormcitations":1.6134,"scorePubyear":1971,"source":"psychological bulletin, 75(3), 220","title":"further comments - misuse of analysis of covariance","url":"http://dx.doi.org/10.1037/h0030416","weightCitations":12,"weightLinks":0,"weightNormcitations":1.6134,"x":-0.8678,"y":-0.5472,"year":"1971"},{"authors":"thiessen, dd","cluster":131,"id":344,"label":"thiessen (1971)","scoreCitations":12,"scoreNormcitations":1.6134,"scorePubyear":1971,"source":"psychological bulletin, 75(2), 103","title":"reply to wilcock on gene action and behavior","url":"http://dx.doi.org/10.1037/h0030330","weightCitations":12,"weightLinks":1,"weightNormcitations":1.6134,"x":-0.0432,"y":0.6968,"year":"1971"},{"authors":"thiessen, dd","cluster":275,"id":345,"label":"thiessen (1971)","scoreCitations":12,"scoreNormcitations":1.6134,"scorePubyear":1971,"source":"psychological bulletin, 75(2), 103-105","title":"gene action and behavior - reply","url":"http://dx.doi.org/10.1037/h0030330","weightCitations":12,"weightLinks":0,"weightNormcitations":1.6134,"x":0.9525,"y":0.0351,"year":"1971"},{"authors":"wolpe, j","cluster":13,"id":346,"label":"wolpe (1971)","scoreCitations":12,"scoreNormcitations":1.6134,"scorePubyear":1971,"source":"psychological review, 78(4), 341","title":"behavioristic conception of neurosis - reply to 2 critics","url":"http://dx.doi.org/10.1037/h0031130","weightCitations":12,"weightLinks":2,"weightNormcitations":1.6134,"x":-0.422,"y":-0.3166,"year":"1971"},{"authors":"howard, ki; krause, ms","cluster":276,"id":347,"label":"howard (1970)","scoreCitations":12,"scoreNormcitations":0.2802,"scorePubyear":1970,"source":"psychological bulletin, 74(3), 219","title":"some comments on techniques for estimating source and direction of influence in panel data","url":"http://dx.doi.org/10.1037/h0029776","weightCitations":12,"weightLinks":0,"weightNormcitations":0.2802,"x":-0.4588,"y":0.623,"year":"1970"},{"authors":"nakatani, lh","cluster":277,"id":348,"label":"nakatani (1970)","scoreCitations":12,"scoreNormcitations":0.2802,"scorePubyear":1970,"source":"psychological review, 77(6), 574","title":"comments on broadbents response bias model for stimulus recognition","url":"http://dx.doi.org/10.1037/h0029929","weightCitations":12,"weightLinks":0,"weightNormcitations":0.2802,"x":-0.7052,"y":0.6424,"year":"1970"},{"authors":"blank, m","cluster":278,"id":349,"label":"blank (1965)","scoreCitations":12,"scoreNormcitations":0.9076,"scorePubyear":1965,"source":"psychological bulletin, 63(6), 442-444","title":"use of the deaf in language studies - a reply to furth","url":"http://dx.doi.org/10.1037/h0022016","weightCitations":12,"weightLinks":0,"weightNormcitations":0.9076,"x":0.5226,"y":0.1242,"year":"1965"},{"authors":"harris, cr; pashler, h; mickes, l","cluster":44,"id":350,"label":"harris (2014)","scoreCitations":11,"scoreNormcitations":1.6824,"scorePubyear":2014,"source":"psychological bulletin, 140(5), 1260-1264","title":"elastic analysis procedures: an incurable (but preventable) problem in the fertility effect literature. comment on gildersleeve, haselton, and fales (2014)","url":"http://dx.doi.org/10.1037/a0036478","weightCitations":11,"weightLinks":1,"weightNormcitations":1.6824,"x":-0.0639,"y":-0.5595,"year":"2014"},{"authors":"wood, w; carden, l","cluster":44,"id":351,"label":"wood (2014)","scoreCitations":11,"scoreNormcitations":1.6824,"scorePubyear":2014,"source":"psychological bulletin, 140(5), 1265-1271","title":"elusiveness of menstrual cycle effects on mate preferences: comment on gildersleeve, haselton, and fales (2014)","url":"http://dx.doi.org/10.1037/a0036722","weightCitations":11,"weightLinks":1,"weightNormcitations":1.6824,"x":-0.0675,"y":-0.5715,"year":"2014"},{"authors":"franklin, ms; mrazek, md; broadway, jm; schooler, jw","cluster":6,"id":352,"label":"franklin (2013)","scoreCitations":11,"scoreNormcitations":2.7692,"scorePubyear":2013,"source":"psychological bulletin, 139(3), 536-541","title":"disentangling decoupling: comment on smallwood (2013)","url":"http://dx.doi.org/10.1037/a0030515","weightCitations":11,"weightLinks":4,"weightNormcitations":2.7692,"x":-0.1779,"y":0.6142,"year":"2013"},{"authors":"smith, a","cluster":37,"id":353,"label":"smith (2012)","scoreCitations":11,"scoreNormcitations":1.4143,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1262-1268","title":"an update on noise and performance: comment on szalma and hancock (2011)","url":"http://dx.doi.org/10.1037/a0028867","weightCitations":11,"weightLinks":2,"weightNormcitations":1.4143,"x":0.5652,"y":0.3158,"year":"2012"},{"authors":"schooler, jw","cluster":6,"id":354,"label":"schooler (2011)","scoreCitations":11,"scoreNormcitations":1.2294,"scorePubyear":2011,"source":"psychological bulletin, 137(2), 345-350","title":"introspecting in the spirit of william james: comment on fox, ericsson, and best (2011)","url":"http://dx.doi.org/10.1037/a0022390","weightCitations":11,"weightLinks":2,"weightNormcitations":1.2294,"x":-0.1261,"y":0.6163,"year":"2011"},{"authors":"gawronski, b; lebel, ep; peters, kr; banse, r","cluster":48,"id":355,"label":"gawronski (2009)","scoreCitations":11,"scoreNormcitations":1.6328,"scorePubyear":2009,"source":"psychological bulletin, 135(3), 369-372","title":"methodological issues in the validation of implicit measures: comment on de houwer, teige-mocigemba, spruyt, and moors (2009)","url":"http://dx.doi.org/10.1037/a0014820","weightCitations":11,"weightLinks":1,"weightNormcitations":1.6328,"x":-0.3519,"y":-0.9969,"year":"2009"},{"authors":"murray, ws; forster, ki","cluster":279,"id":356,"label":"murray (2008)","scoreCitations":11,"scoreNormcitations":0.6111,"scorePubyear":2008,"source":"psychological review, 115(1), 240-251","title":"the rank hypothesis and lexical decision: a reply to adelman and brown (2008)","url":"http://dx.doi.org/10.1037/0033-295x.115.1.240","weightCitations":11,"weightLinks":0,"weightNormcitations":0.6111,"x":0.2853,"y":0.7371,"year":"2008"},{"authors":"morling, b; evered, s","cluster":70,"id":357,"label":"morling (2007)","scoreCitations":11,"scoreNormcitations":1.1154,"scorePubyear":2007,"source":"psychological bulletin, 133(6), 917-919","title":"the construct formerly known as secondary control: reply to skinner (2007)","url":"http://dx.doi.org/10.1037/0033-2909.133.6.917","weightCitations":11,"weightLinks":1,"weightNormcitations":1.1154,"x":-0.0262,"y":1.0684,"year":"2007"},{"authors":"macmillan, na; rotello, cm","cluster":32,"id":358,"label":"macmillan (2006)","scoreCitations":11,"scoreNormcitations":0.7473,"scorePubyear":2006,"source":"psychological review, 113(3), 657-664","title":"deciding about decision models of remember and know judgments: a reply to murdock (2006)","url":"http://dx.doi.org/10.1037/0033-295x.113.3.657","weightCitations":11,"weightLinks":2,"weightNormcitations":0.7473,"x":-0.314,"y":-0.2341,"year":"2006"},{"authors":"griffin, d; buehler, r","cluster":90,"id":359,"label":"griffin (2005)","scoreCitations":11,"scoreNormcitations":0.4962,"scorePubyear":2005,"source":"psychological bulletin, 131(5), 757-760","title":"biases and fallacies, memories and predictions: comment on roy, christenfeld, and mckenzie (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.5.757","weightCitations":11,"weightLinks":1,"weightNormcitations":0.4962,"x":-0.1422,"y":-1.0518,"year":"2005"},{"authors":"archer, j","cluster":91,"id":360,"label":"archer (2001)","scoreCitations":11,"scoreNormcitations":0.8333,"scorePubyear":2001,"source":"psychological bulletin, 127(4), 554-560","title":"broad and narrow perspectives in grief theory: comment on bonanno and kaltman (1999)","url":"http://dx.doi.org/10.1037/0033-2909.127.4.554","weightCitations":11,"weightLinks":1,"weightNormcitations":0.8333,"x":0.9058,"y":-0.5727,"year":"2001"},{"authors":"hedges, lv","cluster":280,"id":361,"label":"hedges (1982)","scoreCitations":11,"scoreNormcitations":0.2607,"scorePubyear":1982,"source":"psychological bulletin, 91(3), 691-693","title":"estimation and testing for differences in effect size - a comment","url":"http://dx.doi.org/10.1037//0033-2909.91.3.691","weightCitations":11,"weightLinks":0,"weightNormcitations":0.2607,"x":-0.8114,"y":0.3162,"year":"1982"},{"authors":"ledwidge, b","cluster":281,"id":362,"label":"ledwidge (1979)","scoreCitations":11,"scoreNormcitations":1.0057,"scorePubyear":1979,"source":"psychological bulletin, 86(5), 1050-1053","title":"cognitive behavior-modification or new ways to change minds - reply","url":"http://dx.doi.org/10.1037//0033-2909.86.5.1050","weightCitations":11,"weightLinks":0,"weightNormcitations":1.0057,"x":0.9535,"y":-0.3541,"year":"1979"},{"authors":"scull, at","cluster":282,"id":363,"label":"scull (1979)","scoreCitations":11,"scoreNormcitations":1.0057,"scorePubyear":1979,"source":"psychological medicine, 9(3), 421-428","title":"moral treatment reconsidered - some sociological comments on an episode in the history of british psychiatry","weightCitations":11,"weightLinks":0,"weightNormcitations":1.0057,"x":0.6715,"y":0.5654,"year":"1979"},{"authors":"shoben, ej","cluster":283,"id":364,"label":"shoben (1978)","scoreCitations":11,"scoreNormcitations":0.4252,"scorePubyear":1978,"source":"psychological review, 85(2), 131-137","title":"choosing a model of sentence-picture comparisons - reply","url":"http://dx.doi.org/10.1037//0033-295x.85.2.131","weightCitations":11,"weightLinks":0,"weightNormcitations":0.4252,"x":0.1496,"y":0.0131,"year":"1978"},{"authors":"obrien, rg","cluster":284,"id":365,"label":"obrien (1976)","scoreCitations":11,"scoreNormcitations":0.9625,"scorePubyear":1976,"source":"psychological bulletin, 83(1), 72-74","title":"some problems in nonorthogonal analysis of variance - comment","url":"http://dx.doi.org/10.1037//0033-2909.83.1.72","weightCitations":11,"weightLinks":0,"weightNormcitations":0.9625,"x":0.7349,"y":0.4135,"year":"1976"},{"authors":"labouvie, ew","cluster":111,"id":366,"label":"labouvie (1975)","scoreCitations":11,"scoreNormcitations":2.5,"scorePubyear":1975,"source":"psychological bulletin, 82(2), 165-169","title":"extension of developmental models - reply","url":"http://dx.doi.org/10.1037/h0076447","weightCitations":11,"weightLinks":1,"weightNormcitations":2.5,"x":-0.2549,"y":-0.4447,"year":"1975"},{"authors":"gibson, jj","cluster":92,"id":367,"label":"gibson (1973)","scoreCitations":11,"scoreNormcitations":1.3551,"scorePubyear":1973,"source":"psychological bulletin, 79(6), 396-397","title":"direct visual-perception - reply to gyr","url":"http://dx.doi.org/10.1037/h0034355","weightCitations":11,"weightLinks":1,"weightNormcitations":1.3551,"x":0.0754,"y":-0.2478,"year":"1973"},{"authors":"singer, g; montgome, rb; broverma, dm; klaiber, el; kobayash, y; vogel, w","cluster":285,"id":368,"label":"singer (1969)","scoreCitations":11,"scoreNormcitations":0.4648,"scorePubyear":1969,"source":"psychological review, 76(3), 325","title":"comment on roles of activation and inhibition in sex differences in cognitive abilities","url":"http://dx.doi.org/10.1037/h0027286","weightCitations":11,"weightLinks":0,"weightNormcitations":0.4648,"x":-0.9381,"y":0.305,"year":"1969"},{"authors":"anderson, he; bashaw, wl","cluster":286,"id":369,"label":"anderson (1966)","scoreCitations":11,"scoreNormcitations":0.8148,"scorePubyear":1966,"source":"psychological bulletin, 66(3), 211","title":"further comments on internal structure of mmpi","url":"http://dx.doi.org/10.1037/h0023623","weightCitations":11,"weightLinks":0,"weightNormcitations":0.8148,"x":-0.1559,"y":-0.6979,"year":"1966"},{"authors":"adams, ja","cluster":287,"id":370,"label":"adams (1963)","scoreCitations":11,"scoreNormcitations":1.5439,"scorePubyear":1963,"source":"psychological bulletin, 60(5), 460-463","title":"reconsideration of the extinction hypothesis of warm up in motor behavior - comment","url":"http://dx.doi.org/10.1037/h0043229","weightCitations":11,"weightLinks":0,"weightNormcitations":1.5439,"x":-0.3496,"y":-0.6266,"year":"1963"},{"authors":"sheffield, fd","cluster":288,"id":371,"label":"sheffield (1957)","scoreCitations":11,"scoreNormcitations":1.1892,"scorePubyear":1957,"source":"psychological bulletin, 54(5), 426-428","title":"comment on a distribution-free factorial-design analysis","url":"http://dx.doi.org/10.1037/h0040426","weightCitations":11,"weightLinks":0,"weightNormcitations":1.1892,"x":-0.6415,"y":0.8695,"year":"1957"},{"authors":"nissen, hw","cluster":93,"id":372,"label":"nissen (1952)","scoreCitations":11,"scoreNormcitations":1.1493,"scorePubyear":1952,"source":"psychological review, 59(2), 161-167","title":"further comment on approach avoidance as categories of response","url":"http://dx.doi.org/10.1037/h0054404","weightCitations":11,"weightLinks":1,"weightNormcitations":1.1493,"x":0.0471,"y":-0.0809,"year":"1952"},{"authors":"young, pt","cluster":289,"id":373,"label":"young (1949)","scoreCitations":11,"scoreNormcitations":0.8302,"scorePubyear":1949,"source":"psychological review, 56(4), 184-191","title":"emotion as disorganized response - a reply","url":"http://dx.doi.org/10.1037/h0054176","weightCitations":11,"weightLinks":0,"weightNormcitations":0.8302,"x":0.5993,"y":-0.3937,"year":"1949"},{"authors":"paxton, jm; bruni, t; greene, jd","cluster":9,"id":374,"label":"paxton (2014)","scoreCitations":10,"scoreNormcitations":1.5294,"scorePubyear":2014,"source":"social cognitive and affective neuroscience, 9(9), 1368-1371","title":"are 'counter-intuitive' deontological judgments really counter- intuitive? an empirical reply to kahane et al. (2012)","url":"http://dx.doi.org/10.1093/scan/nst102","weightCitations":10,"weightLinks":1,"weightNormcitations":1.5294,"x":0.2643,"y":-0.3094,"year":"2014"},{"authors":"smallwood, j","cluster":6,"id":375,"label":"smallwood (2013)","scoreCitations":10,"scoreNormcitations":2.5175,"scorePubyear":2013,"source":"psychological bulletin, 139(3), 542-547","title":"searching for the elements of thought: reply to franklin, mrazek, broadway, and schooler (2013)","url":"http://dx.doi.org/10.1037/a0031019","weightCitations":10,"weightLinks":3,"weightNormcitations":2.5175,"x":-0.1827,"y":0.6037,"year":"2013"},{"authors":"rabbitt, p","cluster":45,"id":376,"label":"rabbitt (2011)","scoreCitations":10,"scoreNormcitations":1.1176,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 785-789","title":"between-individual variability and interpretation of associations between neurophysiological and behavioral measures in aging populations: comment on salthouse (2011)","url":"http://dx.doi.org/10.1037/a0024580","weightCitations":10,"weightLinks":1,"weightNormcitations":1.1176,"x":-0.0344,"y":0.0173,"year":"2011"},{"authors":"hyman, r","cluster":22,"id":377,"label":"hyman (2010)","scoreCitations":10,"scoreNormcitations":0.4416,"scorePubyear":2010,"source":"psychological bulletin, 136(4), 486-490","title":"meta-analysis that conceals more than it reveals: comment on storm et al. (2010)","url":"http://dx.doi.org/10.1037/a0019676","weightCitations":10,"weightLinks":4,"weightNormcitations":0.4416,"x":0.385,"y":0.2788,"year":"2010"},{"authors":"martin, m; papadatou-pastou, m; jones, gv; munafo, mr","cluster":108,"id":378,"label":"martin (2010)","scoreCitations":10,"scoreNormcitations":0.4416,"scorePubyear":2010,"source":"psychological bulletin, 136(3), 348-350","title":"sex and location as determinants of handedness: reply to vuoksimaa and kaprio (2010)","url":"http://dx.doi.org/10.1037/a0019215","weightCitations":10,"weightLinks":1,"weightNormcitations":0.4416,"x":0.3093,"y":-0.9297,"year":"2010"},{"authors":"watkins, er","cluster":6,"id":379,"label":"watkins (2010)","scoreCitations":10,"scoreNormcitations":0.4416,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 198-201","title":"level of construal, mind wandering, and repetitive thought: reply to mcvay and kane (2010)","url":"http://dx.doi.org/10.1037/a0018563","weightCitations":10,"weightLinks":3,"weightNormcitations":0.4416,"x":-0.1669,"y":0.5719,"year":"2010"},{"authors":"bowers, js; damian, mf; davis, cj","cluster":3,"id":380,"label":"bowers (2009)","scoreCitations":10,"scoreNormcitations":1.4844,"scorePubyear":2009,"source":"psychological review, 116(4), 986-995","title":"a fundamental limitation of the conjunctive codes learned in pdp models of cognition: comment on botvinick and plaut (2006)","url":"http://dx.doi.org/10.1037/a0017097","weightCitations":10,"weightLinks":2,"weightNormcitations":1.4844,"x":-0.763,"y":-0.0522,"year":"2009"},{"authors":"kahana, mj; sederberg, pb; howard, mw","cluster":94,"id":381,"label":"kahana (2008)","scoreCitations":10,"scoreNormcitations":0.5556,"scorePubyear":2008,"source":"psychological review, 115(4), 1119-1125","title":"putting short-term memory into context: reply to usher, davelaar, haarmann, and goshen-gottstein (2008)","url":"http://dx.doi.org/10.1037/a0013724","weightCitations":10,"weightLinks":1,"weightNormcitations":0.5556,"x":0.7421,"y":0.0768,"year":"2008"},{"authors":"rhemtulla, m; xu, f","cluster":95,"id":382,"label":"rhemtulla (2007)","scoreCitations":10,"scoreNormcitations":1.014,"scorePubyear":2007,"source":"psychological review, 114(4), 1087-1094","title":"sortal concepts and causal continuity: comment on rips, blok, and newman (2006)","url":"http://dx.doi.org/10.1037/0033-295x.114.4.1087","weightCitations":10,"weightLinks":1,"weightNormcitations":1.014,"x":-0.3426,"y":0.0969,"year":"2007"},{"authors":"beier, me; ackerman, pl","cluster":25,"id":383,"label":"beier (2005)","scoreCitations":10,"scoreNormcitations":0.4511,"scorePubyear":2005,"source":"psychological bulletin, 131(1), 72-75","title":"working memory and intelligence: different constructs. reply to oberauer et al. (2005) and kane et al. (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.1.72","weightCitations":10,"weightLinks":3,"weightNormcitations":0.4511,"x":-0.2578,"y":-0.5526,"year":"2005"},{"authors":"pyszczynski, t; greenberg, j; solomon, s; arndt, j; schimel, j","cluster":10,"id":384,"label":"pyszczynski (2004)","scoreCitations":10,"scoreNormcitations":0.4314,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 483-488","title":"converging toward an integrated theory of self-esteem: reply to crocker and nuer (2004), ryan and deci (2004), and leary (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.483","weightCitations":10,"weightLinks":4,"weightNormcitations":0.4314,"x":0.1592,"y":0.7837,"year":"2004"},{"authors":"oliver, mb; hyde, js","cluster":62,"id":385,"label":"oliver (1995)","scoreCitations":10,"scoreNormcitations":0.3409,"scorePubyear":1995,"source":"psychological bulletin, 117(1), 155-158","title":"gender differences in attitudes toward homosexuality - a reply to whitley and kite","url":"http://dx.doi.org/10.1037//0033-2909.117.1.155","weightCitations":10,"weightLinks":1,"weightNormcitations":0.3409,"x":0.5372,"y":-0.3556,"year":"1995"},{"authors":"halpern, df; coren, s","cluster":96,"id":386,"label":"halpern (1993)","scoreCitations":10,"scoreNormcitations":0.2564,"scorePubyear":1993,"source":"psychological bulletin, 114(2), 235-241","title":"left-handedness and life-span - a reply","weightCitations":10,"weightLinks":1,"weightNormcitations":0.2564,"x":0.0954,"y":-0.1494,"year":"1993"},{"authors":"gentner, dr","cluster":290,"id":387,"label":"gentner (1988)","scoreCitations":10,"scoreNormcitations":0.6667,"scorePubyear":1988,"source":"psychological review, 95(4), 558-558","title":"observed movements reflect both central and peripheral mechanisms - reply","url":"http://dx.doi.org/10.1037//0033-295x.95.4.558","weightCitations":10,"weightLinks":0,"weightNormcitations":0.6667,"x":0.6408,"y":0.005,"year":"1988"},{"authors":"wolfe, jm","cluster":291,"id":388,"label":"wolfe (1988)","scoreCitations":10,"scoreNormcitations":0.6667,"scorePubyear":1988,"source":"psychological review, 95(1), 155-158","title":"parallel ideas about stereopsis and binocular-rivalry - a reply","url":"http://dx.doi.org/10.1037/0033-295x.95.1.155","weightCitations":10,"weightLinks":0,"weightNormcitations":0.6667,"x":-0.0822,"y":0.4456,"year":"1988"},{"authors":"craik, fim; lockhart, rs","cluster":292,"id":389,"label":"craik (1986)","scoreCitations":10,"scoreNormcitations":0.6011,"scorePubyear":1986,"source":"psychological review, 93(3), 360-364","title":"charm is not enough - comments on eich model of cued-recall","url":"http://dx.doi.org/10.1037/0033-295x.93.3.360","weightCitations":10,"weightLinks":0,"weightNormcitations":0.6011,"x":0.5815,"y":-0.1698,"year":"1986"},{"authors":"kokkinidis, l; anisman, h","cluster":83,"id":390,"label":"kokkinidis (1983)","scoreCitations":10,"scoreNormcitations":0.8421,"scorePubyear":1983,"source":"psychological bulletin, 93(2), 368-372","title":"amphetamine-induced stereotypy - reply","weightCitations":10,"weightLinks":1,"weightNormcitations":0.8421,"x":-0.3704,"y":0.342,"year":"1983"},{"authors":"krauskopf, cj","cluster":293,"id":391,"label":"krauskopf (1978)","scoreCitations":10,"scoreNormcitations":0.3866,"scorePubyear":1978,"source":"psychological bulletin, 85(2), 280-283","title":"comment on endler and magnussons attempt to redefine personality","weightCitations":10,"weightLinks":0,"weightNormcitations":0.3866,"x":0.6715,"y":0.0735,"year":"1978"},{"authors":"bentler, pm","cluster":294,"id":392,"label":"bentler (1973)","scoreCitations":10,"scoreNormcitations":1.2319,"scorePubyear":1973,"source":"psychological bulletin, 80(2), 133-134","title":"analysis of responses to adjectives - reply to samelson","url":"http://dx.doi.org/10.1037/h0034741","weightCitations":10,"weightLinks":0,"weightNormcitations":1.2319,"x":-0.7484,"y":-0.5486,"year":"1973"},{"authors":"greenough, wt; maier, sf","cluster":65,"id":393,"label":"greenough (1972)","scoreCitations":10,"scoreNormcitations":1.7284,"scorePubyear":1972,"source":"psychological bulletin, 78(6), 480-482","title":"molecular changes during learning - behavioral strategy - comment on gaito and bonnet","url":"http://dx.doi.org/10.1037/h0033683","weightCitations":10,"weightLinks":1,"weightNormcitations":1.7284,"x":0.0049,"y":-0.1714,"year":"1972"},{"authors":"martin, e; greeno, jg","cluster":88,"id":394,"label":"martin (1972)","scoreCitations":10,"scoreNormcitations":1.7284,"scorePubyear":1972,"source":"psychological review, 79(3), 265","title":"independence of associations tested - reply","url":"http://dx.doi.org/10.1037/h0032685","weightCitations":10,"weightLinks":1,"weightNormcitations":1.7284,"x":0.6475,"y":-0.7304,"year":"1972"},{"authors":"bernbach, ha","cluster":295,"id":395,"label":"bernbach (1971)","scoreCitations":10,"scoreNormcitations":1.3445,"scorePubyear":1971,"source":"psychological bulletin, 76(2), 149-150","title":"invariance of d in memory - reply","url":"http://dx.doi.org/10.1037/h0031347","weightCitations":10,"weightLinks":0,"weightNormcitations":1.3445,"x":-0.6915,"y":-0.7293,"year":"1971"},{"authors":"freeman, rb","cluster":296,"id":396,"label":"freeman (1966)","scoreCitations":10,"scoreNormcitations":0.7407,"scorePubyear":1966,"source":"psychological review, 73(4), 365","title":"optical texture versus retinal perspective - a reply to flock","url":"http://dx.doi.org/10.1037/h0023432","weightCitations":10,"weightLinks":0,"weightNormcitations":0.7407,"x":0.4376,"y":0.5914,"year":"1966"},{"authors":"jung, j","cluster":84,"id":397,"label":"jung (1965)","scoreCitations":10,"scoreNormcitations":0.7563,"scorePubyear":1965,"source":"psychological review, 72(4), 318-322","title":"comments on mandler from association to structure","url":"http://dx.doi.org/10.1037/h0022017","weightCitations":10,"weightLinks":1,"weightNormcitations":0.7563,"x":-1.0198,"y":0.2967,"year":"1965"},{"authors":"seward, jp","cluster":63,"id":398,"label":"seward (1948)","scoreCitations":10,"scoreNormcitations":0.7018,"scorePubyear":1948,"source":"psychological review, 55(5), 277-296","title":"the sign of a symbol - a reply to professor allport","url":"http://dx.doi.org/10.1037/h0053663","weightCitations":10,"weightLinks":1,"weightNormcitations":0.7018,"x":-1.0594,"y":-0.1621,"year":"1948"},{"authors":"wood, jm; garb, hn; nezworski, mt; lilienfeld, so; duke, mc","cluster":113,"id":399,"label":"wood (2015)","scoreCitations":9,"scoreNormcitations":3.7895,"scorePubyear":2015,"source":"psychological bulletin, 141(1), 236-249","title":"a second look at the validity of widely used rorschach indices: comment on mihura, meyer, dumitrascu, and bombel (2013)","url":"http://dx.doi.org/10.1037/a0036005","weightCitations":9,"weightLinks":1,"weightNormcitations":3.7895,"x":-0.661,"y":0.2027,"year":"2015"},{"authors":"frick, pj; ray, jv; thornton, lc; kahn, re","cluster":11,"id":400,"label":"frick (2014)","scoreCitations":9,"scoreNormcitations":1.3765,"scorePubyear":2014,"source":"psychological bulletin, 140(1), 64-68","title":"the road forward for research on callous-unemotional traits: reply to lahey (2014)","url":"http://dx.doi.org/10.1037/a0033710","weightCitations":9,"weightLinks":2,"weightNormcitations":1.3765,"x":0.4964,"y":-0.0274,"year":"2014"},{"authors":"denollet, j","cluster":15,"id":401,"label":"denollet (2013)","scoreCitations":9,"scoreNormcitations":2.2657,"scorePubyear":2013,"source":"psychological bulletin, 139(5), 991-997","title":"interpersonal sensitivity, social inhibition, and type d personality: how and when are they associated with health? comment on mann and miller (2013)","url":"http://dx.doi.org/10.1037/a0033537","weightCitations":9,"weightLinks":1,"weightNormcitations":2.2657,"x":-0.9013,"y":0.2008,"year":"2013"},{"authors":"large, m; ryan, cj","cluster":76,"id":402,"label":"large (2012)","scoreCitations":9,"scoreNormcitations":1.1571,"scorePubyear":2012,"source":"psychological medicine, 42(9), 2011-2012","title":"screening for suicide: a comment on steeg et al.","url":"http://dx.doi.org/10.1017/s0033291712001377","weightCitations":9,"weightLinks":1,"weightNormcitations":1.1571,"x":-0.149,"y":0.0701,"year":"2012"},{"authors":"turkheimer, e","cluster":97,"id":403,"label":"turkheimer (2011)","scoreCitations":9,"scoreNormcitations":1.0059,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 825-828","title":"genetics and human agency: comment on dar-nimrod and heine (2011)","url":"http://dx.doi.org/10.1037/a0024306","weightCitations":9,"weightLinks":1,"weightNormcitations":1.0059,"x":-0.0435,"y":0.5152,"year":"2011"},{"authors":"storm, l; tressoldi, pe; di risio, l","cluster":22,"id":404,"label":"storm (2010)","scoreCitations":9,"scoreNormcitations":0.3975,"scorePubyear":2010,"source":"psychological bulletin, 136(4), 491-494","title":"a meta-analysis with nothing to hide: reply to hyman (2010)","url":"http://dx.doi.org/10.1037/a0019840","weightCitations":9,"weightLinks":1,"weightNormcitations":0.3975,"x":0.3792,"y":0.2879,"year":"2010"},{"authors":"beals, j; belcourt-dittloff, a; freedenthal, s; kaufman, c; mitchell, c; whitesell, n; albright, k; beauvais, f; belcourt, g; duran, b; fleming, c; floersch, n; foley, k; jervis, l; kipp, bj; mail, p; manson, s; may, p; mohatt, g; morse, b; novins, d; o'connell, j; parker, t; quintero, g; spicer, p; stiffman, a; stone, j; trimble, j; venner, k; walters, k","cluster":157,"id":405,"label":"beals (2009)","scoreCitations":9,"scoreNormcitations":1.3359,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 339-343","title":"reflections on a proposed theory of reservation-dwelling american indian alcohol use: comment on spillane and smith (2007)","url":"http://dx.doi.org/10.1037/a0014819","weightCitations":9,"weightLinks":1,"weightNormcitations":1.3359,"x":0.9881,"y":-0.2106,"year":"2009"},{"authors":"corr, pj","cluster":16,"id":406,"label":"corr (2005)","scoreCitations":9,"scoreNormcitations":0.406,"scorePubyear":2005,"source":"psychological bulletin, 131(2), 231-236","title":"social exclusion and the hierarchical defense system: comment on macdonald and leary (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.2.231","weightCitations":9,"weightLinks":1,"weightNormcitations":0.406,"x":0.6091,"y":-0.8242,"year":"2005"},{"authors":"roberts, s; pashler, h","cluster":2,"id":407,"label":"roberts (2002)","scoreCitations":9,"scoreNormcitations":0.1699,"scorePubyear":2002,"source":"psychological review, 109(3), 605-607","title":"theory development should begin (but not end) with good empirical fits: a comment on roberts and pashler (2000) - reply to rodgers and rowe (2002)","url":"http://dx.doi.org/10.1037//0033-295x.109.3.605","weightCitations":9,"weightLinks":2,"weightNormcitations":0.1699,"x":-0.4128,"y":-0.1778,"year":"2002"},{"authors":"kirsch, i; lynn, sj","cluster":9,"id":408,"label":"kirsch (1998)","scoreCitations":9,"scoreNormcitations":0.683,"scorePubyear":1998,"source":"psychological bulletin, 123(2), 198-202","title":"dissociating the wheat from the chaff in theories of hypnosis: reply to kihlstrom (1998) and woody and sadler (1998)","url":"http://dx.doi.org/10.1037/0033-2909.123.2.198","weightCitations":9,"weightLinks":3,"weightNormcitations":0.683,"x":0.3013,"y":-0.2777,"year":"1998"},{"authors":"brody, n","cluster":297,"id":409,"label":"brody (1990)","scoreCitations":9,"scoreNormcitations":0.4133,"scorePubyear":1990,"source":"psychological bulletin, 107(1), 106-109","title":"behavior-therapy versus placebo - comment on bowers and clum meta-analysis","url":"http://dx.doi.org/10.1037/0033-2909.107.1.106","weightCitations":9,"weightLinks":0,"weightNormcitations":0.4133,"x":-0.1252,"y":-0.7511,"year":"1990"},{"authors":"abbott, bb; badia, p","cluster":298,"id":410,"label":"abbott (1986)","scoreCitations":9,"scoreNormcitations":0.541,"scorePubyear":1986,"source":"psychological bulletin, 100(3), 384-387","title":"predictable versus unpredictable shock conditions and physiological measures of stress - a reply","url":"http://dx.doi.org/10.1037//0033-2909.100.3.384","weightCitations":9,"weightLinks":0,"weightNormcitations":0.541,"x":0.8638,"y":-0.0516,"year":"1986"},{"authors":"brief, ap","cluster":299,"id":411,"label":"brief (1980)","scoreCitations":9,"scoreNormcitations":0.9,"scorePubyear":1980,"source":"psychological bulletin, 88(1), 78-79","title":"peer assessment revisited - a brief comment on kane and lawler","weightCitations":9,"weightLinks":0,"weightNormcitations":0.9,"x":-0.9118,"y":-0.2059,"year":"1980"},{"authors":"banks, wc; mcquater, gv; ross, ja","cluster":300,"id":412,"label":"banks (1979)","scoreCitations":9,"scoreNormcitations":0.8229,"scorePubyear":1979,"source":"psychological bulletin, 86(1), 33-36","title":"importance of white preference and the comparative difference of blacks and others - reply","url":"http://dx.doi.org/10.1037//0033-2909.86.1.33","weightCitations":9,"weightLinks":0,"weightNormcitations":0.8229,"x":-0.6171,"y":-0.7292,"year":"1979"},{"authors":"bejar, ii","cluster":301,"id":413,"label":"bejar (1978)","scoreCitations":9,"scoreNormcitations":0.3479,"scorePubyear":1978,"source":"psychological bulletin, 85(2), 325-326","title":"comment on dziuban and shirkeys decision rules for factor-analysis","url":"http://dx.doi.org/10.1037//0033-2909.85.2.325","weightCitations":9,"weightLinks":0,"weightNormcitations":0.3479,"x":1.0763,"y":0.0254,"year":"1978"},{"authors":"walsh, rn; cummins, ra","cluster":302,"id":414,"label":"walsh (1978)","scoreCitations":9,"scoreNormcitations":0.3479,"scorePubyear":1978,"source":"psychological bulletin, 85(3), 587-589","title":"caveats for future research on open-field test - comment on royce","url":"http://dx.doi.org/10.1037//0033-2909.85.3.587","weightCitations":9,"weightLinks":0,"weightNormcitations":0.3479,"x":0.6415,"y":-0.2044,"year":"1978"},{"authors":"woods, sc; kaestner, e; vasselli, jr","cluster":112,"id":415,"label":"woods (1975)","scoreCitations":9,"scoreNormcitations":2.0455,"scorePubyear":1975,"source":"psychological review, 82(2), 165-168","title":"insulin, growth-hormone, body-weight, and feeding - reply","url":"http://dx.doi.org/10.1037/h0076801","weightCitations":9,"weightLinks":1,"weightNormcitations":2.0455,"x":-0.7145,"y":0.0627,"year":"1975"},{"authors":"theodor, lh","cluster":303,"id":416,"label":"theodor (1972)","scoreCitations":9,"scoreNormcitations":1.5556,"scorePubyear":1972,"source":"psychological bulletin, 78(4), 260","title":"neglected parameter - some comments on a table for calculation of d' and beta","url":"http://dx.doi.org/10.1037/h0033119","weightCitations":9,"weightLinks":0,"weightNormcitations":1.5556,"x":0.3185,"y":0.5323,"year":"1972"},{"authors":"postman, l","cluster":304,"id":417,"label":"postman (1966)","scoreCitations":9,"scoreNormcitations":0.6667,"scorePubyear":1966,"source":"psychological bulletin, 65(6), 383","title":"reply to greenwald","url":"http://dx.doi.org/10.1037/h0023345","weightCitations":9,"weightLinks":0,"weightNormcitations":0.6667,"x":-0.2189,"y":-0.8745,"year":"1966"},{"authors":"pinneau, sr","cluster":98,"id":418,"label":"pinneau (1955)","scoreCitations":9,"scoreNormcitations":0.4045,"scorePubyear":1955,"source":"psychological bulletin, 52(5), 459-462","title":"the infantile disorders of hospitalism and anaclitic depression - reply","url":"http://dx.doi.org/10.1037/h0040503","weightCitations":9,"weightLinks":1,"weightNormcitations":0.4045,"x":1.0667,"y":-0.0595,"year":"1955"},{"authors":"lench, hc; bench, sw; flores, sa","cluster":75,"id":419,"label":"lench (2013)","scoreCitations":8,"scoreNormcitations":2.014,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 264-268","title":"searching for evidence, not a war: reply to lindquist, siegel, quigley, and barrett (2013)","url":"http://dx.doi.org/10.1037/a0029296","weightCitations":8,"weightLinks":1,"weightNormcitations":2.014,"x":0.4766,"y":0.9568,"year":"2013"},{"authors":"hills, tt; hertwig, r","cluster":99,"id":420,"label":"hills (2012)","scoreCitations":8,"scoreNormcitations":1.0286,"scorePubyear":2012,"source":"psychological review, 119(4), 888-892","title":"two distinct exploratory behaviors in decisions from experience: comment on gonzalez and dutt (2011)","url":"http://dx.doi.org/10.1037/a0028004","weightCitations":8,"weightLinks":1,"weightNormcitations":1.0286,"x":-0.6624,"y":0.4502,"year":"2012"},{"authors":"murdock, b","cluster":100,"id":421,"label":"murdock (2008)","scoreCitations":8,"scoreNormcitations":0.4444,"scorePubyear":2008,"source":"psychological review, 115(3), 779-780","title":"issues with the simple model: comment on brown, neath, and chater (2007)","url":"http://dx.doi.org/10.1037/0033-295x.115.3.779","weightCitations":8,"weightLinks":1,"weightNormcitations":0.4444,"x":-0.3826,"y":0.4262,"year":"2008"},{"authors":"stewart, n","cluster":109,"id":422,"label":"stewart (2007)","scoreCitations":8,"scoreNormcitations":0.8112,"scorePubyear":2007,"source":"psychological review, 114(2), 533-538","title":"absolute identification is relative: a reply to brown, marley, and lacouture (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.2.533","weightCitations":8,"weightLinks":1,"weightNormcitations":0.8112,"x":-0.0804,"y":0.1234,"year":"2007"},{"authors":"albarracin, d; hart, w; mcculloch, kc","cluster":31,"id":423,"label":"albarracin (2006)","scoreCitations":8,"scoreNormcitations":0.5435,"scorePubyear":2006,"source":"psychological bulletin, 132(5), 732-735","title":"associating versus proposing or associating what we propose: comment on gawronski and bodenhausen (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.5.732","weightCitations":8,"weightLinks":1,"weightNormcitations":0.5435,"x":0.0751,"y":-0.4732,"year":"2006"},{"authors":"weissberg, nc; owen, dr","cluster":129,"id":424,"label":"weissberg (2005)","scoreCitations":8,"scoreNormcitations":0.3609,"scorePubyear":2005,"source":"psychological bulletin, 131(3), 407-409","title":"do psychosocial and study skill factors predict college outcomes? comment on robbins et al. (2004)","url":"http://dx.doi.org/10.1037/0033-2909.131.3.407","weightCitations":8,"weightLinks":1,"weightNormcitations":0.3609,"x":-0.2392,"y":0.0452,"year":"2005"},{"authors":"macdonald, g; leary, mr","cluster":16,"id":425,"label":"macdonald (2005)","scoreCitations":8,"scoreNormcitations":0.3609,"scorePubyear":2005,"source":"psychological bulletin, 131(2), 237-240","title":"roles of social pain and defense mechanisms in response to social exclusion: reply to panksepp (2005) and coff (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.2.237","weightCitations":8,"weightLinks":2,"weightNormcitations":0.3609,"x":0.6041,"y":-0.8286,"year":"2005"},{"authors":"bouton, me; nelson, jb; rosas, jm","cluster":101,"id":426,"label":"bouton (1999)","scoreCitations":8,"scoreNormcitations":0.1907,"scorePubyear":1999,"source":"psychological bulletin, 125(2), 190-192","title":"resolution now! reply to riccio, richardson, and ebner (1999)","url":"http://dx.doi.org/10.1037/0033-2909.125.2.190","weightCitations":8,"weightLinks":1,"weightNormcitations":0.1907,"x":0.429,"y":-0.139,"year":"1999"},{"authors":"harris, lj","cluster":96,"id":427,"label":"harris (1993)","scoreCitations":8,"scoreNormcitations":0.2051,"scorePubyear":1993,"source":"psychological bulletin, 114(2), 242-247","title":"left-handedness and life-span - reply","weightCitations":8,"weightLinks":1,"weightNormcitations":0.2051,"x":0.0932,"y":-0.1523,"year":"1993"},{"authors":"shepard, rn","cluster":305,"id":428,"label":"shepard (1990)","scoreCitations":8,"scoreNormcitations":0.3673,"scorePubyear":1990,"source":"psychological review, 97(4), 579-580","title":"neural nets for generalization and classification - comment","url":"http://dx.doi.org/10.1037//0033-295x.97.4.579","weightCitations":8,"weightLinks":0,"weightNormcitations":0.3673,"x":-0.3343,"y":0.2733,"year":"1990"},{"authors":"alloy, lb","cluster":306,"id":429,"label":"alloy (1988)","scoreCitations":8,"scoreNormcitations":0.5333,"scorePubyear":1988,"source":"psychological review, 95(2), 299-301","title":"expectations and situational information as cocontributors to covariation assessment - a reply","weightCitations":8,"weightLinks":0,"weightNormcitations":0.5333,"x":-0.4565,"y":0.2116,"year":"1988"},{"authors":"johnson, dw; maruyama, g; johnson, rt","cluster":87,"id":430,"label":"johnson (1982)","scoreCitations":8,"scoreNormcitations":0.1896,"scorePubyear":1982,"source":"psychological bulletin, 92(1), 186-192","title":"separating ideology from currently available data - a reply","weightCitations":8,"weightLinks":1,"weightNormcitations":0.1896,"x":-0.7981,"y":-0.6283,"year":"1982"},{"authors":"staddon, jer; motheral, s","cluster":307,"id":431,"label":"staddon (1979)","scoreCitations":8,"scoreNormcitations":0.7314,"scorePubyear":1979,"source":"psychological review, 86(5), 501-505","title":"response independence, matching, and maximizing - reply","url":"http://dx.doi.org/10.1037/0033-295x.86.5.501","weightCitations":8,"weightLinks":0,"weightNormcitations":0.7314,"x":-0.9134,"y":-0.2634,"year":"1979"},{"authors":"williams, je; morland, jk","cluster":308,"id":432,"label":"williams (1979)","scoreCitations":8,"scoreNormcitations":0.7314,"scorePubyear":1979,"source":"psychological bulletin, 86(1), 28-32","title":"white preference in blacks - paradigm in search of a phenomenon - comment","url":"http://dx.doi.org/10.1037//0033-2909.86.1.28","weightCitations":8,"weightLinks":0,"weightNormcitations":0.7314,"x":-0.2317,"y":0.3302,"year":"1979"},{"authors":"anderson, ja; silverstein, jw","cluster":102,"id":433,"label":"anderson (1978)","scoreCitations":8,"scoreNormcitations":0.3092,"scorePubyear":1978,"source":"psychological review, 85(6), 597-603","title":"do all neural models really look alike - reply","weightCitations":8,"weightLinks":1,"weightNormcitations":0.3092,"x":-0.0082,"y":-1.0692,"year":"1978"},{"authors":"fiske, dw","cluster":309,"id":434,"label":"fiske (1976)","scoreCitations":8,"scoreNormcitations":0.7,"scorePubyear":1976,"source":"psychological bulletin, 83(5), 877-879","title":"can a personality construct have a singular validational pattern - reply","url":"http://dx.doi.org/10.1037//0033-2909.83.5.877","weightCitations":8,"weightLinks":0,"weightNormcitations":0.7,"x":0.9545,"y":0.3312,"year":"1976"},{"authors":"jones, b","cluster":103,"id":435,"label":"jones (1973)","scoreCitations":8,"scoreNormcitations":0.9855,"scorePubyear":1973,"source":"psychological bulletin, 79(6), 386-388","title":"is there any proprioceptive feedback - comments on schmidt (1971)","url":"http://dx.doi.org/10.1037/h0034357","weightCitations":8,"weightLinks":1,"weightNormcitations":0.9855,"x":-0.4788,"y":-0.5012,"year":"1973"},{"authors":"rosenthal, mk","cluster":310,"id":436,"label":"rosenthal (1973)","scoreCitations":8,"scoreNormcitations":0.9855,"scorePubyear":1973,"source":"journal of child psychology and psychiatry, 14(4), 301-317","title":"study of infant-environment interaction - some comments on trends and methodologies","url":"http://dx.doi.org/10.1111/j.1469-7610.1973.tb01197.x","weightCitations":8,"weightLinks":0,"weightNormcitations":0.9855,"x":-0.8642,"y":-0.1066,"year":"1973"},{"authors":"schmidt, ra","cluster":103,"id":437,"label":"schmidt (1973)","scoreCitations":8,"scoreNormcitations":0.9855,"scorePubyear":1973,"source":"psychological bulletin, 79(6), 389-390","title":"proprioception versus motor outflow in timing - reply to jones","url":"http://dx.doi.org/10.1037/h0034361","weightCitations":8,"weightLinks":1,"weightNormcitations":0.9855,"x":-0.4825,"y":-0.5016,"year":"1973"},{"authors":"mchugh, rb","cluster":56,"id":438,"label":"mchugh (1963)","scoreCitations":8,"scoreNormcitations":1.1228,"scorePubyear":1963,"source":"psychological bulletin, 60(4), 350-355","title":"comment on scales and statistics - parametric and nonparametric","url":"http://dx.doi.org/10.1037/h0048834","weightCitations":8,"weightLinks":1,"weightNormcitations":1.1228,"x":0.0742,"y":0.3194,"year":"1963"},{"authors":"feigenbaum, ea; simon, ha","cluster":311,"id":439,"label":"feigenbaum (1961)","scoreCitations":8,"scoreNormcitations":2.1538,"scorePubyear":1961,"source":"psychological review, 68(4), 285-288","title":"comment - the distinctiveness of stimuli","url":"http://dx.doi.org/10.1037/h0041546","weightCitations":8,"weightLinks":0,"weightNormcitations":2.1538,"x":-0.904,"y":0.0105,"year":"1961"},{"authors":"peters, cc","cluster":312,"id":440,"label":"peters (1950)","scoreCitations":8,"scoreNormcitations":2.2857,"scorePubyear":1950,"source":"psychological bulletin, 47(4), 331-337","title":"the misuse of chi-square - a reply to lewis and burke","url":"http://dx.doi.org/10.1037/h0056190","weightCitations":8,"weightLinks":0,"weightNormcitations":2.2857,"x":0.7966,"y":-0.4933,"year":"1950"},{"authors":"conrad, hs","cluster":153,"id":441,"label":"conrad (1946)","scoreCitations":8,"scoreNormcitations":1.3793,"scorePubyear":1946,"source":"psychological bulletin, 43(6), 570-589","title":"some principles of attitude-measurement - a reply to opinion-attitude methodology","url":"http://dx.doi.org/10.1037/h0058534","weightCitations":8,"weightLinks":1,"weightNormcitations":1.3793,"x":0.8105,"y":-0.7012,"year":"1946"},{"authors":"gonzalez, c; dutt, v","cluster":99,"id":442,"label":"gonzalez (2012)","scoreCitations":7,"scoreNormcitations":0.9,"scorePubyear":2012,"source":"psychological review, 119(4), 893-898","title":"refuting data aggregation arguments and how the instance-based learning model stands criticism: a reply to hills and hertwig (2012)","url":"http://dx.doi.org/10.1037/a0029445","weightCitations":7,"weightLinks":1,"weightNormcitations":0.9,"x":-0.6658,"y":0.4488,"year":"2012"},{"authors":"hubbard, tl","cluster":117,"id":443,"label":"hubbard (2012)","scoreCitations":7,"scoreNormcitations":0.9,"scorePubyear":2012,"source":"psychological bulletin, 138(4), 616-623","title":"visual perception of force: comment on white (2012)","url":"http://dx.doi.org/10.1037/a0028539","weightCitations":7,"weightLinks":1,"weightNormcitations":0.9,"x":0.3894,"y":0.9966,"year":"2012"},{"authors":"mcgrath, re; kim, bh; hough, l","cluster":104,"id":444,"label":"mcgrath (2011)","scoreCitations":7,"scoreNormcitations":0.7824,"scorePubyear":2011,"source":"psychological bulletin, 137(4), 713-715","title":"our main conclusion stands: reply to rohling et al. (2011)","url":"http://dx.doi.org/10.1037/a0023645","weightCitations":7,"weightLinks":1,"weightNormcitations":0.7824,"x":-0.4721,"y":-0.7028,"year":"2011"},{"authors":"friedman, rs; forster, j","cluster":79,"id":445,"label":"friedman (2011)","scoreCitations":7,"scoreNormcitations":0.7824,"scorePubyear":2011,"source":"psychological bulletin, 137(3), 513-516","title":"limitations of the motivational intensity model of attentional tuning: reply to harmon-jones, gable, and price (2011)","url":"http://dx.doi.org/10.1037/a0023088","weightCitations":7,"weightLinks":1,"weightNormcitations":0.7824,"x":0.475,"y":-0.3022,"year":"2011"},{"authors":"bressan, p","cluster":158,"id":446,"label":"bressan (2007)","scoreCitations":7,"scoreNormcitations":0.7098,"scorePubyear":2007,"source":"psychological review, 114(4), 1111-1114","title":"dungeons, gratings, and black rooms: a defense of double-anchoring theory and a reply to howe et al. (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.4.1111","weightCitations":7,"weightLinks":1,"weightNormcitations":0.7098,"x":-0.687,"y":-0.4947,"year":"2007"},{"authors":"roy, mm; christenfeld, njs; mckenzie, crm","cluster":90,"id":447,"label":"roy (2005)","scoreCitations":7,"scoreNormcitations":0.3158,"scorePubyear":2005,"source":"psychological bulletin, 131(5), 761-762","title":"the broad applicability of memory bias and its coexistence with the planning fallacy: reply to griffin and buehler (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.5.761","weightCitations":7,"weightLinks":1,"weightNormcitations":0.3158,"x":-0.1388,"y":-1.0533,"year":"2005"},{"authors":"garnham, a; oakhill, jv","cluster":118,"id":448,"label":"garnham (2005)","scoreCitations":7,"scoreNormcitations":0.3158,"scorePubyear":2005,"source":"psychological review, 112(2), 509-517","title":"accounting for belief bias in a mental model framework: comment on klauer, musch, and naumer (2000)","url":"http://dx.doi.org/10.1037/0033-295x.112.2.509","weightCitations":7,"weightLinks":1,"weightNormcitations":0.3158,"x":0.1284,"y":1.0585,"year":"2005"},{"authors":"busemeyer, jr; townsend, jt; diederich, a; barkan, r","cluster":313,"id":449,"label":"busemeyer (2005)","scoreCitations":7,"scoreNormcitations":0.3158,"scorePubyear":2005,"source":"psychological review, 112(1), 253-255","title":"contrast effects or loss aversion? comment on usher and mcclelland (2004)","url":"http://dx.doi.org/10.1037/0033-295x.112.1.253","weightCitations":7,"weightLinks":0,"weightNormcitations":0.3158,"x":-0.7475,"y":0.7769,"year":"2005"},{"authors":"marcel, aj; lambie, ja","cluster":105,"id":450,"label":"marcel (2004)","scoreCitations":7,"scoreNormcitations":0.302,"scorePubyear":2004,"source":"psychological review, 111(3), 820-826","title":"how many selves in emotion experience? reply to dalgleish and power (2004)","url":"http://dx.doi.org/10.1037/0033-295x.111.3.820","weightCitations":7,"weightLinks":1,"weightNormcitations":0.302,"x":-0.7012,"y":-0.6052,"year":"2004"},{"authors":"gray, jr","cluster":314,"id":451,"label":"gray (2002)","scoreCitations":7,"scoreNormcitations":0.1322,"scorePubyear":2002,"source":"psychological review, 109(4), 729-738","title":"does, a prosocial-selfish distinction help explain the biological affects? comment on buck (1999)","url":"http://dx.doi.org/10.1037//0033-295x.109.4.729","weightCitations":7,"weightLinks":0,"weightNormcitations":0.1322,"x":0.6476,"y":0.6241,"year":"2002"},{"authors":"carroll, ka; maestripieri, d","cluster":50,"id":452,"label":"carroll (1998)","scoreCitations":7,"scoreNormcitations":0.5312,"scorePubyear":1998,"source":"psychological bulletin, 123(3), 234-237","title":"infant abuse and neglect in monkeys - a discussion of definitions, epidemiology, etiology, and implications for child maltreatment: reply to cicchetti (1998) and mason (1998)","url":"http://dx.doi.org/10.1037/0033-2909.123.3.234","weightCitations":7,"weightLinks":2,"weightNormcitations":0.5312,"x":0.7467,"y":0.3312,"year":"1998"},{"authors":"cicchetti, d","cluster":50,"id":453,"label":"cicchetti (1998)","scoreCitations":7,"scoreNormcitations":0.5312,"scorePubyear":1998,"source":"psychological bulletin, 123(3), 224-230","title":"child abuse and neglect: usefulness of the animal data: comment on maestripieri and carroll (1998)","weightCitations":7,"weightLinks":1,"weightNormcitations":0.5312,"x":0.7525,"y":0.3286,"year":"1998"},{"authors":"peake, pk; mischel, w","cluster":23,"id":454,"label":"peake (1984)","scoreCitations":7,"scoreNormcitations":1.0,"scorePubyear":1984,"source":"psychological review, 91(4), 497-501","title":"getting lost in the search for large coefficients - reply to conley","url":"http://dx.doi.org/10.1037/0033-295x.91.4.497","weightCitations":7,"weightLinks":2,"weightNormcitations":1.0,"x":0.0228,"y":-0.9657,"year":"1984"},{"authors":"krauth, j","cluster":140,"id":455,"label":"krauth (1983)","scoreCitations":7,"scoreNormcitations":0.5895,"scorePubyear":1983,"source":"psychological bulletin, 94(1), 190-192","title":"nonparametric effect size estimation - a comment on kraemer and andrews","url":"http://dx.doi.org/10.1037/0033-2909.94.1.190","weightCitations":7,"weightLinks":1,"weightNormcitations":0.5895,"x":-0.3095,"y":0.4782,"year":"1983"},{"authors":"prelec, d","cluster":51,"id":456,"label":"prelec (1983)","scoreCitations":7,"scoreNormcitations":0.5895,"scorePubyear":1983,"source":"psychological review, 90(4), 385-389","title":"the empirical claims of maximization theory - a reply","weightCitations":7,"weightLinks":2,"weightNormcitations":0.5895,"x":-0.3082,"y":0.6751,"year":"1983"},{"authors":"lefkowitz, mm","cluster":315,"id":457,"label":"lefkowitz (1980)","scoreCitations":7,"scoreNormcitations":0.7,"scorePubyear":1980,"source":"psychological bulletin, 87(1), 191-194","title":"childhood depression - reply","weightCitations":7,"weightLinks":0,"weightNormcitations":0.7,"x":0.543,"y":0.5495,"year":"1980"},{"authors":"bogartz, w","cluster":106,"id":458,"label":"bogartz (1975)","scoreCitations":7,"scoreNormcitations":1.5909,"scorePubyear":1975,"source":"psychological bulletin, 82(2), 180-180","title":"coding dummy variables is a waste of time - reply","url":"http://dx.doi.org/10.1037/h0076372","weightCitations":7,"weightLinks":1,"weightNormcitations":1.5909,"x":-0.3079,"y":0.5683,"year":"1975"},{"authors":"mace, wm; pittenger, jb","cluster":92,"id":459,"label":"mace (1975)","scoreCitations":7,"scoreNormcitations":1.5909,"scorePubyear":1975,"source":"psychological bulletin, 82(1), 137-139","title":"directly perceiving gibson - further reply to gyr","url":"http://dx.doi.org/10.1037/h0078105","weightCitations":7,"weightLinks":1,"weightNormcitations":1.5909,"x":0.0766,"y":-0.2512,"year":"1975"},{"authors":"costello, cg","cluster":13,"id":460,"label":"costello (1971)","scoreCitations":7,"scoreNormcitations":0.9412,"scorePubyear":1971,"source":"psychological review, 78(4), 348","title":"conditioned avoidance responses and phobias - reply to wolpe and to powell and lumia","url":"http://dx.doi.org/10.1037/h0031113","weightCitations":7,"weightLinks":2,"weightNormcitations":0.9412,"x":-0.4219,"y":-0.3021,"year":"1971"},{"authors":"goulet, lr","cluster":316,"id":461,"label":"goulet (1971)","scoreCitations":7,"scoreNormcitations":0.9412,"scorePubyear":1971,"source":"psychological bulletin, 75(4), 286","title":"basic issues in reversal-shift behavior - reply","url":"http://dx.doi.org/10.1037/h0030820","weightCitations":7,"weightLinks":0,"weightNormcitations":0.9412,"x":0.5122,"y":0.3979,"year":"1971"},{"authors":"goulet, lr","cluster":317,"id":462,"label":"goulet (1971)","scoreCitations":7,"scoreNormcitations":0.9412,"scorePubyear":1971,"source":"psychological bulletin, 75(4), 286-289","title":"basic issues in reversal-shift behavior - reply","url":"http://dx.doi.org/10.1037/h0030820","weightCitations":7,"weightLinks":0,"weightNormcitations":0.9412,"x":-0.6739,"y":-0.4247,"year":"1971"},{"authors":"klein, df; cleary, ta","cluster":318,"id":463,"label":"klein (1969)","scoreCitations":7,"scoreNormcitations":0.2958,"scorePubyear":1969,"source":"psychological bulletin, 71(4), 278","title":"platonic true scores - further comment","url":"http://dx.doi.org/10.1037/h0026852","weightCitations":7,"weightLinks":0,"weightNormcitations":0.2958,"x":-0.3648,"y":-0.5657,"year":"1969"},{"authors":"heermann, ef","cluster":319,"id":464,"label":"heermann (1965)","scoreCitations":7,"scoreNormcitations":0.5294,"scorePubyear":1965,"source":"psychological bulletin, 63(2), 128-128","title":"comments on overall multivariate methods for profile analysis","url":"http://dx.doi.org/10.1037/h0021569","weightCitations":7,"weightLinks":0,"weightNormcitations":0.5294,"x":-0.7653,"y":0.262,"year":"1965"},{"authors":"broverman, dm","cluster":320,"id":465,"label":"broverman (1963)","scoreCitations":7,"scoreNormcitations":0.9825,"scorePubyear":1963,"source":"psychological review, 70(1), 119-120","title":"on the effects of score transformations in q and r factor-analysis techniques - on the note by macandrew and forgy - comments","url":"http://dx.doi.org/10.1037/h0039220","weightCitations":7,"weightLinks":0,"weightNormcitations":0.9825,"x":-1.0777,"y":0.0215,"year":"1963"},{"authors":"mednick, sa","cluster":52,"id":466,"label":"mednick (1959)","scoreCitations":7,"scoreNormcitations":0.5676,"scorePubyear":1959,"source":"psychological bulletin, 56(4), 315-316","title":"learning-theory and schizophrenia - a reply to a comment","url":"http://dx.doi.org/10.1037/h0047500","weightCitations":7,"weightLinks":2,"weightNormcitations":0.5676,"x":-0.3683,"y":-0.4344,"year":"1959"},{"authors":"eastwick, pw; luchies, lb; finkel, ej; hunt, ll","cluster":114,"id":467,"label":"eastwick (2014)","scoreCitations":6,"scoreNormcitations":0.9176,"scorePubyear":2014,"source":"psychological bulletin, 140(3), 673-681","title":"the many voices of darwin's descendants: reply to schmitt (2014)","url":"http://dx.doi.org/10.1037/a0036111","weightCitations":6,"weightLinks":1,"weightNormcitations":0.9176,"x":0.5915,"y":0.409,"year":"2014"},{"authors":"dube, c; rotello, cm; pazzaglia, am","cluster":4,"id":468,"label":"dube (2013)","scoreCitations":6,"scoreNormcitations":1.5105,"scorePubyear":2013,"source":"psychological bulletin, 139(6), 1213-1220","title":"the statistical accuracy and theoretical status of discrete-state mpt models: reply to batchelder and alexander (2013)","url":"http://dx.doi.org/10.1037/a0034453","weightCitations":6,"weightLinks":4,"weightNormcitations":1.5105,"x":0.4057,"y":-0.4338,"year":"2013"},{"authors":"bergen, d","cluster":33,"id":469,"label":"bergen (2013)","scoreCitations":6,"scoreNormcitations":1.5105,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 45-48","title":"does pretend play matter? searching for evidence: comment on lillard et al. (2013)","url":"http://dx.doi.org/10.1037/a0030246","weightCitations":6,"weightLinks":1,"weightNormcitations":1.5105,"x":-0.6499,"y":-0.8262,"year":"2013"},{"authors":"rouder, jn; morey, rd; province, jm","cluster":22,"id":470,"label":"rouder (2013)","scoreCitations":6,"scoreNormcitations":1.5105,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 241-247","title":"a bayes factor meta-analysis of recent extrasensory perception experiments: comment on storm, tressoldi, and di risio (2010)","url":"http://dx.doi.org/10.1037/a0029008","weightCitations":6,"weightLinks":2,"weightNormcitations":1.5105,"x":0.3842,"y":0.264,"year":"2013"},{"authors":"galen, lw","cluster":41,"id":471,"label":"galen (2012)","scoreCitations":6,"scoreNormcitations":0.7714,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 918-923","title":"the complex and elusive nature of religious prosociality: reply to myers (2012) and saroglou (2012)","url":"http://dx.doi.org/10.1037/a0029278","weightCitations":6,"weightLinks":2,"weightNormcitations":0.7714,"x":-0.5342,"y":-0.3938,"year":"2012"},{"authors":"singh, m; feldman, j","cluster":321,"id":472,"label":"singh (2012)","scoreCitations":6,"scoreNormcitations":0.7714,"scorePubyear":2012,"source":"psychological review, 119(3), 678-683","title":"principles of contour information: reply to lim and leek (2012)","url":"http://dx.doi.org/10.1037/a0028733","weightCitations":6,"weightLinks":0,"weightNormcitations":0.7714,"x":0.2564,"y":0.5384,"year":"2012"},{"authors":"dar-nimrod, i; heine, sj","cluster":97,"id":473,"label":"dar-nimrod (2011)","scoreCitations":6,"scoreNormcitations":0.6706,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 829-833","title":"some thoughts on essence placeholders, interactionism, and heritability: reply to haslam (2011) and turkheimer (2011) reply","url":"http://dx.doi.org/10.1037/a0024678","weightCitations":6,"weightLinks":1,"weightNormcitations":0.6706,"x":-0.0457,"y":0.5124,"year":"2011"},{"authors":"landau, mj; keefer, la; meier, bp","cluster":107,"id":474,"label":"landau (2011)","scoreCitations":6,"scoreNormcitations":0.6706,"scorePubyear":2011,"source":"psychological bulletin, 137(2), 362-365","title":"wringing the perceptual rags: reply to ijzerman and koole (2011)","url":"http://dx.doi.org/10.1037/a0022457","weightCitations":6,"weightLinks":1,"weightNormcitations":0.6706,"x":0.3005,"y":0.1774,"year":"2011"},{"authors":"vuoksimaa, e; kaprio, j","cluster":108,"id":475,"label":"vuoksimaa (2010)","scoreCitations":6,"scoreNormcitations":0.265,"scorePubyear":2010,"source":"psychological bulletin, 136(3), 344-347","title":"sex differences in left-handedness are also evident in scandinavia and in twins: comment on papadatou-pastou, martin, munafo, and jones (2008)","url":"http://dx.doi.org/10.1037/a0018972","weightCitations":6,"weightLinks":1,"weightNormcitations":0.265,"x":0.3109,"y":-0.9329,"year":"2010"},{"authors":"hahn, u; warren, pa","cluster":1,"id":476,"label":"hahn (2010)","scoreCitations":6,"scoreNormcitations":0.265,"scorePubyear":2010,"source":"psychological review, 117(2), 706-711","title":"why three heads are a better bet than four: a reply to sun, tweney, and wang (2010)","url":"http://dx.doi.org/10.1037/a0019037","weightCitations":6,"weightLinks":1,"weightNormcitations":0.265,"x":0.4619,"y":-0.733,"year":"2010"},{"authors":"sun, yl; tweney, rd; wang, hb","cluster":1,"id":477,"label":"sun (2010)","scoreCitations":6,"scoreNormcitations":0.265,"scorePubyear":2010,"source":"psychological review, 117(2), 697-703","title":"occurrence and nonoccurrence of random sequences: comment on hahn and warren (2009)","url":"http://dx.doi.org/10.1037/a0018994","weightCitations":6,"weightLinks":2,"weightNormcitations":0.265,"x":0.4608,"y":-0.7264,"year":"2010"},{"authors":"botvinick, mm; plaut, dc","cluster":3,"id":478,"label":"botvinick (2009)","scoreCitations":6,"scoreNormcitations":0.8906,"scorePubyear":2009,"source":"psychological review, 116(4), 998-1001","title":"empirical and computational support for context-dependent representations of serial order: reply to bowers, damian, and davis (2009)","url":"http://dx.doi.org/10.1037/a0017113","weightCitations":6,"weightLinks":2,"weightNormcitations":0.8906,"x":-0.7647,"y":-0.0588,"year":"2009"},{"authors":"brown, s; lacouture, y","cluster":109,"id":479,"label":"brown (2007)","scoreCitations":6,"scoreNormcitations":0.6084,"scorePubyear":2007,"source":"psychological review, 114(2), 528-532","title":"is absolute identification always relative? comment on stewart, brown, and chater (2005)","url":"http://dx.doi.org/10.1037/0033-295x.114.2.528","weightCitations":6,"weightLinks":1,"weightNormcitations":0.6084,"x":-0.0814,"y":0.1199,"year":"2007"},{"authors":"cooper, rp; shallice, t","cluster":110,"id":480,"label":"cooper (2006)","scoreCitations":6,"scoreNormcitations":0.4076,"scorePubyear":2006,"source":"psychological review, 113(4), 929-931","title":"structured representations in the control of behavior cannot be so easily dismissed: a reply to botvinick and plaut (2006)","url":"http://dx.doi.org/10.1037/295x-113.4.929","weightCitations":6,"weightLinks":1,"weightNormcitations":0.4076,"x":0.9437,"y":0.2518,"year":"2006"},{"authors":"blanton, h; jaccard, j","cluster":77,"id":481,"label":"blanton (2006)","scoreCitations":6,"scoreNormcitations":0.4076,"scorePubyear":2006,"source":"psychological review, 113(1), 166-169","title":"postscript: perspectives on the reply by greenwald, rudman, nosek, and zayas (2006)","url":"http://dx.doi.org/10.1037/0033-295x.113.1.166","weightCitations":6,"weightLinks":1,"weightNormcitations":0.4076,"x":-0.2908,"y":-0.3577,"year":"2006"},{"authors":"mckoon, g; ratcliff, r","cluster":0,"id":482,"label":"mckoon (2005)","scoreCitations":0,"scoreNormcitations":2005.0,"scorePubyear":6,"url":"meaning through syntax","weightCitations":159,"weightLinks":0,"weightNormcitations":1.0},{"authors":"geary, dc","cluster":322,"id":483,"label":"geary (2005)","scoreCitations":6,"scoreNormcitations":0.2707,"scorePubyear":2005,"source":"psychological bulletin, 131(5), 654-657","title":"evolution of life-history trade-offs in mate attractiveness and health: comment on weeden and sabini (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.5.654","weightCitations":6,"weightLinks":0,"weightNormcitations":0.2707,"x":0.5896,"y":0.1332,"year":"2005"},{"authors":"blumberg, ms; sokoloff, g","cluster":16,"id":484,"label":"blumberg (2003)","scoreCitations":6,"scoreNormcitations":0.2235,"scorePubyear":2003,"source":"psychological review, 110(2), 389-394","title":"hard heads and open minds: a reply to panksepp (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.2.389","weightCitations":6,"weightLinks":2,"weightNormcitations":0.2235,"x":0.5748,"y":-0.8551,"year":"2003"},{"authors":"hafdahl, ar; gray-little, b","cluster":8,"id":485,"label":"hafdahl (2002)","scoreCitations":6,"scoreNormcitations":0.1133,"scorePubyear":2002,"source":"psychological bulletin, 128(3), 409-416","title":"explicating methods in reviews of race and self-esteem: reply to twenge and crocker (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.3.409","weightCitations":6,"weightLinks":3,"weightNormcitations":0.1133,"x":0.2866,"y":-0.0803,"year":"2002"},{"authors":"twenge, jm; crocker, j","cluster":8,"id":486,"label":"twenge (2002)","scoreCitations":6,"scoreNormcitations":0.1133,"scorePubyear":2002,"source":"psychological bulletin, 128(3), 417-420","title":"race and self-esteem revisited: reply to hafdahl and gray-little (2002)","url":"http://dx.doi.org/10.1037//0033-2909.128.3.417","weightCitations":6,"weightLinks":4,"weightNormcitations":0.1133,"x":0.2985,"y":-0.0706,"year":"2002"},{"authors":"bonanno, ga","cluster":91,"id":487,"label":"bonanno (2001)","scoreCitations":6,"scoreNormcitations":0.4545,"scorePubyear":2001,"source":"psychological bulletin, 127(4), 561-564","title":"the crucial importance of empirical evidence in the development of bereavement theory: reply to archer (2001)","url":"http://dx.doi.org/10.1037//0033-2909.127.4.561","weightCitations":6,"weightLinks":1,"weightNormcitations":0.4545,"x":0.9026,"y":-0.5743,"year":"2001"},{"authors":"troost, jm; deweert, cmm","cluster":323,"id":488,"label":"troost (1991)","scoreCitations":6,"scoreNormcitations":0.1409,"scorePubyear":1991,"source":"psychological review, 98(1), 143-145","title":"surface reflectances and human color constancy - comment","url":"http://dx.doi.org/10.1037//0033-295x.98.1.143","weightCitations":6,"weightLinks":0,"weightNormcitations":0.1409,"x":0.6139,"y":0.8104,"year":"1991"},{"authors":"loehlin, jc","cluster":324,"id":489,"label":"loehlin (1984)","scoreCitations":6,"scoreNormcitations":0.8571,"scorePubyear":1984,"source":"psychological bulletin, 95(2), 332-333","title":"familial correlations and x-linked genes - a comment","url":"http://dx.doi.org/10.1037//0033-2909.95.2.332","weightCitations":6,"weightLinks":0,"weightNormcitations":0.8571,"x":-0.2835,"y":0.8211,"year":"1984"},{"authors":"isaac, pd; milligan, gw","cluster":325,"id":490,"label":"isaac (1983)","scoreCitations":6,"scoreNormcitations":0.5053,"scorePubyear":1983,"source":"psychological bulletin, 93(2), 378-381","title":"a comment on the use of canonical correlation in the analysis of contingency-tables","weightCitations":6,"weightLinks":0,"weightNormcitations":0.5053,"x":-0.0203,"y":-0.3319,"year":"1983"},{"authors":"spence, jt; helmreich, rl","cluster":7,"id":491,"label":"spence (1983)","scoreCitations":6,"scoreNormcitations":0.5053,"scorePubyear":1983,"source":"psychological bulletin, 94(1), 181-184","title":"beyond face validity - a comment on nicholls, licht, and pearl","url":"http://dx.doi.org/10.1037/0033-2909.94.1.181","weightCitations":6,"weightLinks":1,"weightNormcitations":0.5053,"x":-0.1942,"y":0.974,"year":"1983"},{"authors":"dean, p","cluster":326,"id":492,"label":"dean (1980)","scoreCitations":6,"scoreNormcitations":0.6,"scorePubyear":1980,"source":"psychological review, 87(5), 470-473","title":"recapitulation of a theme by lashley - comment","url":"http://dx.doi.org/10.1037//0033-295x.87.5.470","weightCitations":6,"weightLinks":0,"weightNormcitations":0.6,"x":0.7204,"y":0.7233,"year":"1980"},{"authors":"kamin, lj","cluster":121,"id":493,"label":"kamin (1978)","scoreCitations":6,"scoreNormcitations":0.2319,"scorePubyear":1978,"source":"psychological bulletin, 85(1), 194-201","title":"comment on munsingers review of adoption studies","weightCitations":6,"weightLinks":1,"weightNormcitations":0.2319,"x":-0.1851,"y":-0.0979,"year":"1978"},{"authors":"buss, ar","cluster":111,"id":494,"label":"buss (1975)","scoreCitations":6,"scoreNormcitations":1.3636,"scorePubyear":1975,"source":"psychological bulletin, 82(2), 170-173","title":"more on age x cohort developmental model - reply","url":"http://dx.doi.org/10.1037/h0076445","weightCitations":6,"weightLinks":1,"weightNormcitations":1.3636,"x":-0.2519,"y":-0.4428,"year":"1975"},{"authors":"panksepp, j","cluster":112,"id":495,"label":"panksepp (1975)","scoreCitations":6,"scoreNormcitations":1.3636,"scorePubyear":1975,"source":"psychological review, 82(2), 158-164","title":"metabolic hormones and regulation of feeding - reply","url":"http://dx.doi.org/10.1037/h0076800","weightCitations":6,"weightLinks":1,"weightNormcitations":1.3636,"x":-0.7112,"y":0.0642,"year":"1975"},{"authors":"morganstern, kp","cluster":327,"id":496,"label":"morganstern (1974)","scoreCitations":6,"scoreNormcitations":0.5915,"scorePubyear":1974,"source":"psychological bulletin, 81(6), 380-382","title":"issues in implosive therapy - reply to levis","url":"http://dx.doi.org/10.1037/h0036488","weightCitations":6,"weightLinks":0,"weightNormcitations":0.5915,"x":0.0906,"y":-0.8809,"year":"1974"},{"authors":"poulton, ec","cluster":328,"id":497,"label":"poulton (1974)","scoreCitations":6,"scoreNormcitations":0.5915,"scorePubyear":1974,"source":"psychological bulletin, 81(3), 201-202","title":"range effects are characteristic of a person serving in a within-subjects experimental design - reply","url":"http://dx.doi.org/10.1037/h0035839","weightCitations":6,"weightLinks":0,"weightNormcitations":0.5915,"x":-0.5293,"y":0.494,"year":"1974"},{"authors":"miller, jk; levine, d","cluster":141,"id":498,"label":"miller (1973)","scoreCitations":6,"scoreNormcitations":0.7391,"scorePubyear":1973,"source":"psychological bulletin, 79(2), 142-144","title":"correlation between genetically matched group versus reliability theory - reply to jensen","url":"http://dx.doi.org/10.1037/h0033911","weightCitations":6,"weightLinks":1,"weightNormcitations":0.7391,"x":0.7111,"y":-0.0104,"year":"1973"},{"authors":"damarin, f","cluster":329,"id":499,"label":"damarin (1970)","scoreCitations":6,"scoreNormcitations":0.1401,"scorePubyear":1970,"source":"psychological bulletin, 73(1), 23-40","title":"latent-structure model for answering personal questions","url":"http://dx.doi.org/10.1037/h0028449","weightCitations":6,"weightLinks":0,"weightNormcitations":0.1401,"x":-0.1151,"y":-0.6461,"year":"1970"},{"authors":"pollack, rh","cluster":132,"id":500,"label":"pollack (1967)","scoreCitations":6,"scoreNormcitations":0.5172,"scorePubyear":1967,"source":"psychological bulletin, 68(1), 59","title":"comment on is figural aftereffect an aftereffect","url":"http://dx.doi.org/10.1037/h0024701","weightCitations":6,"weightLinks":1,"weightNormcitations":0.5172,"x":0.119,"y":0.2376,"year":"1967"},{"authors":"deci, el; koestner, r; ryan, rm","cluster":24,"id":501,"label":"deci (1999)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1999,"source":"psychological bulletin, 125(6), 627-668","title":"a meta-analytic review of experiments examining the effects of extrinsic rewards on intrinsic motivation","url":"http://dx.doi.org/10.1037/0033-2909.125.6.627","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.7762,"y":0.5619,"year":"1999"},{"authors":"mcneill, d","cluster":20,"id":502,"label":"mcneill (1985)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1985,"source":"psychological review, 92(3), 350-371","title":"so you think gestures are nonverbal","url":"http://dx.doi.org/10.1037//0033-295x.92.3.350","weightCitations":0,"weightLinks":4,"weightNormcitations":0.0,"x":-0.9163,"y":0.469,"year":"1985"},{"authors":"jost, jt; glaser, j; kruglanski, aw; sulloway, fj","cluster":26,"id":503,"label":"jost (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychological bulletin, 129(3), 339-375","title":"political conservatism as motivated social cognition","url":"http://dx.doi.org/10.1037/0033-2909.129.3.339","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":0.1863,"y":-0.8963,"year":"2003"},{"authors":"jost, jt; burgess, d; mosso, co","cluster":26,"id":504,"label":"jost (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychology of legitimacy: emerging perspectives on ideology, justice, and intergroup relations, , 363-388","title":"conflicts of legitimation among self, group, and system - the integrative potential of system justification theory","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.2041,"y":-0.9039,"year":"2001"},{"authors":"block, j","cluster":15,"id":505,"label":"block (1995)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1995,"source":"psychological bulletin, 117(2), 187-215","title":"a contrarian view of the 5-factor approach to personality description","url":"http://dx.doi.org/10.1037/0033-2909.117.2.187","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.9398,"y":0.1969,"year":"1995"},{"authors":"gershoff, et","cluster":21,"id":506,"label":"gershoff (2002)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2002,"source":"psychological bulletin, 128(4), 539-579","title":"corporal punishment by parents and associated child behaviors and experiences: a meta-analytic and theoretical review","url":"http://dx.doi.org/10.1037//0033-2909.128.4.539","weightCitations":0,"weightLinks":4,"weightNormcitations":0.0,"x":0.421,"y":-0.9426,"year":"2002"},{"authors":"anderson, ca","cluster":17,"id":507,"label":"anderson (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"journal of adolescence, 27(1), 113-122","title":"an update on the effects of playing violent video games","url":"http://dx.doi.org/10.1016/j.adolescence.2003.10.009","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.1443,"y":0.1439,"year":"2004"},{"authors":"anderson, craig a.; shibuya, akiko; ihori, nobuko; swing, edward l.; bushman, brad j.; sakamoto, akira; rothstein, hannah r.; saleem, muniba","cluster":17,"id":508,"label":"anderson (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological bulletin, 136(2), 151-173","title":"violent video game effects on aggression, empathy, and prosocial behavior in eastern and western countries: a meta-analytic review","url":"http://dx.doi.org/10.1037/a0018251","weightCitations":0,"weightLinks":4,"weightNormcitations":0.0,"x":0.1522,"y":0.111,"year":"2010"},{"authors":"wixted, john t.","cluster":4,"id":509,"label":"wixted (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological review, 114(1), 152-176","title":"dual-process theory and signal-detection theory of recognition memory","url":"http://dx.doi.org/10.1037/0033-295x.114.1.152","weightCitations":0,"weightLinks":5,"weightNormcitations":0.0,"x":0.3489,"y":-0.4053,"year":"2007"},{"authors":"mowrer, o. h.","id":510,"label":"mowrer (1947)","scoreCitations":3,"scoreNormcitations":0.0,"scorePubyear":13,"url":"conditioning","weightCitations":0,"weightNormcitations":-0.261},{"authors":"bartley, sh","cluster":151,"id":511,"label":"bartley (1963)","scoreCitations":6,"scoreNormcitations":0.8421,"scorePubyear":1963,"source":"psychological bulletin, 60(5), 505-508","title":"clarification of bartley model - a reply","url":"http://dx.doi.org/10.1037/h0046164","weightCitations":6,"weightLinks":1,"weightNormcitations":0.8421,"x":-0.7788,"y":-0.7251,"year":"1963"},{"authors":"pilot, ml; spiro, hm","cluster":330,"id":512,"label":"pilot (1961)","scoreCitations":6,"scoreNormcitations":1.6154,"scorePubyear":1961,"source":"psychosomatic medicine, 23(5), 420","title":"comments on use of blood pepsin,(pepsinogen) as a research technique","weightCitations":6,"weightLinks":0,"weightNormcitations":1.6154,"x":0.1866,"y":0.6525,"year":"1961"},{"authors":"kilpatrick, fp","cluster":331,"id":513,"label":"kilpatrick (1953)","scoreCitations":6,"scoreNormcitations":0.5217,"scorePubyear":1953,"source":"psychological review, 60(1), 76-79","title":"the ames oscillatory effect - a reply to pastore","url":"http://dx.doi.org/10.1037/h0063339","weightCitations":6,"weightLinks":0,"weightNormcitations":0.5217,"x":-0.8206,"y":-0.4949,"year":"1953"},{"authors":"osgood, ce","cluster":332,"id":514,"label":"osgood (1953)","scoreCitations":6,"scoreNormcitations":0.5217,"scorePubyear":1953,"source":"psychological review, 60(3), 211-212","title":"a new interpretation of figural after-effects - comment","url":"http://dx.doi.org/10.1037/h0063340","weightCitations":6,"weightLinks":0,"weightNormcitations":0.5217,"x":0.2999,"y":-1.0027,"year":"1953"},{"authors":"schmidt, bg","cluster":333,"id":515,"label":"schmidt (1948)","scoreCitations":6,"scoreNormcitations":0.4211,"scorePubyear":1948,"source":"psychological bulletin, 45(4), 334-343","title":"an evaluation of the study by schmidt,bernardine,g. entitled - changes in personal, social, and intellectual behavior of children originally classified as feebleminded - reply","url":"http://dx.doi.org/10.1037/h0058142","weightCitations":6,"weightLinks":0,"weightNormcitations":0.4211,"x":-0.5429,"y":0.5532,"year":"1948"},{"authors":"britt, sh","cluster":334,"id":516,"label":"britt (1937)","scoreCitations":6,"scoreNormcitations":1.7143,"scorePubyear":1937,"source":"psychological review, 44, 462-469","title":"the learning-remembering process - (a reply to professor cason)","url":"http://dx.doi.org/10.1037/h0055364","weightCitations":6,"weightLinks":0,"weightNormcitations":1.7143,"x":-0.315,"y":-0.742,"year":"1937"},{"authors":"mihura, jl; meyer, gj; bombel, g; dumitrascu, n","cluster":113,"id":517,"label":"mihura (2015)","scoreCitations":5,"scoreNormcitations":2.1053,"scorePubyear":2015,"source":"psychological bulletin, 141(1), 250-260","title":"standards, accuracy, and questions of bias in rorschach meta-analyses: reply to wood, garb, nezworski, lilienfeld, and duke (2015)","url":"http://dx.doi.org/10.1037/a0038445","weightCitations":5,"weightLinks":1,"weightNormcitations":2.1053,"x":-0.6643,"y":0.2014,"year":"2015"},{"authors":"schmitt, dp","cluster":114,"id":518,"label":"schmitt (2014)","scoreCitations":5,"scoreNormcitations":0.7647,"scorePubyear":2014,"source":"psychological bulletin, 140(3), 666-672","title":"on the proper functions of human mate preference adaptations: comment on eastwick, luchies, finkel, and hunt (2014)","url":"http://dx.doi.org/10.1037/a0036225","weightCitations":5,"weightLinks":1,"weightNormcitations":0.7647,"x":0.5952,"y":0.4086,"year":"2014"},{"authors":"benjamin, as","cluster":4,"id":519,"label":"benjamin (2013)","scoreCitations":5,"scoreNormcitations":1.2587,"scorePubyear":2013,"source":"psychological review, 120(3), 720-726","title":"where is the criterion noise in recognition? (almost) everyplace you look: comment on kellen, klauer, and singmann (2012)","url":"http://dx.doi.org/10.1037/a0031911","weightCitations":5,"weightLinks":3,"weightNormcitations":1.2587,"x":0.3128,"y":-0.3668,"year":"2013"},{"authors":"walker, cm; gopnik, a","cluster":33,"id":520,"label":"walker (2013)","scoreCitations":5,"scoreNormcitations":1.2587,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 40-44","title":"pretense and possibility-a theoretical proposal about the effects of pretend play on development: comment on lillard et al. (2013)","url":"http://dx.doi.org/10.1037/a0030151","weightCitations":5,"weightLinks":1,"weightNormcitations":1.2587,"x":-0.6495,"y":-0.8109,"year":"2013"},{"authors":"maertz, cp","cluster":53,"id":521,"label":"maertz (2012)","scoreCitations":5,"scoreNormcitations":0.6429,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 859-864","title":"further clarifying proximal withdrawal states and the turnover criterion space: comment on hom, mitchell, lee, and griffeth (2012)","url":"http://dx.doi.org/10.1037/a0028897","weightCitations":5,"weightLinks":1,"weightNormcitations":0.6429,"x":0.5754,"y":-0.2686,"year":"2012"},{"authors":"moss, ac; albery, ip","cluster":9,"id":522,"label":"moss (2010)","scoreCitations":5,"scoreNormcitations":0.2208,"scorePubyear":2010,"source":"psychological bulletin, 136(1), 17-20","title":"are alcohol expectancies associations, propositions, or elephants? a reply to wiers and stacy (2010)","url":"http://dx.doi.org/10.1037/a0018087","weightCitations":5,"weightLinks":2,"weightNormcitations":0.2208,"x":0.2098,"y":-0.2816,"year":"2010"},{"authors":"de houwer, j; teige-mocigemba, s; spruyt, a; moors, a","cluster":48,"id":523,"label":"de houwer (2009)","scoreCitations":5,"scoreNormcitations":0.7422,"scorePubyear":2009,"source":"psychological bulletin, 135(3), 377-379","title":"theoretical claims necessitate basic research: reply to gawronski, lebel, peters, and banse (2009) and nosek and greenwald (2009)","url":"http://dx.doi.org/10.1037/a0015328","weightCitations":5,"weightLinks":2,"weightNormcitations":0.7422,"x":-0.3574,"y":-0.9939,"year":"2009"},{"authors":"kraemer, hc; kuchler, t; spiegel, d","cluster":136,"id":524,"label":"kraemer (2009)","scoreCitations":5,"scoreNormcitations":0.7422,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 173-178","title":"use and misuse of the consolidated standards of reporting trials (consort) guidelines to assess research findings: comment on coyne, stefanek, and palmer (2007)","url":"http://dx.doi.org/10.1037/0033-2909.135.2.173","weightCitations":5,"weightLinks":1,"weightNormcitations":0.7422,"x":0.8409,"y":-0.2987,"year":"2009"},{"authors":"blok, sv; newman, ge; rips, lj","cluster":95,"id":525,"label":"blok (2007)","scoreCitations":5,"scoreNormcitations":0.507,"scorePubyear":2007,"source":"psychological review, 114(4), 1096-1102","title":"out of sorts? some remedies for theories of object concepts: a reply to rhemtulla and xu (2007)","url":"http://dx.doi.org/10.1037/0033-295x.114.4.1096","weightCitations":5,"weightLinks":1,"weightNormcitations":0.507,"x":-0.3444,"y":0.1,"year":"2007"},{"authors":"bosch, h; steinkamp, f; boller, e","cluster":54,"id":526,"label":"bosch (2006)","scoreCitations":5,"scoreNormcitations":0.3397,"scorePubyear":2006,"source":"psychological bulletin, 132(4), 533-537","title":"in the eye of the beholder: reply to wilson and shadish (2006) and radin, nelson, dobyns, and houtkooper (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.4.533","weightCitations":5,"weightLinks":2,"weightNormcitations":0.3397,"x":-0.252,"y":-0.9577,"year":"2006"},{"authors":"kelly, ae","cluster":55,"id":527,"label":"kelly (2000)","scoreCitations":5,"scoreNormcitations":0.13,"scorePubyear":2000,"source":"psychological bulletin, 126(4), 505-511","title":"a self-presentational view of psychotherapy: reply to hill, gelso, and mohr (2000) and to arkin and hermann (2000)","weightCitations":5,"weightLinks":2,"weightNormcitations":0.13,"x":-0.1194,"y":-0.2853,"year":"2000"},{"authors":"lillard, a","cluster":40,"id":528,"label":"lillard (1998)","scoreCitations":5,"scoreNormcitations":0.3795,"scorePubyear":1998,"source":"psychological bulletin, 123(1), 43-46","title":"ethnopsychologies: reply to wellman (1998) and gauvain (1998)","weightCitations":5,"weightLinks":2,"weightNormcitations":0.3795,"x":-0.1004,"y":-0.441,"year":"1998"},{"authors":"sloman, sa","cluster":1,"id":529,"label":"sloman (1996)","scoreCitations":5,"scoreNormcitations":0.0714,"scorePubyear":1996,"source":"psychological bulletin, 119(1), 27-30","title":"the probative value of simultaneous contradictory belief: reply","weightCitations":5,"weightLinks":1,"weightNormcitations":0.0714,"x":0.5437,"y":-0.6454,"year":"1996"},{"authors":"mcguire, wj","cluster":335,"id":530,"label":"mcguire (1994)","scoreCitations":5,"scoreNormcitations":0.0823,"scorePubyear":1994,"source":"psychological review, 101(2), 243-247","title":"uses of historical data in psychology - comments on munsterberg (1899)","url":"http://dx.doi.org/10.1037//0033-295x.101.2.243","weightCitations":5,"weightLinks":0,"weightNormcitations":0.0823,"x":-0.5496,"y":-0.8482,"year":"1994"},{"authors":"curthoys, is; wade, nj","cluster":336,"id":531,"label":"curthoys (1990)","scoreCitations":5,"scoreNormcitations":0.2296,"scorePubyear":1990,"source":"psychological review, 97(1), 132-134","title":"a balanced view of otolithic function - comment on stoffregen and riccio (1988)","url":"http://dx.doi.org/10.1037//0033-295x.97.1.132","weightCitations":5,"weightLinks":0,"weightNormcitations":0.2296,"x":0.6993,"y":-0.658,"year":"1990"},{"authors":"bobko, p; kehoe, jf","cluster":337,"id":532,"label":"bobko (1983)","scoreCitations":5,"scoreNormcitations":0.4211,"scorePubyear":1983,"source":"psychological bulletin, 93(3), 604-608","title":"on the fair-use of bias - a comment","url":"http://dx.doi.org/10.1037/0033-2909.93.3.604","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4211,"x":-0.2832,"y":-0.6593,"year":"1983"},{"authors":"mcmanus, ic","cluster":338,"id":533,"label":"mcmanus (1983)","scoreCitations":5,"scoreNormcitations":0.4211,"scorePubyear":1983,"source":"psychological medicine, 13(4), 895-896","title":"smoking, personality and reasons for smoking - a reply","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4211,"x":-0.5017,"y":0.6735,"year":"1983"},{"authors":"rachlin, h","cluster":51,"id":534,"label":"rachlin (1983)","scoreCitations":5,"scoreNormcitations":0.4211,"scorePubyear":1983,"source":"psychological review, 90(4), 376-379","title":"how to decide between matching and maximizing - a reply","weightCitations":5,"weightLinks":2,"weightNormcitations":0.4211,"x":-0.314,"y":0.6708,"year":"1983"},{"authors":"pike, ar; dalgleish, l","cluster":115,"id":535,"label":"pike (1982)","scoreCitations":5,"scoreNormcitations":0.1185,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 384-388","title":"latency probability curves for sequential decision-models - a comment on weatherburn","weightCitations":5,"weightLinks":1,"weightNormcitations":0.1185,"x":0.2046,"y":-0.4902,"year":"1982"},{"authors":"vatza, ej; byatt, se; kay, ej; kerchner, m; richter, ml; seay, mb","cluster":339,"id":536,"label":"vatza (1980)","scoreCitations":5,"scoreNormcitations":0.5,"scorePubyear":1980,"source":"psychological bulletin, 88(2), 494-495","title":"comment on combining results of independent studies","url":"http://dx.doi.org/10.1037//0033-2909.88.2.494","weightCitations":5,"weightLinks":0,"weightNormcitations":0.5,"x":-0.3296,"y":-0.9048,"year":"1980"},{"authors":"capitanio, jp; leger, dw","cluster":340,"id":537,"label":"capitanio (1979)","scoreCitations":5,"scoreNormcitations":0.4571,"scorePubyear":1979,"source":"psychological bulletin, 86(4), 876-879","title":"evolutionary scales lack utility - a reply","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4571,"x":1.0658,"y":0.1689,"year":"1979"},{"authors":"garfield, sl","cluster":341,"id":538,"label":"garfield (1977)","scoreCitations":5,"scoreNormcitations":0.4592,"scorePubyear":1977,"source":"psychological bulletin, 84(2), 306-308","title":"further comments on dropping out of treatment - reply to baekeland and lundwall","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4592,"x":0.4554,"y":0.431,"year":"1977"},{"authors":"hagen, ma","cluster":342,"id":539,"label":"hagen (1976)","scoreCitations":5,"scoreNormcitations":0.4375,"scorePubyear":1976,"source":"psychological bulletin, 83(6), 1176-1178","title":"problems with picture perception - reply to rosinski","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4375,"x":0.4283,"y":-0.8369,"year":"1976"},{"authors":"rosinski, rr","cluster":343,"id":540,"label":"rosinski (1976)","scoreCitations":5,"scoreNormcitations":0.4375,"scorePubyear":1976,"source":"psychological bulletin, 83(6), 1172-1175","title":"picture perception and monocular vision - reply to hagen","url":"http://dx.doi.org/10.1037//0033-2909.83.6.1172","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4375,"x":0.266,"y":0.2389,"year":"1976"},{"authors":"pellegrino, jw","cluster":344,"id":541,"label":"pellegrino (1975)","scoreCitations":5,"scoreNormcitations":1.1364,"scorePubyear":1975,"source":"psychological bulletin, 82(1), 66-67","title":"reply to frender and doubilet on measurement of clustering","url":"http://dx.doi.org/10.1037/h0076159","weightCitations":5,"weightLinks":0,"weightNormcitations":1.1364,"x":-0.1259,"y":0.2555,"year":"1975"},{"authors":"morgan, wg","cluster":345,"id":542,"label":"morgan (1973)","scoreCitations":5,"scoreNormcitations":0.6159,"scorePubyear":1973,"source":"psychological bulletin, 79(6), 373-375","title":"nonnecessary conditions or useful procedures in desensitization - reply to wilkins","url":"http://dx.doi.org/10.1037/h0034570","weightCitations":5,"weightLinks":0,"weightNormcitations":0.6159,"x":-0.515,"y":0.8381,"year":"1973"},{"authors":"alf, ef; abrahams, nm","cluster":56,"id":543,"label":"alf (1972)","scoreCitations":5,"scoreNormcitations":0.8642,"scorePubyear":1972,"source":"psychological bulletin, 77(3), 223","title":"comment on component-randomization tests","url":"http://dx.doi.org/10.1037/h0032262","weightCitations":5,"weightLinks":2,"weightNormcitations":0.8642,"x":0.0704,"y":0.3145,"year":"1972"},{"authors":"powell, a; lumia, ar","cluster":13,"id":544,"label":"powell (1971)","scoreCitations":5,"scoreNormcitations":0.6723,"scorePubyear":1971,"source":"psychological review, 78(4), 344","title":"avoidance conditioning and behavior therapies - reply to costello","url":"http://dx.doi.org/10.1037/h0031117","weightCitations":5,"weightLinks":2,"weightNormcitations":0.6723,"x":-0.4223,"y":-0.2858,"year":"1971"},{"authors":"breen, l; gaito, j","cluster":346,"id":545,"label":"breen (1970)","scoreCitations":5,"scoreNormcitations":0.1167,"scorePubyear":1970,"source":"psychological bulletin, 73(4), 309-310","title":"comments on friedmans rm procedure","url":"http://dx.doi.org/10.1037/h0028922","weightCitations":5,"weightLinks":0,"weightNormcitations":0.1167,"x":-0.0801,"y":-0.697,"year":"1970"},{"authors":"seward, gh; bloch, sk; heinrich, jf","cluster":68,"id":546,"label":"seward (1967)","scoreCitations":5,"scoreNormcitations":0.431,"scorePubyear":1967,"source":"psychosomatic medicine, 29(2), 151","title":"question of psychophysiologic infertility - some negative answers - a postscript","weightCitations":5,"weightLinks":1,"weightNormcitations":0.431,"x":0.1299,"y":-0.0484,"year":"1967"},{"authors":"silverman, i","cluster":347,"id":547,"label":"silverman (1964)","scoreCitations":5,"scoreNormcitations":0.5556,"scorePubyear":1964,"source":"psychological bulletin, 62(3), 205-209","title":"in defense of dissonance theory - reply to chapanis and chapanis","url":"http://dx.doi.org/10.1037/h0041085","weightCitations":5,"weightLinks":0,"weightNormcitations":0.5556,"x":-0.291,"y":0.8851,"year":"1964"},{"authors":"stricker, g","cluster":348,"id":548,"label":"stricker (1961)","scoreCitations":5,"scoreNormcitations":1.3462,"scorePubyear":1961,"source":"psychological review, 68(6), 420-422","title":"word values, word-frequency, and visual duration thresholds - a comment","url":"http://dx.doi.org/10.1037/h0039126","weightCitations":5,"weightLinks":0,"weightNormcitations":1.3462,"x":0.8871,"y":0.0275,"year":"1961"},{"authors":"battig, wf","cluster":349,"id":549,"label":"battig (1959)","scoreCitations":5,"scoreNormcitations":0.4054,"scorePubyear":1959,"source":"psychological review, 66(5), 338-339","title":"comment on intralist generalization in paired-associate learning","url":"http://dx.doi.org/10.1037/h0041649","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4054,"x":0.1939,"y":0.2718,"year":"1959"},{"authors":"murdock, bb","cluster":350,"id":550,"label":"murdock (1959)","scoreCitations":5,"scoreNormcitations":0.4054,"scorePubyear":1959,"source":"psychological review, 66(5), 345-346","title":"a reply to battig, gibson, and runquist","url":"http://dx.doi.org/10.1037/h0038549","weightCitations":5,"weightLinks":0,"weightNormcitations":0.4054,"x":0.0656,"y":1.0145,"year":"1959"},{"authors":"maltzman, i","cluster":57,"id":551,"label":"maltzman (1952)","scoreCitations":5,"scoreNormcitations":0.5224,"scorePubyear":1952,"source":"psychological bulletin, 49(1), 52-60","title":"the blodgett and haney types of latent learning experiment - reply to thistlethwaite","url":"http://dx.doi.org/10.1037/h0062121","weightCitations":5,"weightLinks":1,"weightNormcitations":0.5224,"x":-0.1565,"y":0.41,"year":"1952"},{"authors":"thistlethwaite, d","cluster":57,"id":552,"label":"thistlethwaite (1952)","scoreCitations":5,"scoreNormcitations":0.5224,"scorePubyear":1952,"source":"psychological bulletin, 49(1), 61-71","title":"reply to kendler and maltzman","url":"http://dx.doi.org/10.1037/h0056359","weightCitations":5,"weightLinks":2,"weightNormcitations":0.5224,"x":-0.154,"y":0.4042,"year":"1952"},{"authors":"hurst, la","cluster":351,"id":553,"label":"hurst (1951)","scoreCitations":5,"scoreNormcitations":0.2752,"scorePubyear":1951,"source":"psychological bulletin, 48(5), 402-412","title":"the genetics of schizophrenia - reply to pastore","url":"http://dx.doi.org/10.1037/h0058613","weightCitations":5,"weightLinks":0,"weightNormcitations":0.2752,"x":-0.2131,"y":-0.3683,"year":"1951"},{"authors":"pastore, n","cluster":352,"id":554,"label":"pastore (1950)","scoreCitations":5,"scoreNormcitations":1.4286,"scorePubyear":1950,"source":"psychological bulletin, 47(4), 338-340","title":"some comments on the use and misuse of the chi-square test","url":"http://dx.doi.org/10.1037/h0059192","weightCitations":5,"weightLinks":0,"weightNormcitations":1.4286,"x":-0.5616,"y":-0.5431,"year":"1950"},{"authors":"mcculloch, tl","cluster":85,"id":555,"label":"mcculloch (1939)","scoreCitations":5,"scoreNormcitations":1.0345,"scorePubyear":1939,"source":"psychological review, 46, 304-307","title":"reply to a note on discrimination habits","url":"http://dx.doi.org/10.1037/h0063498","weightCitations":5,"weightLinks":1,"weightNormcitations":1.0345,"x":0.2327,"y":-0.6918,"year":"1939"},{"authors":"crosland, hr","cluster":116,"id":556,"label":"crosland (1929)","scoreCitations":5,"scoreNormcitations":1.7857,"scorePubyear":1929,"source":"psychological bulletin, 26(6), 375-379","title":"the influence of letter position on range of apprehension - a reply to dr. tinker","url":"http://dx.doi.org/10.1037/h0071359","weightCitations":5,"weightLinks":1,"weightNormcitations":1.7857,"x":0.5681,"y":0.6247,"year":"1929"},{"authors":"french, fc","cluster":353,"id":557,"label":"french (1902)","scoreCitations":5,"scoreNormcitations":1.0,"scorePubyear":1902,"source":"psychological review, 9, 40-56","title":"mental imagery of students - a summary of the replies given to titchener's questionary by 118 juniors in vassar college","url":"http://dx.doi.org/10.1037/h0072972","weightCitations":5,"weightLinks":0,"weightNormcitations":1.0,"x":-0.8216,"y":0.2466,"year":"1902"},{"authors":"gabrieli, jde","cluster":59,"id":558,"label":"gabrieli (2016)","scoreCitations":4,"scoreNormcitations":3.1724,"scorePubyear":2016,"source":"psychological review, 123(5), 613-619","title":"the promise of educational neuroscience: comment on bowers (2016)","url":"http://dx.doi.org/10.1037/rev0000034","weightCitations":4,"weightLinks":1,"weightNormcitations":3.1724,"x":0.8315,"y":0.4322,"year":"2016"},{"authors":"ribeiro, jd; franklin, jc; fox, kr; bentley, kh; kleiman, em; chang, bp; nock, mk","cluster":354,"id":559,"label":"ribeiro (2016)","scoreCitations":4,"scoreNormcitations":3.1724,"scorePubyear":2016,"source":"psychological medicine, 46(9), 2009-2010","title":"suicide as a complex classification problem: machine learning and related techniques can advance suicide prediction - a reply to roaldset (2016)","url":"http://dx.doi.org/10.1017/s0033291716000611","weightCitations":4,"weightLinks":0,"weightNormcitations":3.1724,"x":-0.0411,"y":-0.6464,"year":"2016"},{"authors":"trueblood, js; brown, sd; heathcote, a","cluster":2,"id":560,"label":"trueblood (2015)","scoreCitations":4,"scoreNormcitations":1.6842,"scorePubyear":2015,"source":"psychological review, 122(4), 848-853","title":"the fragile nature of contextual preference reversals: reply to tsetsos, chater, and usher (2015)","url":"http://dx.doi.org/10.1037/a0039656","weightCitations":4,"weightLinks":1,"weightNormcitations":1.6842,"x":-0.3828,"y":-0.1875,"year":"2015"},{"authors":"hus, v; bishop, s; gotham, k; huerta, m; lord, c","cluster":355,"id":561,"label":"hus (2013)","scoreCitations":4,"scoreNormcitations":1.007,"scorePubyear":2013,"source":"journal of child psychology and psychiatry, 54(6), 698-700","title":"commentary: advancing measurement of asd severity and social competence: a reply to constantino and frazier (2013)","url":"http://dx.doi.org/10.1111/jcpp.12065","weightCitations":4,"weightLinks":0,"weightNormcitations":1.007,"x":0.7385,"y":-0.4494,"year":"2013"},{"authors":"vanpaemel, w; lee, md","cluster":19,"id":562,"label":"vanpaemel (2012)","scoreCitations":4,"scoreNormcitations":0.5143,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1253-1258","title":"the bayesian evaluation of categorization models: comment on wills and pothos (2012)","url":"http://dx.doi.org/10.1037/a0028551","weightCitations":4,"weightLinks":2,"weightNormcitations":0.5143,"x":0.3489,"y":0.8987,"year":"2012"},{"authors":"bergman, me; payne, sc; boswell, wr","cluster":53,"id":563,"label":"bergman (2012)","scoreCitations":4,"scoreNormcitations":0.5143,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 865-870","title":"sometimes pursuits don't pan out: anticipated destinations and other caveats: comment on hom, mitchell, lee, and griffeth (2012)","url":"http://dx.doi.org/10.1037/a0028541","weightCitations":4,"weightLinks":1,"weightNormcitations":0.5143,"x":0.5725,"y":-0.2564,"year":"2012"},{"authors":"white, pa","cluster":117,"id":564,"label":"white (2012)","scoreCitations":4,"scoreNormcitations":0.5143,"scorePubyear":2012,"source":"psychological bulletin, 138(4), 624-627","title":"perceptual impressions and mental simulations of forces: reply to hubbard (2012)","url":"http://dx.doi.org/10.1037/a0028537","weightCitations":4,"weightLinks":1,"weightNormcitations":0.5143,"x":0.3862,"y":0.9983,"year":"2012"},{"authors":"lincoln, tm","cluster":356,"id":565,"label":"lincoln (2010)","scoreCitations":4,"scoreNormcitations":0.1767,"scorePubyear":2010,"source":"psychological medicine, 40(5), 877-879","title":"prevention is better than cure: a reply to mckenzie, march et al. and selten & cantor-graae","url":"http://dx.doi.org/10.1017/s0033291709991838","weightCitations":4,"weightLinks":0,"weightNormcitations":0.1767,"x":-1.014,"y":-0.3621,"year":"2010"},{"authors":"albert, mk","cluster":128,"id":566,"label":"albert (2008)","scoreCitations":4,"scoreNormcitations":0.2222,"scorePubyear":2008,"source":"psychological review, 115(4), 1127-1141","title":"the role of contrast in the perception of achromatic transparency: comment on singh and anderson (2002) and anderson (2003)","url":"http://dx.doi.org/10.1037/a0013661","weightCitations":4,"weightLinks":1,"weightNormcitations":0.2222,"x":0.3546,"y":-0.8296,"year":"2008"},{"authors":"bond, cf; depaulo, bm","cluster":47,"id":567,"label":"bond (2008)","scoreCitations":4,"scoreNormcitations":0.2222,"scorePubyear":2008,"source":"psychological bulletin, 134(4), 501-503","title":"individual differences in judging deception: reply to o'sullivan (2008) and pigott and wu (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.4.501","weightCitations":4,"weightLinks":2,"weightNormcitations":0.2222,"x":0.4262,"y":0.0783,"year":"2008"},{"authors":"oberauer, k; oaksford, m","cluster":357,"id":568,"label":"oberauer (2008)","scoreCitations":4,"scoreNormcitations":0.2222,"scorePubyear":2008,"source":"psychological review, 115(3), 773-778","title":"what must a psychological theory of reasoning explain? comment on barrouillet, gauffroy, and lecas (2008)","url":"http://dx.doi.org/10.1037/0033-295x.115.3.773","weightCitations":4,"weightLinks":0,"weightNormcitations":0.2222,"x":-0.4986,"y":-0.9558,"year":"2008"},{"authors":"pope, hg; poliakoff, mb; parker, mp; boynes, m; hudson, ji","cluster":358,"id":569,"label":"pope (2007)","scoreCitations":4,"scoreNormcitations":0.4056,"scorePubyear":2007,"source":"psychological medicine, 37(7), 1067-1068","title":"untitled - the authors' reply","weightCitations":4,"weightLinks":0,"weightNormcitations":0.4056,"x":-0.4421,"y":-0.9754,"year":"2007"},{"authors":"mcrae, k; hare, m; tanenhaus, mk","cluster":359,"id":570,"label":"mcrae (2005)","scoreCitations":4,"scoreNormcitations":0.1805,"scorePubyear":2005,"source":"psychological review, 112(4), 1022-1031","title":"meaning through syntax is insufficient to explain comprehension of sentences with reduced relative clauses: comment on mckoon and ratcliff (2003)","url":"http://dx.doi.org/10.1037/0033-295x.112.4.1022","weightCitations":4,"weightLinks":0,"weightNormcitations":0.1805,"x":0.0284,"y":-0.2982,"year":"2005"},{"authors":"klauer, kc; musch, j","cluster":118,"id":571,"label":"klauer (2005)","scoreCitations":4,"scoreNormcitations":0.1805,"scorePubyear":2005,"source":"psychological review, 112(2), 519-520","title":"accounting for belief bias in a mental model framework? no problem! reply to garnham and oakhill (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.2.519","weightCitations":4,"weightLinks":1,"weightNormcitations":0.1805,"x":0.1247,"y":1.0589,"year":"2005"},{"authors":"haaga, daf","cluster":12,"id":572,"label":"haaga (2004)","scoreCitations":4,"scoreNormcitations":0.1725,"scorePubyear":2004,"source":"psychological bulletin, 130(4), 674-676","title":"a healthy dose of criticism for randomized trials: comment on westen, novotny, and thompson-brenner (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.4.674","weightCitations":4,"weightLinks":1,"weightNormcitations":0.1725,"x":0.2212,"y":0.4408,"year":"2004"},{"authors":"crawford, cb","cluster":18,"id":573,"label":"crawford (2003)","scoreCitations":4,"scoreNormcitations":0.149,"scorePubyear":2003,"source":"psychological bulletin, 129(6), 854-857","title":"a prolegomenon for a viable evolutionary psychology - the myth and the reality: comment on lickliter and honeycutt (2003)","url":"http://dx.doi.org/10.1037/0033-2909.129.6.854","weightCitations":4,"weightLinks":1,"weightNormcitations":0.149,"x":0.3082,"y":-0.5905,"year":"2003"},{"authors":"arkin, rm; hermann, ad","cluster":55,"id":574,"label":"arkin (2000)","scoreCitations":4,"scoreNormcitations":0.104,"scorePubyear":2000,"source":"psychological bulletin, 126(4), 501-504","title":"constructing desirable identities-self-presentation in psychotherapy and daily life: comment on kelly (2000)","weightCitations":4,"weightLinks":1,"weightNormcitations":0.104,"x":-0.123,"y":-0.2904,"year":"2000"},{"authors":"baumeister, rf; catanese, kr; campbell, wk; tice, dm","cluster":58,"id":575,"label":"baumeister (2000)","scoreCitations":4,"scoreNormcitations":0.104,"scorePubyear":2000,"source":"psychological bulletin, 126(3), 385-389","title":"nature, culture, and explanations for erotic plasticity: reply to andersen, cyranowski, and aarestad (2000) and hyde and durik (2000)","url":"http://dx.doi.org/10.1037/0033-2909.126.3.385","weightCitations":4,"weightLinks":2,"weightNormcitations":0.104,"x":-0.4398,"y":0.8869,"year":"2000"},{"authors":"fernando, s","cluster":360,"id":576,"label":"fernando (1998)","scoreCitations":4,"scoreNormcitations":0.3036,"scorePubyear":1998,"source":"psychological medicine, 28(2), 496-497","title":"untitled - reply","weightCitations":4,"weightLinks":0,"weightNormcitations":0.3036,"x":0.7348,"y":-0.389,"year":"1998"},{"authors":"rips, lj; conrad, fg","cluster":119,"id":577,"label":"rips (1990)","scoreCitations":4,"scoreNormcitations":0.1837,"scorePubyear":1990,"source":"psychological review, 97(4), 571-575","title":"parts of activities - reply","weightCitations":4,"weightLinks":1,"weightNormcitations":0.1837,"x":0.107,"y":0.4717,"year":"1990"},{"authors":"kagel, jh; battalio, rc; green, l","cluster":51,"id":578,"label":"kagel (1983)","scoreCitations":4,"scoreNormcitations":0.3368,"scorePubyear":1983,"source":"psychological review, 90(4), 380-384","title":"matching versus maximizing - comments","weightCitations":4,"weightLinks":2,"weightNormcitations":0.3368,"x":-0.3072,"y":0.668,"year":"1983"},{"authors":"sherwood, gg","cluster":120,"id":579,"label":"sherwood (1982)","scoreCitations":4,"scoreNormcitations":0.0948,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 372-375","title":"consciousness and stress reduction in defensive projection - a reply","weightCitations":4,"weightLinks":1,"weightNormcitations":0.0948,"x":-0.2395,"y":-0.7113,"year":"1982"},{"authors":"weatherburn, d; grayson, d","cluster":115,"id":580,"label":"weatherburn (1982)","scoreCitations":4,"scoreNormcitations":0.0948,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 389-392","title":"latency probability functions - a reply","weightCitations":4,"weightLinks":1,"weightNormcitations":0.0948,"x":0.2069,"y":-0.4929,"year":"1982"},{"authors":"munsinger, h","cluster":121,"id":581,"label":"munsinger (1978)","scoreCitations":4,"scoreNormcitations":0.1546,"scorePubyear":1978,"source":"psychological bulletin, 85(1), 202-206","title":"comment on munsingers review of adoption studies - reply","url":"http://dx.doi.org/10.1037//0033-2909.85.1.202","weightCitations":4,"weightLinks":1,"weightNormcitations":0.1546,"x":-0.182,"y":-0.0997,"year":"1978"},{"authors":"coren, s","cluster":361,"id":582,"label":"coren (1974)","scoreCitations":4,"scoreNormcitations":0.3944,"scorePubyear":1974,"source":"psychological review, 81(3), 266-266","title":"implicit depth cues do not create subjective contours - reply","url":"http://dx.doi.org/10.1037/h0020076","weightCitations":4,"weightLinks":0,"weightNormcitations":0.3944,"x":0.4943,"y":0.6732,"year":"1974"},{"authors":"engel, bt","cluster":362,"id":583,"label":"engel (1974)","scoreCitations":4,"scoreNormcitations":0.3944,"scorePubyear":1974,"source":"psychological bulletin, 81(1), 43-43","title":"self-control of cardiac functioning - promise as yet unfulfilled - comment","url":"http://dx.doi.org/10.1037/h0035525","weightCitations":4,"weightLinks":0,"weightNormcitations":0.3944,"x":0.3735,"y":0.1657,"year":"1974"},{"authors":"feeney, dm; pittman, jc; wagner, hr","cluster":122,"id":584,"label":"feeney (1974)","scoreCitations":4,"scoreNormcitations":0.3944,"scorePubyear":1974,"source":"psychological review, 81(6), 536-539","title":"lateral inhibition and attention - comments on neuropsychological theory of walley and weiden","url":"http://dx.doi.org/10.1037/h0037192","weightCitations":4,"weightLinks":1,"weightNormcitations":0.3944,"x":0.268,"y":0.0985,"year":"1974"},{"authors":"rothstein, ld","cluster":363,"id":585,"label":"rothstein (1974)","scoreCitations":4,"scoreNormcitations":0.3944,"scorePubyear":1974,"source":"psychological bulletin, 81(3), 199-200","title":"range effects are characteristic of a person serving in a within-subjects experimental design - reply","url":"http://dx.doi.org/10.1037/h0035841","weightCitations":4,"weightLinks":0,"weightNormcitations":0.3944,"x":0.8752,"y":0.2234,"year":"1974"},{"authors":"walley, re; weiden, td","cluster":122,"id":586,"label":"walley (1974)","scoreCitations":4,"scoreNormcitations":0.3944,"scorePubyear":1974,"source":"psychological review, 81(6), 540-542","title":"giving flesh to a straw man - reply to feeney, pittman, and wagner","url":"http://dx.doi.org/10.1037/h0037204","weightCitations":4,"weightLinks":1,"weightNormcitations":0.3944,"x":0.2704,"y":0.1014,"year":"1974"},{"authors":"edgington, es","cluster":56,"id":587,"label":"edgington (1973)","scoreCitations":4,"scoreNormcitations":0.4928,"scorePubyear":1973,"source":"psychological bulletin, 80(1), 84-85","title":"random-sampling assumption in comment on component-randomization tests","url":"http://dx.doi.org/10.1037/h0034625","weightCitations":4,"weightLinks":1,"weightNormcitations":0.4928,"x":0.0665,"y":0.3096,"year":"1973"},{"authors":"labate, l","cluster":364,"id":588,"label":"labate (1972)","scoreCitations":4,"scoreNormcitations":0.6914,"scorePubyear":1972,"source":"psychological bulletin, 77(1), 49","title":"early infantile autism - reply","url":"http://dx.doi.org/10.1037/h0032118","weightCitations":4,"weightLinks":0,"weightNormcitations":0.6914,"x":-0.2118,"y":-1.0488,"year":"1972"},{"authors":"riley, da; sherman, m; mckee, jp","cluster":365,"id":589,"label":"riley (1966)","scoreCitations":4,"scoreNormcitations":0.2963,"scorePubyear":1966,"source":"psychological review, 73(3), 252","title":"a comment on intermediate size discrimination and adaptation-level theory","url":"http://dx.doi.org/10.1037/h0023279","weightCitations":4,"weightLinks":0,"weightNormcitations":0.2963,"x":-0.6388,"y":0.788,"year":"1966"},{"authors":"lockard, rb","cluster":123,"id":590,"label":"lockard (1964)","scoreCitations":4,"scoreNormcitations":0.4444,"scorePubyear":1964,"source":"psychological bulletin, 62(5), 358-360","title":"preadaptation - panacea for past puzzles - reply to kiernan","url":"http://dx.doi.org/10.1037/h0047664","weightCitations":4,"weightLinks":1,"weightNormcitations":0.4444,"x":0.5152,"y":0.4798,"year":"1964"},{"authors":"rohracher, h","cluster":366,"id":591,"label":"rohracher (1964)","scoreCitations":4,"scoreNormcitations":0.4444,"scorePubyear":1964,"source":"psychological review, 71(6), 524-525","title":"comments on a resonance theory of microvibrations","url":"http://dx.doi.org/10.1037/h0044942","weightCitations":4,"weightLinks":0,"weightNormcitations":0.4444,"x":0.5256,"y":0.9028,"year":"1964"},{"authors":"williams, jgl","cluster":367,"id":592,"label":"williams (1964)","scoreCitations":4,"scoreNormcitations":0.4444,"scorePubyear":1964,"source":"psychological review, 71(6), 526-527","title":"a resonance theory of microvibrations - a reply to rohracher","url":"http://dx.doi.org/10.1037/h0044128","weightCitations":4,"weightLinks":0,"weightNormcitations":0.4444,"x":-0.1921,"y":-0.6474,"year":"1964"},{"authors":"kendler, hh","cluster":57,"id":593,"label":"kendler (1952)","scoreCitations":4,"scoreNormcitations":0.4179,"scorePubyear":1952,"source":"psychological bulletin, 49(1), 47-51","title":"some comments on thistlethwaite perception of latent learning","url":"http://dx.doi.org/10.1037/h0050626","weightCitations":4,"weightLinks":1,"weightNormcitations":0.4179,"x":-0.1516,"y":0.3984,"year":"1952"},{"authors":"spence, kw","cluster":368,"id":594,"label":"spence (1939)","scoreCitations":4,"scoreNormcitations":0.8276,"scorePubyear":1939,"source":"psychological review, 46, 88-91","title":"a reply to dr razran on the transposition of response in discrimination experiments","url":"http://dx.doi.org/10.1037/h0059044","weightCitations":4,"weightLinks":0,"weightNormcitations":0.8276,"x":-0.1103,"y":-0.8871,"year":"1939"},{"authors":"tinker, ma","cluster":116,"id":595,"label":"tinker (1929)","scoreCitations":4,"scoreNormcitations":1.4286,"scorePubyear":1929,"source":"psychological bulletin, 26(10), 611-613","title":"the influence of letter position on range of visual apprehension - a reply to dr.crosland","url":"http://dx.doi.org/10.1037/h0070709","weightCitations":4,"weightLinks":1,"weightNormcitations":1.4286,"x":0.5708,"y":0.627,"year":"1929"},{"authors":"heinlein, cp","cluster":134,"id":596,"label":"heinlein (1929)","scoreCitations":4,"scoreNormcitations":1.4286,"scorePubyear":1929,"source":"psychological review, 36, 524-542","title":"critique of the seashore consonance test a reply to dr larson","url":"http://dx.doi.org/10.1037/h0070179","weightCitations":4,"weightLinks":1,"weightNormcitations":1.4286,"x":0.7389,"y":-0.7675,"year":"1929"},{"authors":"adi-japha, e; karni, a","cluster":124,"id":597,"label":"adi-japha (2016)","scoreCitations":3,"scoreNormcitations":2.3793,"scorePubyear":2016,"source":"psychological bulletin, 142(5), 568-571","title":"time for considering constraints on procedural memory consolidation processes: comment on pan and rickard (2015) with specific reference to developmental changes","url":"http://dx.doi.org/10.1037/bul0000048","weightCitations":3,"weightLinks":1,"weightNormcitations":2.3793,"x":-0.6284,"y":0.2918,"year":"2016"},{"authors":"peralta, v; cuesta, mj","cluster":154,"id":598,"label":"peralta (2016)","scoreCitations":3,"scoreNormcitations":2.3793,"scorePubyear":2016,"source":"psychological medicine, 46(7), 1559-1560","title":"comparing delusional disorder and schizophrenia: a comment on hui et al. (2015)","url":"http://dx.doi.org/10.1017/s0033291715002664","weightCitations":3,"weightLinks":1,"weightNormcitations":2.3793,"x":1.0016,"y":-0.1135,"year":"2016"},{"authors":"harms, pd; wood, d; spain, sm","cluster":369,"id":599,"label":"harms (2016)","scoreCitations":3,"scoreNormcitations":2.3793,"scorePubyear":2016,"source":"psychological review, 123(1), 84-89","title":"separating the why from the what: reply to jonas and markon (2015)","url":"http://dx.doi.org/10.1037/a0039860","weightCitations":3,"weightLinks":0,"weightNormcitations":2.3793,"x":-0.9674,"y":0.3591,"year":"2016"},{"authors":"moritz, s; werner, d; menon, m; balzan, rp; woodward, ts","cluster":370,"id":600,"label":"moritz (2016)","scoreCitations":3,"scoreNormcitations":2.3793,"scorePubyear":2016,"source":"psychological medicine, 46(1), 59-61","title":"jumping to negative conclusions - a case of study-gathering bias? a reply by the developers of metacognitive training (mct) to the meta-analysis of van oosterhout et al. (2015)","url":"http://dx.doi.org/10.1017/s0033291715002068","weightCitations":3,"weightLinks":0,"weightNormcitations":2.3793,"x":0.2635,"y":0.8627,"year":"2016"},{"authors":"nilsson, h; juslin, p; winman, a","cluster":1,"id":601,"label":"nilsson (2016)","scoreCitations":3,"scoreNormcitations":2.3793,"scorePubyear":2016,"source":"psychological review, 123(1), 103-111","title":"heuristics can produce surprisingly rational probability estimates: comment on costello and watts (2014)","url":"http://dx.doi.org/10.1037/a0039249","weightCitations":3,"weightLinks":3,"weightNormcitations":2.3793,"x":0.4811,"y":-0.6691,"year":"2016"},{"authors":"hertenstein, e; nissen, c","cluster":146,"id":602,"label":"hertenstein (2015)","scoreCitations":3,"scoreNormcitations":1.2632,"scorePubyear":2015,"source":"psychotherapy and psychosomatics, 84(4), 250-251","title":"comment on 'a meta-analysis of the efficacy of acceptance and commitment therapy for clinically relevant mental and physical health problems'","url":"http://dx.doi.org/10.1159/000374124","weightCitations":3,"weightLinks":1,"weightNormcitations":1.2632,"x":0.7278,"y":-0.5246,"year":"2015"},{"authors":"guo, y; regenwetter, m","cluster":2,"id":603,"label":"guo (2014)","scoreCitations":3,"scoreNormcitations":0.4588,"scorePubyear":2014,"source":"psychological review, 121(4), 696-705","title":"quantitative tests of the perceived relative argument model: comment on loomes (2010)","url":"http://dx.doi.org/10.1037/a0036095","weightCitations":3,"weightLinks":2,"weightNormcitations":0.4588,"x":-0.3541,"y":-0.0197,"year":"2014"},{"authors":"brewin, cr","cluster":80,"id":604,"label":"brewin (2014)","scoreCitations":3,"scoreNormcitations":0.4588,"scorePubyear":2014,"source":"psychological bulletin, 140(1), 105-108","title":"prospects and problems in studying traumatic flashbacks: reply to kvavilashvili 2014)","url":"http://dx.doi.org/10.1037/a0034682","weightCitations":3,"weightLinks":1,"weightNormcitations":0.4588,"x":0.0325,"y":0.4948,"year":"2014"},{"authors":"george, b; klijn, a","cluster":371,"id":605,"label":"george (2013)","scoreCitations":3,"scoreNormcitations":0.7552,"scorePubyear":2013,"source":"psychological medicine, 43(9), 2015-2016","title":"a sweeter smelling rose: a reply to our commentators","url":"http://dx.doi.org/10.1017/s0033291713001244","weightCitations":3,"weightLinks":0,"weightNormcitations":0.7552,"x":-0.6585,"y":-0.6733,"year":"2013"},{"authors":"agardy, s","cluster":372,"id":606,"label":"agardy (2013)","scoreCitations":3,"scoreNormcitations":0.7552,"scorePubyear":2013,"source":"psychological medicine, 43(8), 1787-1787","title":"comments on 'recovery from chronic fatigue syndrome after treatments given in the pace trial'","url":"http://dx.doi.org/10.1017/s003329171300113x","weightCitations":3,"weightLinks":0,"weightNormcitations":0.7552,"x":-0.0586,"y":0.3853,"year":"2013"},{"authors":"miles, e; sheeran, p; webb, tl","cluster":0,"id":607,"label":"miles (2013)","scoreCitations":0,"scoreNormcitations":2013.0,"scorePubyear":3,"url":"real world","weightCitations":125,"weightLinks":0,"weightNormcitations":1.0},{"authors":"lillard, as; hopkins, ej; dore, ra; palmquist, cm; lerner, md; smith, ed","cluster":33,"id":608,"label":"lillard (2013)","scoreCitations":3,"scoreNormcitations":0.7552,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 49-52","title":"concepts and theories, methods and reasons: why do the children (pretend) play? reply to weisberg, hirsh-pasek, and golinkoff (2013); bergen (2013); and walker and gopnik (2013) reply","url":"http://dx.doi.org/10.1037/a0030521","weightCitations":3,"weightLinks":3,"weightNormcitations":0.7552,"x":-0.6454,"y":-0.8187,"year":"2013"},{"authors":"weisberg, ds; hirsh-pasek, k; golinkoff, rm","cluster":33,"id":609,"label":"weisberg (2013)","scoreCitations":3,"scoreNormcitations":0.7552,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 35-39","title":"embracing complexity: rethinking the relation between play and learning: comment on lillard et al. (2013)","url":"http://dx.doi.org/10.1037/a0030077","weightCitations":3,"weightLinks":1,"weightNormcitations":0.7552,"x":-0.6366,"y":-0.8187,"year":"2013"},{"authors":"johnson, dw; johnson, rt; roseth, cj","cluster":126,"id":610,"label":"johnson (2012)","scoreCitations":3,"scoreNormcitations":0.3857,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1071-1078","title":"competition and performance: more facts, more understanding? comment on murayama and elliot (2012)","url":"http://dx.doi.org/10.1037/a0029454","weightCitations":3,"weightLinks":1,"weightNormcitations":0.3857,"x":0.8973,"y":0.5662,"year":"2012"},{"authors":"murayama, k; elliot, aj","cluster":126,"id":611,"label":"murayama (2012)","scoreCitations":3,"scoreNormcitations":0.3857,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1079-1084","title":"further clarifying the competition-performance relation: reply to d. w. johnson et al. (2012)","url":"http://dx.doi.org/10.1037/a0029606","weightCitations":3,"weightLinks":1,"weightNormcitations":0.3857,"x":0.8972,"y":0.5698,"year":"2012"},{"authors":"griffeth, rw; lee, tw; mitchell, tr; hom, pw","cluster":53,"id":612,"label":"griffeth (2012)","scoreCitations":3,"scoreNormcitations":0.3857,"scorePubyear":2012,"source":"psychological bulletin, 138(5), 871-875","title":"further clarification on the hom, mitchell, lee, and griffeth (2012) model: reply to bergman, payne, and boswell (2012) and maertz (2012)","url":"http://dx.doi.org/10.1037/a0029277","weightCitations":3,"weightLinks":2,"weightNormcitations":0.3857,"x":0.5739,"y":-0.2624,"year":"2012"},{"authors":"elliott, gr; elliott, md","cluster":43,"id":613,"label":"elliott (2011)","scoreCitations":3,"scoreNormcitations":0.3353,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 749-750","title":"pharmacological cognitive enhancers: comment on smith and farah (2011)","url":"http://dx.doi.org/10.1037/a0024119","weightCitations":3,"weightLinks":1,"weightNormcitations":0.3353,"x":0.1501,"y":-0.5675,"year":"2011"},{"authors":"ehrenthal, jc; grande, t","cluster":373,"id":614,"label":"ehrenthal (2011)","scoreCitations":3,"scoreNormcitations":0.3353,"scorePubyear":2011,"source":"psychotherapy and psychosomatics, 80(1), 52-52","title":"the emperor's new clothes - comment on bhar et al","url":"http://dx.doi.org/10.1159/000315412","weightCitations":3,"weightLinks":0,"weightNormcitations":0.3353,"x":-0.7377,"y":-0.3137,"year":"2011"},{"authors":"dazzan, p","cluster":127,"id":615,"label":"dazzan (2010)","scoreCitations":3,"scoreNormcitations":0.1325,"scorePubyear":2010,"source":"psychological medicine, 40(12), 2107-2108","title":"are antipsychotics good or bad for the brain? a comment on moncrieff & leo (2010)","url":"http://dx.doi.org/10.1017/s0033291710001698","weightCitations":3,"weightLinks":1,"weightNormcitations":0.1325,"x":-0.0331,"y":-0.2454,"year":"2010"},{"authors":"miller, ge","cluster":6,"id":616,"label":"miller (2009)","scoreCitations":3,"scoreNormcitations":0.4453,"scorePubyear":2009,"source":"psychological bulletin, 135(6), 854-856","title":"in search of integrated specificity: comment on denson, spanovic, and miller (2009)","url":"http://dx.doi.org/10.1037/a0017440","weightCitations":3,"weightLinks":1,"weightNormcitations":0.4453,"x":-0.1796,"y":0.5299,"year":"2009"},{"authors":"anderson, bl; singh, m; o'vari, j","cluster":128,"id":617,"label":"anderson (2008)","scoreCitations":3,"scoreNormcitations":0.1667,"scorePubyear":2008,"source":"psychological review, 115(4), 1144-1151","title":"natural decompositions of perceived transparency: reply to albert (2008)","url":"http://dx.doi.org/10.1037/a0013666","weightCitations":3,"weightLinks":1,"weightNormcitations":0.1667,"x":0.3583,"y":-0.8301,"year":"2008"},{"authors":"brainerd, cj; reyna, vf; ceci, sj; holliday, re","cluster":49,"id":618,"label":"brainerd (2008)","scoreCitations":3,"scoreNormcitations":0.1667,"scorePubyear":2008,"source":"psychological bulletin, 134(5), 773-777","title":"understanding developmental reversals in false memory: reply to ghetti (2008) and howe (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.5.773","weightCitations":3,"weightLinks":2,"weightNormcitations":0.1667,"x":-0.0179,"y":0.9757,"year":"2008"},{"authors":"pigott, td; wu, mj","cluster":47,"id":619,"label":"pigott (2008)","scoreCitations":3,"scoreNormcitations":0.1667,"scorePubyear":2008,"source":"psychological bulletin, 134(4), 498-500","title":"methodological issues in meta-analyzing standard deviations: comment on bond and depaulo (2008)","url":"http://dx.doi.org/10.1037/0033-2909.134.4.498","weightCitations":3,"weightLinks":1,"weightNormcitations":0.1667,"x":0.4254,"y":0.0845,"year":"2008"},{"authors":"howe, pdl; sagreiya, h; curtis, dl; zheng, cj; livingstone, ms","cluster":374,"id":620,"label":"howe (2007)","scoreCitations":3,"scoreNormcitations":0.3042,"scorePubyear":2007,"source":"psychological review, 114(4), 1105-1109","title":"the double-anchoring theory of lightness perception: a comment on bressan (2006)","url":"http://dx.doi.org/10.1037/0033-295x.114.4.1105","weightCitations":3,"weightLinks":0,"weightNormcitations":0.3042,"x":-0.5458,"y":0.7146,"year":"2007"},{"authors":"parks, cm; yonelinas, ap","cluster":4,"id":621,"label":"parks (2007)","scoreCitations":3,"scoreNormcitations":0.3042,"scorePubyear":2007,"source":"psychological review, 114(1), 201-202","title":"moving beyond pure signal-detection models: comment on wixted (2007) - postscript","url":"http://dx.doi.org/10.1037/0033-295x.114.1.201","weightCitations":3,"weightLinks":2,"weightNormcitations":0.3042,"x":0.3434,"y":-0.4213,"year":"2007"},{"authors":"wilson, db; shadish, wr","cluster":54,"id":622,"label":"wilson (2006)","scoreCitations":3,"scoreNormcitations":0.2038,"scorePubyear":2006,"source":"psychological bulletin, 132(4), 524-528","title":"on blowing trumpets to the tulips: to prove or not to prove the null hypothesis - comment on bosch, steinkamp, and boller (2006)","url":"http://dx.doi.org/10.1037/0033-2909.132.4.524","weightCitations":3,"weightLinks":1,"weightNormcitations":0.2038,"x":-0.2569,"y":-0.9538,"year":"2006"},{"authors":"robbins, sb; le, h; lauver, k","cluster":129,"id":623,"label":"robbins (2005)","scoreCitations":3,"scoreNormcitations":0.1353,"scorePubyear":2005,"source":"psychological bulletin, 131(3), 410-411","title":"promoting successful college outcomes for all students: reply to weissberg and owen (2005)","url":"http://dx.doi.org/10.1037/0032-2909.131.3.410","weightCitations":3,"weightLinks":1,"weightNormcitations":0.1353,"x":-0.2358,"y":0.0467,"year":"2005"},{"authors":"crocker, j; park, le","cluster":10,"id":624,"label":"crocker (2004)","scoreCitations":3,"scoreNormcitations":0.1294,"scorePubyear":2004,"source":"psychological bulletin, 130(3), 430-434","title":"reaping the benefits of pursuing self-esteem without the costs? reply to dubois and flay (2004), sheldon (2004), and pyszczynski and cox (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.3.430","weightCitations":3,"weightLinks":4,"weightNormcitations":0.1294,"x":0.1353,"y":0.7551,"year":"2004"},{"authors":"lundberg, gd","cluster":375,"id":625,"label":"lundberg (2002)","scoreCitations":3,"scoreNormcitations":0.0566,"scorePubyear":2002,"source":"psychosomatic medicine, 64(4), 568-570","title":"resolved: psychosocial interventions can improve clinical outcomes in organic disease - discussant comments","url":"http://dx.doi.org/10.1097/01.psy.0000023413.02546.86","weightCitations":3,"weightLinks":0,"weightNormcitations":0.0566,"x":1.0663,"y":-0.1519,"year":"2002"},{"authors":"mason, wa","cluster":50,"id":626,"label":"mason (1998)","scoreCitations":3,"scoreNormcitations":0.2277,"scorePubyear":1998,"source":"psychological bulletin, 123(3), 231-233","title":"words, deeds, and motivations: comment on maestripieri and carroll (1998)","url":"http://dx.doi.org/10.1037//0033-2909.123.3.231","weightCitations":3,"weightLinks":1,"weightNormcitations":0.2277,"x":0.7411,"y":0.3338,"year":"1998"},{"authors":"johnsonlaird, pn; tabossi, p; byrne, rmj","cluster":376,"id":627,"label":"johnsonlaird (1992)","scoreCitations":3,"scoreNormcitations":0.2647,"scorePubyear":1992,"source":"psychological review, 99(1), 188-190","title":"in defense of reasoning - reply","weightCitations":3,"weightLinks":0,"weightNormcitations":0.2647,"x":0.3388,"y":0.3681,"year":"1992"},{"authors":"berbaum, ml; moreland, rl; zajonc, rb","cluster":377,"id":628,"label":"berbaum (1986)","scoreCitations":3,"scoreNormcitations":0.1803,"scorePubyear":1986,"source":"psychological bulletin, 100(2), 270-274","title":"contentions over the confluence model - a reply","url":"http://dx.doi.org/10.1037//0033-2909.100.2.270","weightCitations":3,"weightLinks":0,"weightNormcitations":0.1803,"x":-0.6402,"y":0.3795,"year":"1986"},{"authors":"marks, im","cluster":378,"id":629,"label":"marks (1986)","scoreCitations":3,"scoreNormcitations":0.1803,"scorePubyear":1986,"source":"psychological medicine, 16(1), 9-12","title":"what do the neurosciences tell us about anxiety disorders - a comment","weightCitations":3,"weightLinks":0,"weightNormcitations":0.1803,"x":1.0254,"y":0.3311,"year":"1986"},{"authors":"guttentag, re","cluster":130,"id":630,"label":"guttentag (1982)","scoreCitations":3,"scoreNormcitations":0.0711,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 366-368","title":"phonological recoding and reading - comment","weightCitations":3,"weightLinks":1,"weightNormcitations":0.0711,"x":-0.0115,"y":-0.4196,"year":"1982"},{"authors":"braine, mds","cluster":379,"id":631,"label":"braine (1979)","scoreCitations":3,"scoreNormcitations":0.2743,"scorePubyear":1979,"source":"psychological review, 86(2), 154-156","title":"if-then and strict implication - reply","url":"http://dx.doi.org/10.1037/0033-295x.86.2.158","weightCitations":3,"weightLinks":0,"weightNormcitations":0.2743,"x":-0.7598,"y":0.145,"year":"1979"},{"authors":"darlington, rb","cluster":161,"id":632,"label":"darlington (1978)","scoreCitations":3,"scoreNormcitations":0.116,"scorePubyear":1978,"source":"psychological bulletin, 85(4), 673-674","title":"cultural test bias - comment on hunter and schmidt","url":"http://dx.doi.org/10.1037//0033-2909.85.4.673","weightCitations":3,"weightLinks":1,"weightNormcitations":0.116,"x":0.04,"y":-0.5795,"year":"1978"},{"authors":"keren, g; lewis, c","cluster":380,"id":633,"label":"keren (1977)","scoreCitations":3,"scoreNormcitations":0.2755,"scorePubyear":1977,"source":"psychological bulletin, 84(2), 346-348","title":"comment on coding in nonorthogonal designs","weightCitations":3,"weightLinks":0,"weightNormcitations":0.2755,"x":0.6618,"y":-0.2786,"year":"1977"},{"authors":"dalrymplealford, ec","cluster":381,"id":634,"label":"dalrymplealford (1973)","scoreCitations":3,"scoreNormcitations":0.3696,"scorePubyear":1973,"source":"psychological review, 80(1), 93-94","title":"additional comments on alpha parameter of horvaths model for free association tests","url":"http://dx.doi.org/10.1037/h0033879","weightCitations":3,"weightLinks":0,"weightNormcitations":0.3696,"x":-1.0748,"y":0.0959,"year":"1973"},{"authors":"gregory, rl","cluster":382,"id":635,"label":"gregory (1973)","scoreCitations":3,"scoreNormcitations":0.3696,"scorePubyear":1973,"source":"psychological review, 80(4), 304-304","title":"constancy scaling revisited - reply","url":"http://dx.doi.org/10.1037/h0020067","weightCitations":3,"weightLinks":0,"weightNormcitations":0.3696,"x":0.2408,"y":-0.7617,"year":"1973"},{"authors":"seligman, me","cluster":383,"id":636,"label":"seligman (1973)","scoreCitations":3,"scoreNormcitations":0.3696,"scorePubyear":1973,"source":"psychological review, 80(4), 306-306","title":"general process learning theorists - reply","url":"http://dx.doi.org/10.1037/h0020069","weightCitations":3,"weightLinks":0,"weightNormcitations":0.3696,"x":0.9118,"y":-0.2348,"year":"1973"},{"authors":"bastiaans, j","cluster":384,"id":637,"label":"bastiaans (1972)","scoreCitations":3,"scoreNormcitations":0.5185,"scorePubyear":1972,"source":"psychotherapy and psychosomatics, 20(5), 300","title":"general comments on role of aggression in human psychopathology","weightCitations":3,"weightLinks":0,"weightNormcitations":0.5185,"x":-0.978,"y":0.0929,"year":"1972"},{"authors":"bovet, d; bovetnit, f; oliverio, a","cluster":131,"id":638,"label":"bovet (1972)","scoreCitations":3,"scoreNormcitations":0.5185,"scorePubyear":1972,"source":"psychological bulletin, 78(5), 351","title":"gene action and behavior of c3h and dba mice - reply","url":"http://dx.doi.org/10.1037/h0033514","weightCitations":3,"weightLinks":1,"weightNormcitations":0.5185,"x":-0.0454,"y":0.6996,"year":"1972"},{"authors":"luborsky, l","cluster":385,"id":639,"label":"luborsky (1972)","scoreCitations":3,"scoreNormcitations":0.5185,"scorePubyear":1972,"source":"psychological bulletin, 78(5), 406","title":"factors influencing outcome of psychotherapy - reply","url":"http://dx.doi.org/10.1037/h0020022","weightCitations":3,"weightLinks":0,"weightNormcitations":0.5185,"x":0.8304,"y":0.2789,"year":"1972"},{"authors":"levonian, e","cluster":386,"id":640,"label":"levonian (1969)","scoreCitations":3,"scoreNormcitations":0.1268,"scorePubyear":1969,"source":"psychological bulletin, 71(2), 140","title":"comment on application of canonical correlational analysis to learning data","url":"http://dx.doi.org/10.1037/h0026859","weightCitations":3,"weightLinks":0,"weightNormcitations":0.1268,"x":-0.0207,"y":0.8927,"year":"1969"},{"authors":"immergluck, l","cluster":132,"id":641,"label":"immergluck (1968)","scoreCitations":3,"scoreNormcitations":0.1376,"scorePubyear":1968,"source":"psychological bulletin, 70(3p1), 198","title":"further comments on is figural aftereffect an aftereffect","url":"http://dx.doi.org/10.1037/h0026148","weightCitations":3,"weightLinks":1,"weightNormcitations":0.1376,"x":0.122,"y":0.2397,"year":"1968"},{"authors":"wolitzky, dl","cluster":133,"id":642,"label":"wolitzky (1967)","scoreCitations":3,"scoreNormcitations":0.2586,"scorePubyear":1967,"source":"psychological bulletin, 68(5), 342","title":"effect of food deprivation on perception-cognition - a comment","url":"http://dx.doi.org/10.1037/h0025136","weightCitations":3,"weightLinks":1,"weightNormcitations":0.2586,"x":-0.4925,"y":0.7719,"year":"1967"},{"authors":"games, pa","cluster":387,"id":643,"label":"games (1966)","scoreCitations":3,"scoreNormcitations":0.2222,"scorePubyear":1966,"source":"psychological review, 73(4), 372","title":"comments on a power comparison of f and l tests-i","url":"http://dx.doi.org/10.1037/h0023428","weightCitations":3,"weightLinks":0,"weightNormcitations":0.2222,"x":0.2719,"y":0.7999,"year":"1966"},{"authors":"cattell, rb","cluster":388,"id":644,"label":"cattell (1961)","scoreCitations":3,"scoreNormcitations":0.8077,"scorePubyear":1961,"source":"psychological bulletin, 58(2), 176-176","title":"perturbations in personality structure research - reply","url":"http://dx.doi.org/10.1037/h0040785","weightCitations":3,"weightLinks":0,"weightNormcitations":0.8077,"x":0.9124,"y":0.4526,"year":"1961"},{"authors":"rosner, bs","cluster":389,"id":645,"label":"rosner (1961)","scoreCitations":3,"scoreNormcitations":0.8077,"scorePubyear":1961,"source":"psychological review, 68(5), 359-360","title":"alpha-rhythm of the eeg and mechanical-properties of brain - a reply to kennedy","url":"http://dx.doi.org/10.1037/h0038417","weightCitations":3,"weightLinks":0,"weightNormcitations":0.8077,"x":0.5872,"y":-0.5217,"year":"1961"},{"authors":"demille, r","cluster":52,"id":646,"label":"demille (1959)","scoreCitations":3,"scoreNormcitations":0.2432,"scorePubyear":1959,"source":"psychological bulletin, 56(4), 313-314","title":"learning-theory and schizophrenia - a comment","url":"http://dx.doi.org/10.1037/h0047152","weightCitations":3,"weightLinks":1,"weightNormcitations":0.2432,"x":-0.3743,"y":-0.4326,"year":"1959"},{"authors":"nissen, hw","cluster":93,"id":647,"label":"nissen (1952)","scoreCitations":3,"scoreNormcitations":0.3134,"scorePubyear":1952,"source":"psychological review, 59(3), 237-238","title":"approach and avoidance - a reply","url":"http://dx.doi.org/10.1037/h0060063","weightCitations":3,"weightLinks":1,"weightNormcitations":0.3134,"x":0.0437,"y":-0.0822,"year":"1952"},{"authors":"grice, gr","cluster":390,"id":648,"label":"grice (1951)","scoreCitations":3,"scoreNormcitations":0.1651,"scorePubyear":1951,"source":"psychological bulletin, 48(2), 150-152","title":"comments on razran discussion of stimulus generalization","url":"http://dx.doi.org/10.1037/h0054175","weightCitations":3,"weightLinks":0,"weightNormcitations":0.1651,"x":-0.6359,"y":-0.559,"year":"1951"},{"authors":"alexander, f","cluster":391,"id":649,"label":"alexander (1941)","scoreCitations":3,"scoreNormcitations":1.0,"scorePubyear":1941,"source":"psychosomatic medicine, 3(2), 330-336","title":"clinical versus experimental approach in psychosomatics comments on dr. john whitehorn's statement on recent trends in psychosomatic research","weightCitations":3,"weightLinks":0,"weightNormcitations":1.0,"x":0.6063,"y":0.6892,"year":"1941"},{"authors":"irwin, oc","cluster":392,"id":650,"label":"irwin (1933)","scoreCitations":3,"scoreNormcitations":1.0,"scorePubyear":1933,"source":"psychological review, 40, 215-219","title":"dennis on mass activity: a reply","url":"http://dx.doi.org/10.1037/h0072041","weightCitations":3,"weightLinks":0,"weightNormcitations":1.0,"x":0.8891,"y":0.3017,"year":"1933"},{"authors":"dashiell, jf","cluster":393,"id":651,"label":"dashiell (1930)","scoreCitations":3,"scoreNormcitations":1.5,"scorePubyear":1930,"source":"psychological review, 37, 183-185","title":"a reply to professor bentley","url":"http://dx.doi.org/10.1037/h0075168","weightCitations":3,"weightLinks":0,"weightNormcitations":1.5,"x":-0.1734,"y":0.733,"year":"1930"},{"authors":"seashore, ce","cluster":134,"id":652,"label":"seashore (1930)","scoreCitations":3,"scoreNormcitations":1.5,"scorePubyear":1930,"source":"psychological review, 37, 178-183","title":"measures of musical talent - a reply to dr c p heinlein","url":"http://dx.doi.org/10.1037/h0072069","weightCitations":3,"weightLinks":1,"weightNormcitations":1.5,"x":0.7374,"y":-0.7642,"year":"1930"},{"authors":"crupi, v; tentori, k","cluster":1,"id":653,"label":"crupi (2016)","scoreCitations":2,"scoreNormcitations":1.5862,"scorePubyear":2016,"source":"psychological review, 123(1), 97-102","title":"noisy probability judgment, the conjunction fallacy, and rationality: comment on costello and watts (2014)","url":"http://dx.doi.org/10.1037/a0039539","weightCitations":2,"weightLinks":2,"weightNormcitations":1.5862,"x":0.5053,"y":-0.6655,"year":"2016"},{"authors":"jones, mn; hills, tt; todd, pm","cluster":394,"id":654,"label":"jones (2015)","scoreCitations":2,"scoreNormcitations":0.8421,"scorePubyear":2015,"source":"psychological review, 122(3), 570-574","title":"hidden processes in structural representations: a reply to abbott, austerweil, and griffiths (2015)","url":"http://dx.doi.org/10.1037/a0039248","weightCitations":2,"weightLinks":0,"weightNormcitations":0.8421,"x":0.2748,"y":0.9563,"year":"2015"},{"authors":"orme-johnson, dw; dillbeck, mc","cluster":135,"id":655,"label":"orme-johnson (2014)","scoreCitations":2,"scoreNormcitations":0.3059,"scorePubyear":2014,"source":"psychological bulletin, 140(2), 610-616","title":"methodological concerns for meta-analyses of meditation: comment on sedlmeier et al. (2012)","url":"http://dx.doi.org/10.1037/a0035074","weightCitations":2,"weightLinks":1,"weightNormcitations":0.3059,"x":-0.0947,"y":0.3165,"year":"2014"},{"authors":"sedlmeier, p; eberth, j; schwarz, m","cluster":135,"id":656,"label":"sedlmeier (2014)","scoreCitations":2,"scoreNormcitations":0.3059,"scorePubyear":2014,"source":"psychological bulletin, 140(2), 617-622","title":"meta-analyses and other methodological issues in meditation research: reply to orme-johnson and dillbeck (2014)","url":"http://dx.doi.org/10.1037/a0035896","weightCitations":2,"weightLinks":1,"weightNormcitations":0.3059,"x":-0.0935,"y":0.3198,"year":"2014"},{"authors":"hankin, bl","cluster":155,"id":657,"label":"hankin (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological bulletin, 139(6), 1260-1264","title":"critical reflections on evolutionary psychology and sexual selection theory as explanatory account of emergence of sex differences in psychopathology: comment on martel (2013)","url":"http://dx.doi.org/10.1037/a0033146","weightCitations":2,"weightLinks":1,"weightNormcitations":0.5035,"x":-0.1784,"y":-0.0158,"year":"2013"},{"authors":"caron, po","cluster":148,"id":658,"label":"caron (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological bulletin, 139(5), 1029-1031","title":"on the empirical status of the matching law: comment on mcdowell (2013)","url":"http://dx.doi.org/10.1037/a0032403","weightCitations":2,"weightLinks":1,"weightNormcitations":0.5035,"x":-0.9842,"y":-0.1146,"year":"2013"},{"authors":"smith, tw","cluster":15,"id":659,"label":"smith (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological bulletin, 139(5), 985-990","title":"does the interpersonally sensitive disposition advance research on personality and health? comment on mann and miller (2013)","url":"http://dx.doi.org/10.1037/a0033993","weightCitations":2,"weightLinks":2,"weightNormcitations":0.5035,"x":-0.9208,"y":0.1988,"year":"2013"},{"authors":"maryhew, c","cluster":395,"id":660,"label":"maryhew (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological medicine, 43(8), 1789-1790","title":"comments on 'recovery from chronic fatigue syndrome after treatments given in the pace trial'","url":"http://dx.doi.org/10.1017/s0033291713001293","weightCitations":2,"weightLinks":0,"weightNormcitations":0.5035,"x":-0.3374,"y":0.2095,"year":"2013"},{"authors":"shepherd, c","cluster":396,"id":661,"label":"shepherd (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological medicine, 43(8), 1790-1791","title":"comments on 'recovery from chronic fatigue syndrome after treatments given in the pace trial'","url":"http://dx.doi.org/10.1017/s003329171300130x","weightCitations":2,"weightLinks":0,"weightNormcitations":0.5035,"x":0.9783,"y":0.4511,"year":"2013"},{"authors":"grant, p","cluster":397,"id":662,"label":"grant (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological medicine, 43(7), 1568-1568","title":"haloperidol but not dopamine rapidly induces neuronal death: comments on 'a systematic review of the effects of antipsychotic drugs on brain volume'","url":"http://dx.doi.org/10.1017/s0033291713001001","weightCitations":2,"weightLinks":0,"weightNormcitations":0.5035,"x":-0.2342,"y":0.7191,"year":"2013"},{"authors":"kellen, d; klauer, kc; singmann, h","cluster":4,"id":663,"label":"kellen (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological review, 120(3), 727-730","title":"on the measurement of criterion noise in signal detection theory: reply to benjamin (2013)","url":"http://dx.doi.org/10.1037/a0033141","weightCitations":2,"weightLinks":1,"weightNormcitations":0.5035,"x":0.3069,"y":-0.37,"year":"2013"},{"authors":"storm, l; tressoldi, pe; utts, j","cluster":22,"id":664,"label":"storm (2013)","scoreCitations":2,"scoreNormcitations":0.5035,"scorePubyear":2013,"source":"psychological bulletin, 139(1), 248-254","title":"testing the storm et al. (2010) meta-analysis using bayesian and frequentist approaches: reply to rouder et al. (2013)","url":"http://dx.doi.org/10.1037/a0029506","weightCitations":2,"weightLinks":2,"weightNormcitations":0.5035,"x":0.3774,"y":0.266,"year":"2013"},{"authors":"jarrold, c; hall, d","cluster":398,"id":665,"label":"jarrold (2012)","scoreCitations":2,"scoreNormcitations":0.2571,"scorePubyear":2012,"source":"journal of child psychology and psychiatry, 53(2), 138-140","title":"commentary: theoretical and methodological challenges to the study of working memory in developmental disorders - a comment on rhodes et al. (2012)","url":"http://dx.doi.org/10.1111/j.1469-7610.2011.02507.x","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2571,"x":0.8666,"y":0.5035,"year":"2012"},{"authors":"gromann, pm; goossens, f; krabbendam, l","cluster":399,"id":666,"label":"gromann (2011)","scoreCitations":2,"scoreNormcitations":0.2235,"scorePubyear":2011,"source":"psychological medicine, 41(10), 2236-2237","title":"comments on 'bullying victimization in youths and mental health problems: much ado about nothing?'","url":"http://dx.doi.org/10.1017/s0033291711001036","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2235,"x":0.1963,"y":0.5794,"year":"2011"},{"authors":"van haren, n; kahn, r","cluster":400,"id":667,"label":"van haren (2010)","scoreCitations":2,"scoreNormcitations":0.0883,"scorePubyear":2010,"source":"psychological medicine, 40(12), 2105-2106","title":"a comment on 'a systematic review of the effects of antipsychotic drugs on brain volume' by moncrieff & leo (2010)","url":"http://dx.doi.org/10.1017/s0033291710001686","weightCitations":2,"weightLinks":0,"weightNormcitations":0.0883,"x":0.0537,"y":0.8463,"year":"2010"},{"authors":"coyne, jc; thombs, bd; stefanek, m; palmer, sc","cluster":136,"id":668,"label":"coyne (2009)","scoreCitations":2,"scoreNormcitations":0.2969,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 179-182","title":"time to let go of the illusion that psychotherapy extends the survival of cancer patients: reply to kraemer, kuchler, and spiegel (2009)","url":"http://dx.doi.org/10.1037/a0014720","weightCitations":2,"weightLinks":1,"weightNormcitations":0.2969,"x":0.838,"y":-0.2966,"year":"2009"},{"authors":"pine, ds","cluster":401,"id":669,"label":"pine (2007)","scoreCitations":2,"scoreNormcitations":0.2028,"scorePubyear":2007,"source":"journal of child psychology and psychiatry, 48(12), 1157-1159","title":"editorial: answering questions in developmental science: separating the wheat from the chaff","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2028,"x":0.9418,"y":-0.5101,"year":"2007"},{"authors":"nielsen, ta; levin, r","cluster":137,"id":670,"label":"nielsen (2007)","scoreCitations":2,"scoreNormcitations":0.2028,"scorePubyear":2007,"source":"psychological bulletin, 133(3), 533-534","title":"the dimensional nature of disturbed dreaming: reply to weiss (2007)","url":"http://dx.doi.org/10.1037/0033-2909.133.3.533","weightCitations":2,"weightLinks":1,"weightNormcitations":0.2028,"x":-0.523,"y":0.1551,"year":"2007"},{"authors":"ley, r","cluster":138,"id":671,"label":"ley (2005)","scoreCitations":2,"scoreNormcitations":0.0902,"scorePubyear":2005,"source":"psychological bulletin, 131(2), 193-198","title":"blood, breath, fears redux, and panic attacks: comment on roth, wilhelm, and pettit (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.2.193","weightCitations":2,"weightLinks":1,"weightNormcitations":0.0902,"x":0.3602,"y":0.4574,"year":"2005"},{"authors":"stewart-williams, s; podd, j","cluster":139,"id":672,"label":"stewart-williams (2004)","scoreCitations":2,"scoreNormcitations":0.0863,"scorePubyear":2004,"source":"psychological bulletin, 130(2), 344-345","title":"placebo psychotherapies and nonconscious learning in the placebo effect: reply to kirsch (2004)","url":"http://dx.doi.org/10.1037/0033-2909.130.2.344","weightCitations":2,"weightLinks":1,"weightNormcitations":0.0863,"x":0.1213,"y":0.6151,"year":"2004"},{"authors":"harrison, g","cluster":402,"id":673,"label":"harrison (1998)","scoreCitations":2,"scoreNormcitations":0.1518,"scorePubyear":1998,"source":"psychological medicine, 28(2), 497-497","title":"untitled - reply","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1518,"x":-0.8134,"y":0.4939,"year":"1998"},{"authors":"nicholls, jg","cluster":403,"id":674,"label":"nicholls (1986)","scoreCitations":2,"scoreNormcitations":0.1202,"scorePubyear":1986,"source":"psychological review, 93(3), 381-382","title":"varieties of interpretation of achievement-motivation - reply","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1202,"x":-0.4298,"y":-0.7707,"year":"1986"},{"authors":"kraemer, hc","cluster":140,"id":675,"label":"kraemer (1984)","scoreCitations":2,"scoreNormcitations":0.2857,"scorePubyear":1984,"source":"psychological bulletin, 96(3), 569-572","title":"nonparametric effect size estimation - a reply","weightCitations":2,"weightLinks":1,"weightNormcitations":0.2857,"x":-0.306,"y":0.4775,"year":"1984"},{"authors":"bias, rg; mccusker, lx; hillinger, ml","cluster":130,"id":676,"label":"bias (1982)","scoreCitations":2,"scoreNormcitations":0.0474,"scorePubyear":1982,"source":"psychological bulletin, 91(2), 369-371","title":"generation(s) of phonological codes in reading - a reply","weightCitations":2,"weightLinks":1,"weightNormcitations":0.0474,"x":-0.0109,"y":-0.4161,"year":"1982"},{"authors":"marler, mr","cluster":404,"id":677,"label":"marler (1980)","scoreCitations":2,"scoreNormcitations":0.2,"scorePubyear":1980,"source":"psychological bulletin, 87(3), 568-574","title":"likelihood ratio tests of hypotheses - comments on pitz article and some alternative procedures","url":"http://dx.doi.org/10.1037/0033-2909.87.3.568","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2,"x":0.6527,"y":0.3083,"year":"1980"},{"authors":"vonrad, m","cluster":405,"id":678,"label":"vonrad (1979)","scoreCitations":2,"scoreNormcitations":0.1829,"scorePubyear":1979,"source":"psychotherapy and psychosomatics, 32(1-4), 118-127","title":"comments on theory and therapy of psychosomatic patients with a follow-up-study","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1829,"x":-0.1541,"y":-0.3644,"year":"1979"},{"authors":"thomas, h","cluster":141,"id":679,"label":"thomas (1977)","scoreCitations":2,"scoreNormcitations":0.1837,"scorePubyear":1977,"source":"psychological bulletin, 84(6), 1245-1248","title":"kinship correlations and scientific nihilism - reply","url":"http://dx.doi.org/10.1037//0033-2909.84.6.1245","weightCitations":2,"weightLinks":1,"weightNormcitations":0.1837,"x":0.7133,"y":-0.0133,"year":"1977"},{"authors":"gyr, jw","cluster":406,"id":680,"label":"gyr (1975)","scoreCitations":2,"scoreNormcitations":0.4545,"scorePubyear":1975,"source":"psychological bulletin, 82(1), 140-141","title":"directly perceiving gibson - reply","url":"http://dx.doi.org/10.1037/h0078106","weightCitations":2,"weightLinks":0,"weightNormcitations":0.4545,"x":-0.9796,"y":-0.1922,"year":"1975"},{"authors":"wolf, g; cartwright, b","cluster":106,"id":681,"label":"wolf (1975)","scoreCitations":2,"scoreNormcitations":0.4545,"scorePubyear":1975,"source":"psychological bulletin, 82(2), 181-181","title":"coding dummy variables is a waste of time - reply","url":"http://dx.doi.org/10.1037/h0076383","weightCitations":2,"weightLinks":1,"weightNormcitations":0.4545,"x":-0.3066,"y":0.5716,"year":"1975"},{"authors":"blanchard, eb; young, ld","cluster":407,"id":682,"label":"blanchard (1974)","scoreCitations":2,"scoreNormcitations":0.1972,"scorePubyear":1974,"source":"psychological bulletin, 81(1), 44-46","title":"promises and evidence - reply","url":"http://dx.doi.org/10.1037/h0035523","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1972,"x":0.8273,"y":-0.228,"year":"1974"},{"authors":"krantz, dh; tversky, a","cluster":408,"id":683,"label":"krantz (1971)","scoreCitations":2,"scoreNormcitations":0.2689,"scorePubyear":1971,"source":"psychological review, 78(5), 457","title":"exchange of functional and conjoint measurement - reply","url":"http://dx.doi.org/10.1037/h0020290","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2689,"x":-0.0127,"y":0.4317,"year":"1971"},{"authors":"saugstad, p","cluster":133,"id":684,"label":"saugstad (1967)","scoreCitations":2,"scoreNormcitations":0.1724,"scorePubyear":1967,"source":"psychological bulletin, 68(5), 345","title":"comments on article by wolitzky,dl","url":"http://dx.doi.org/10.1037/h0025135","weightCitations":2,"weightLinks":1,"weightNormcitations":0.1724,"x":-0.4961,"y":0.7711,"year":"1967"},{"authors":"schneider, sf","cluster":409,"id":685,"label":"schneider (1964)","scoreCitations":2,"scoreNormcitations":0.2222,"scorePubyear":1964,"source":"psychological bulletin, 62(4), 287-288","title":"some comments on congenital insensitivity to pain - a critique","url":"http://dx.doi.org/10.1037/h0038461","weightCitations":2,"weightLinks":0,"weightNormcitations":0.2222,"x":-0.2406,"y":0.3946,"year":"1964"},{"authors":"bechtoldt, hp","cluster":410,"id":686,"label":"bechtoldt (1960)","scoreCitations":2,"scoreNormcitations":1.3333,"scorePubyear":1960,"source":"psychological bulletin, 57(2), 157-162","title":"intraclass correlation vs factor analytic techniques for determining groups of profiles - comments","url":"http://dx.doi.org/10.1037/h0040169","weightCitations":2,"weightLinks":0,"weightNormcitations":1.3333,"x":-0.2733,"y":0.2793,"year":"1960"},{"authors":"stagner, r","cluster":411,"id":687,"label":"stagner (1954)","scoreCitations":2,"scoreNormcitations":2.0,"scorePubyear":1954,"source":"psychological review, 61(3), 205-208","title":"homeostasis - corruptions or misconceptions - a reply","url":"http://dx.doi.org/10.1037/h0062581","weightCitations":2,"weightLinks":0,"weightNormcitations":2.0,"x":-0.6617,"y":0.5867,"year":"1954"},{"authors":"diamond, s","cluster":412,"id":688,"label":"diamond (1952)","scoreCitations":2,"scoreNormcitations":0.209,"scorePubyear":1952,"source":"psychological bulletin, 49(2), 151-154","title":"comment on a qualification in the use of analysis of variance","url":"http://dx.doi.org/10.1037/h0062502","weightCitations":2,"weightLinks":0,"weightNormcitations":0.209,"x":0.663,"y":0.1329,"year":"1952"},{"authors":"neu, dm","cluster":413,"id":689,"label":"neu (1948)","scoreCitations":2,"scoreNormcitations":0.1404,"scorePubyear":1948,"source":"psychological bulletin, 45(6), 534-535","title":"absolute pitch - a reply to bachem","url":"http://dx.doi.org/10.1037/h0057030","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1404,"x":0.449,"y":0.7972,"year":"1948"},{"authors":"stone, gr","cluster":414,"id":690,"label":"stone (1948)","scoreCitations":2,"scoreNormcitations":0.1404,"scorePubyear":1948,"source":"psychological bulletin, 45(6), 536-537","title":"reply to postman","url":"http://dx.doi.org/10.1037/h0053826","weightCitations":2,"weightLinks":0,"weightNormcitations":0.1404,"x":0.093,"y":-0.6452,"year":"1948"},{"authors":"ellis, a","cluster":415,"id":691,"label":"ellis (1947)","scoreCitations":2,"scoreNormcitations":2.0,"scorePubyear":1947,"source":"psychological bulletin, 44(1), 83-86","title":"discussion of heinlein comment on the validity of personality questionnaires","url":"http://dx.doi.org/10.1037/h0062794","weightCitations":2,"weightLinks":0,"weightNormcitations":2.0,"x":0.4717,"y":0.5424,"year":"1947"},{"authors":"oberndorf, cp","cluster":416,"id":692,"label":"oberndorf (1942)","scoreCitations":2,"scoreNormcitations":2.0,"scorePubyear":1942,"source":"psychosomatic medicine, 4(3), 324-324","title":"comment on the emotional settings of some attacks of urticaria","weightCitations":2,"weightLinks":0,"weightNormcitations":2.0,"x":0.4321,"y":0.166,"year":"1942"},{"authors":"english, hb","cluster":417,"id":693,"label":"english (1942)","scoreCitations":2,"scoreNormcitations":2.0,"scorePubyear":1942,"source":"psychological review, 49, 505-512","title":"reminiscence - reply to dr. buxton's critique","url":"http://dx.doi.org/10.1037/h0059903","weightCitations":2,"weightLinks":0,"weightNormcitations":2.0,"x":0.9345,"y":-0.1578,"year":"1942"},{"authors":"lewin, k","cluster":418,"id":694,"label":"lewin (1939)","scoreCitations":2,"scoreNormcitations":0.4138,"scorePubyear":1939,"source":"psychological review, 46, 591-594","title":"reply to dr garrett","url":"http://dx.doi.org/10.1037/h0058802","weightCitations":2,"weightLinks":0,"weightNormcitations":0.4138,"x":0.3123,"y":0.675,"year":"1939"},{"authors":"tolman, ec","cluster":419,"id":695,"label":"tolman (1938)","scoreCitations":2,"scoreNormcitations":0.4762,"scorePubyear":1938,"source":"psychological review, 45, 163-164","title":"a reply to professor guthrie","url":"http://dx.doi.org/10.1037/h0058407","weightCitations":2,"weightLinks":0,"weightNormcitations":0.4762,"x":-1.0238,"y":0.1341,"year":"1938"},{"authors":"tryon, rc","cluster":420,"id":696,"label":"tryon (1935)","scoreCitations":2,"scoreNormcitations":0.0816,"scorePubyear":1935,"source":"psychological review, 42, 122-125","title":"interpretation of professor spearman's comments","url":"http://dx.doi.org/10.1037/h0055709","weightCitations":2,"weightLinks":0,"weightNormcitations":0.0816,"x":-0.2778,"y":0.7619,"year":"1935"},{"authors":"generoso, mb; cordeiro, q; taiar, i; soares, a; boggiano, mm; ray, mk; guillaume, s; shiozawa, p","cluster":421,"id":697,"label":"generoso (2017)","scoreCitations":1,"scoreNormcitations":3.0,"scorePubyear":2017,"source":"psychosomatic medicine, 79(7), 837-839","title":"transcranial magnetic stimulation and the urge to eat: a comment on lowe, vincent, and hall (2017)","weightCitations":1,"weightLinks":0,"weightNormcitations":3.0,"x":-0.7533,"y":0.6054,"year":"2017"},{"authors":"buxbaum, lj","cluster":142,"id":698,"label":"buxbaum (2017)","scoreCitations":1,"scoreNormcitations":3.0,"scorePubyear":2017,"source":"psychological review, 124(3), 346-360","title":"learning, remembering, and predicting how to use tools: distributed neurocognitive mechanisms: comment on osiurak and badets (2016)","url":"http://dx.doi.org/10.1037/rev0000051","weightCitations":1,"weightLinks":1,"weightNormcitations":3.0,"x":0.6539,"y":-0.5781,"year":"2017"},{"authors":"osiurak, f; badets, a","cluster":142,"id":699,"label":"osiurak (2017)","scoreCitations":1,"scoreNormcitations":3.0,"scorePubyear":2017,"source":"psychological review, 124(3), 361-368","title":"use of tools and misuse of embodied cognition: reply to buxbaum (2017)","url":"http://dx.doi.org/10.1037/rev0000065","weightCitations":1,"weightLinks":1,"weightNormcitations":3.0,"x":0.6506,"y":-0.5766,"year":"2017"},{"authors":"rickard, tc; pan, sc","cluster":124,"id":700,"label":"rickard (2017)","scoreCitations":1,"scoreNormcitations":3.0,"scorePubyear":2017,"source":"psychological bulletin, 143(4), 454-458","title":"time for considering the possibility that sleep plays no unique role in motor memory consolidation: reply to adi-japha and karni (2016)","url":"http://dx.doi.org/10.1037/bul0000094","weightCitations":1,"weightLinks":1,"weightNormcitations":3.0,"x":-0.6303,"y":0.295,"year":"2017"},{"authors":"barbaro, n; boutwell, bb; barnes, jc; shackelford, tk","cluster":143,"id":701,"label":"barbaro (2017)","scoreCitations":1,"scoreNormcitations":3.0,"scorePubyear":2017,"source":"psychological bulletin, 143(1), 107-113","title":"rethinking the transmission gap: what behavioral genetics and evolutionary psychology mean for attachment theory: a comment on verhage et al. (2016)","url":"http://dx.doi.org/10.1037/bul0000066","weightCitations":1,"weightLinks":1,"weightNormcitations":3.0,"x":0.6571,"y":-0.4378,"year":"2017"},{"authors":"howard-jones, pa; varma, s; ansari, d; butterworth, b; de smedt, b; goswami, u; laurillard, d; thomas, msc","cluster":59,"id":702,"label":"howard-jones (2016)","scoreCitations":1,"scoreNormcitations":0.7931,"scorePubyear":2016,"source":"psychological review, 123(5), 620-627","title":"the principles and practices of educational neuroscience: comment on bowers (2016)","url":"http://dx.doi.org/10.1037/rev0000036","weightCitations":1,"weightLinks":1,"weightNormcitations":0.7931,"x":0.8191,"y":0.4339,"year":"2016"},{"authors":"clark, ia; mackay, ce; holmes, ea; bourne, c","cluster":422,"id":703,"label":"clark (2016)","scoreCitations":1,"scoreNormcitations":0.7931,"scorePubyear":2016,"source":"psychological medicine, 46(8), 1787-1789","title":"a reply - acknowledged reasonable limitations in a secondary analysis but key conclusions remain in 'the neural basis of flashback formation: the impact of viewing trauma'","url":"http://dx.doi.org/10.1017/s0033291716000052","weightCitations":1,"weightLinks":0,"weightNormcitations":0.7931,"x":-0.5262,"y":0.6166,"year":"2016"},{"authors":"eronen, mi","cluster":144,"id":704,"label":"eronen (2016)","scoreCitations":1,"scoreNormcitations":0.7931,"scorePubyear":2016,"source":"psychological medicine, 46(7), 1563-1564","title":"robustness is the kind of coherence that matters: a comment on kendler (2015)","url":"http://dx.doi.org/10.1017/s0033291715002871","weightCitations":1,"weightLinks":1,"weightNormcitations":0.7931,"x":-0.1354,"y":-0.1802,"year":"2016"},{"authors":"costello, f; watts, p","cluster":1,"id":705,"label":"costello (2016)","scoreCitations":1,"scoreNormcitations":0.7931,"scorePubyear":2016,"source":"psychological review, 123(1), 112-124","title":"probability theory plus noise: replies to crupi and tentori (2016) and to nilsson, juslin, and winman (2016)","url":"http://dx.doi.org/10.1037/rev0000018","weightCitations":1,"weightLinks":4,"weightNormcitations":0.7931,"x":0.4932,"y":-0.6719,"year":"2016"},{"authors":"kop, wj; everson-rose, sa","cluster":423,"id":706,"label":"kop (2015)","scoreCitations":1,"scoreNormcitations":0.4211,"scorePubyear":2015,"source":"psychosomatic medicine, 77(9), 1068-1069","title":"sex and gender issues in cardiovascular research reply","url":"http://dx.doi.org/10.1097/psy.0000000000000280","weightCitations":1,"weightLinks":0,"weightNormcitations":0.4211,"x":0.7639,"y":0.6763,"year":"2015"},{"authors":"garssen, b","cluster":145,"id":707,"label":"garssen (2015)","scoreCitations":1,"scoreNormcitations":0.4211,"scorePubyear":2015,"source":"psychological medicine, 45(3), 663-664","title":"mechanisms of change in an internet-based therapy for depression - a comment on van der zanden et al.","url":"http://dx.doi.org/10.1017/s0033291714002323","weightCitations":1,"weightLinks":1,"weightNormcitations":0.4211,"x":-0.3967,"y":0.1701,"year":"2015"},{"authors":"morina, n; a-tjak, jgl; emmelkamp, pmg","cluster":146,"id":708,"label":"morina (2015)","scoreCitations":1,"scoreNormcitations":0.4211,"scorePubyear":2015,"source":"psychotherapy and psychosomatics, 84(4), 252-252","title":"reducing biases in meta-analyses: reply to hertenstein and nissen","url":"http://dx.doi.org/10.1159/000380955","weightCitations":1,"weightLinks":1,"weightNormcitations":0.4211,"x":0.7274,"y":-0.5283,"year":"2015"},{"authors":"jones, m; dzhafarov, en","cluster":147,"id":709,"label":"jones (2014)","scoreCitations":1,"scoreNormcitations":0.1529,"scorePubyear":2014,"source":"psychological review, 121(4), 689-695","title":"analyzability, ad hoc restrictions, and excessive flexibility of evidence-accumulation models: reply to two critical commentaries","url":"http://dx.doi.org/10.1037/a0037701","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1529,"x":0.6152,"y":0.4893,"year":"2014"},{"authors":"loomes, g","cluster":2,"id":710,"label":"loomes (2014)","scoreCitations":1,"scoreNormcitations":0.1529,"scorePubyear":2014,"source":"psychological review, 121(4), 706-710","title":"quantitative tests of the perceived relative argument model: reply to guo and regenwetter (2014)","url":"http://dx.doi.org/10.1037/a0037841","weightCitations":1,"weightLinks":2,"weightNormcitations":0.1529,"x":-0.361,"y":-0.0204,"year":"2014"},{"authors":"baranyi, a","cluster":424,"id":711,"label":"baranyi (2014)","scoreCitations":1,"scoreNormcitations":0.1529,"scorePubyear":2014,"source":"psychotherapy and psychosomatics, 83(5), 312-312","title":"interferon-alpha-induced depression: a reply to the letters to the editor by mahajan et al. and porcelli et al.","url":"http://dx.doi.org/10.1159/000362765","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1529,"x":-0.4561,"y":0.1194,"year":"2014"},{"authors":"tossani, e","cluster":425,"id":712,"label":"tossani (2014)","scoreCitations":1,"scoreNormcitations":0.1529,"scorePubyear":2014,"source":"psychotherapy and psychosomatics, 83(1), 64-64","title":"definition versus measurement of mental pain: a reply to meerwijk and weiss","url":"http://dx.doi.org/10.1159/000353394","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1529,"x":0.106,"y":-0.759,"year":"2014"},{"authors":"mcdowell, jj","cluster":148,"id":713,"label":"mcdowell (2013)","scoreCitations":1,"scoreNormcitations":0.2517,"scorePubyear":2013,"source":"psychological bulletin, 139(5), 1032-1035","title":"understanding matching theory and its application to data: reply to caron (2013)","url":"http://dx.doi.org/10.1037/a0033385","weightCitations":1,"weightLinks":1,"weightNormcitations":0.2517,"x":-0.9822,"y":-0.1177,"year":"2013"},{"authors":"augustine, aa; hemenover, sh","cluster":125,"id":714,"label":"augustine (2013)","scoreCitations":1,"scoreNormcitations":0.2517,"scorePubyear":2013,"source":"psychological bulletin, 139(3), 725-729","title":"accuracy and generalizability in summaries of affect regulation strategies: comment on webb, miles, and sheeran (2012)","url":"http://dx.doi.org/10.1037/a0030026","weightCitations":1,"weightLinks":1,"weightNormcitations":0.2517,"x":0.8098,"y":0.0178,"year":"2013"},{"authors":"austin, aw; wirtz, ph; patterson, sm; stutz, m; von kanel, r","cluster":426,"id":715,"label":"austin (2013)","scoreCitations":1,"scoreNormcitations":0.2517,"scorePubyear":2013,"source":"psychosomatic medicine, 75(2), 223-226","title":"challenges in controlling for the effects of hematoconcentration reply","url":"http://dx.doi.org/10.1097/psy.0b013e318286f949","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2517,"x":1.0227,"y":0.1298,"year":"2013"},{"authors":"szalma, jl; hancock, pa","cluster":37,"id":716,"label":"szalma (2012)","scoreCitations":1,"scoreNormcitations":0.1286,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1269-1273","title":"what's all the noise? differentiating dimensions of acoustic stress and the limits to meta-analysis: reply to smith (2012)","url":"http://dx.doi.org/10.1037/a0029509","weightCitations":1,"weightLinks":2,"weightNormcitations":0.1286,"x":0.5609,"y":0.3216,"year":"2012"},{"authors":"kelleher, i; cannon, m","cluster":427,"id":717,"label":"kelleher (2012)","scoreCitations":1,"scoreNormcitations":0.1286,"scorePubyear":2012,"source":"psychological medicine, 42(8), 1788-1790","title":"all that shines is not psychosis ... but is still clinically important reply","url":"http://dx.doi.org/10.1017/s0033291712001250","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1286,"x":0.6484,"y":-0.5045,"year":"2012"},{"authors":"farah, mj; smith, me","cluster":43,"id":718,"label":"farah (2011)","scoreCitations":1,"scoreNormcitations":0.1118,"scorePubyear":2011,"source":"psychological bulletin, 137(5), 751-752","title":"discussing smart pills versus endorsing smart pills: reply to swanson, wigal, and volkow (2011) and elliott and elliott (2011) reply","url":"http://dx.doi.org/10.1037/a0024846","weightCitations":1,"weightLinks":2,"weightNormcitations":0.1118,"x":0.1456,"y":-0.5719,"year":"2011"},{"authors":"brandes, v","cluster":428,"id":719,"label":"brandes (2011)","scoreCitations":1,"scoreNormcitations":0.1118,"scorePubyear":2011,"source":"psychotherapy and psychosomatics, 80(5), 305-305","title":"reply to 'music therapy or music medicine?'","url":"http://dx.doi.org/10.1159/000325827","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1118,"x":-1.0651,"y":0.173,"year":"2011"},{"authors":"heins, m; knoop, h; bleijenberg, g","cluster":429,"id":720,"label":"heins (2011)","scoreCitations":1,"scoreNormcitations":0.1118,"scorePubyear":2011,"source":"psychotherapy and psychosomatics, 80(2), 112-112","title":"reply to 'harms of cognitive behaviour therapy designed to increase activity levels in chronic fatigue syndrome'","url":"http://dx.doi.org/10.1159/000320777","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1118,"x":0.4863,"y":0.7433,"year":"2011"},{"authors":"mckenna, p; lynch, d; laws, k","cluster":430,"id":721,"label":"mckenna (2010)","scoreCitations":1,"scoreNormcitations":0.0442,"scorePubyear":2010,"source":"psychological medicine, 40(5), 879-880","title":"what do we learn from this meta-analysis? reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0442,"x":-0.7014,"y":-0.3683,"year":"2010"},{"authors":"morgan, c; hutchinson, g","cluster":431,"id":722,"label":"morgan (2010)","scoreCitations":1,"scoreNormcitations":0.0442,"scorePubyear":2010,"source":"psychological medicine, 40(5), 876-877","title":"prevention is better than cure: a reply to mckenzie, march et al. and selten & cantor-graae","url":"http://dx.doi.org/10.1017/s0033291709990547","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0442,"x":-0.0732,"y":0.8297,"year":"2010"},{"authors":"denson, tf; spanovic, m; miller, n","cluster":6,"id":723,"label":"denson (2009)","scoreCitations":1,"scoreNormcitations":0.1484,"scorePubyear":2009,"source":"psychological bulletin, 135(6), 857-858","title":"stress and specificity: reply to miller (2009)","url":"http://dx.doi.org/10.1037/a0017438","weightCitations":1,"weightLinks":2,"weightNormcitations":0.1484,"x":-0.1782,"y":0.5365,"year":"2009"},{"authors":"pappa, s; dazzan, p","cluster":432,"id":724,"label":"pappa (2009)","scoreCitations":1,"scoreNormcitations":0.1484,"scorePubyear":2009,"source":"psychological medicine, 39(10), 1755-1756","title":"movement disorders should be a criterion for schizophrenia in dsm-v reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1484,"x":0.3089,"y":-0.7677,"year":"2009"},{"authors":"pauls, ca","cluster":149,"id":725,"label":"pauls (2007)","scoreCitations":1,"scoreNormcitations":0.1014,"scorePubyear":2007,"source":"psychological bulletin, 133(6), 907-909","title":"is a repressive-defensive coping style really so bad? comment on deneve and cooper (1998)","url":"http://dx.doi.org/10.1037/0033-2909.133.6.907","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1014,"x":-0.5126,"y":0.0524,"year":"2007"},{"authors":"weiss, ds","cluster":137,"id":726,"label":"weiss (2007)","scoreCitations":1,"scoreNormcitations":0.1014,"scorePubyear":2007,"source":"psychological bulletin, 133(3), 529-532","title":"conundrums in a theory of disturbed dreaming: comment on levin and nielsen (2007)","url":"http://dx.doi.org/10.1037/0033-2909.133.3.529","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1014,"x":-0.5203,"y":0.1526,"year":"2007"},{"authors":"murdock, b","cluster":32,"id":727,"label":"murdock (2006)","scoreCitations":1,"scoreNormcitations":0.0679,"scorePubyear":2006,"source":"psychological review, 113(3), 655-656","title":"decision-making models of remember-know judgments: comment on rotello, macmillan, and reeder (2004) - postscript: reply to macmillan and rotello (2006)","weightCitations":1,"weightLinks":1,"weightNormcitations":0.0679,"x":-0.3091,"y":-0.2389,"year":"2006"},{"authors":"mead, n; macdonald, w; bower, p; lovell, k; richards, d; roberts, c; bucknall, a","cluster":433,"id":728,"label":"mead (2006)","scoreCitations":1,"scoreNormcitations":0.0679,"scorePubyear":2006,"source":"psychological medicine, 36(5), 726-728","title":"untitled - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0679,"x":-0.8187,"y":0.6057,"year":"2006"},{"authors":"roth, wt; wilhelm, fh; pettit, d; meuret, ae","cluster":138,"id":729,"label":"roth (2005)","scoreCitations":1,"scoreNormcitations":0.0451,"scorePubyear":2005,"source":"psychological bulletin, 131(2), 199-201","title":"rescuing the hyperventilation theory of panic: reply to ley (2005)","url":"http://dx.doi.org/10.1037/0033-2909.131.2.199","weightCitations":1,"weightLinks":1,"weightNormcitations":0.0451,"x":0.3585,"y":0.4605,"year":"2005"},{"authors":"honda, k; goodwin, rd","cluster":434,"id":730,"label":"honda (2005)","scoreCitations":1,"scoreNormcitations":0.0451,"scorePubyear":2005,"source":"psychotherapy and psychosomatics, 74(4), 261-262","title":"national comorbidity survey data concerning cancer and depression lack credibility - reply","url":"http://dx.doi.org/10.1159/000085152","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0451,"x":1.0734,"y":0.0914,"year":"2005"},{"authors":"healy, d","cluster":435,"id":731,"label":"healy (2004)","scoreCitations":1,"scoreNormcitations":0.0431,"scorePubyear":2004,"source":"psychotherapy and psychosomatics, 73(4), 262-262","title":"ssri and suicide? reply","url":"http://dx.doi.org/10.1159/000077749","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0431,"x":-0.7807,"y":0.3802,"year":"2004"},{"authors":"healy, d","cluster":436,"id":732,"label":"healy (2003)","scoreCitations":1,"scoreNormcitations":0.0373,"scorePubyear":2003,"source":"psychotherapy and psychosomatics, 72(6), 359-360","title":"do ssris cause suicide? reply","url":"http://dx.doi.org/10.1159/000073035","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0373,"x":-0.5777,"y":0.6622,"year":"2003"},{"authors":"lam, rw; yatham, ln","cluster":437,"id":733,"label":"lam (2003)","scoreCitations":1,"scoreNormcitations":0.0373,"scorePubyear":2003,"source":"psychological medicine, 33(6), 1134-1135","title":"untitled - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0373,"x":-0.4357,"y":0.2889,"year":"2003"},{"authors":"pilling, s; bebbington, p","cluster":438,"id":734,"label":"pilling (2003)","scoreCitations":1,"scoreNormcitations":0.0373,"scorePubyear":2003,"source":"psychological medicine, 33(4), 756-758","title":"untitled - authors reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0373,"x":0.3798,"y":0.589,"year":"2003"},{"authors":"panksepp, j","cluster":16,"id":735,"label":"panksepp (2003)","scoreCitations":1,"scoreNormcitations":0.0373,"scorePubyear":2003,"source":"psychological review, 110(2), 395-396","title":"toward an open-minded comparative study of the neuroevolutionary substrates of affect: rejoinder to blumberg and sokoloff's (2003) reply","url":"http://dx.doi.org/10.1037/0033-295x.110.2.395","weightCitations":1,"weightLinks":1,"weightNormcitations":0.0373,"x":0.5698,"y":-0.8597,"year":"2003"},{"authors":"breslau, n; chase, ga; anthony, jc","cluster":439,"id":736,"label":"breslau (2002)","scoreCitations":1,"scoreNormcitations":0.0189,"scorePubyear":2002,"source":"psychological medicine, 32(8), 1480-1483","title":"untitled - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0189,"x":0.081,"y":0.9569,"year":"2002"},{"authors":"pillmann, f; marneros, a","cluster":440,"id":737,"label":"pillmann (2002)","scoreCitations":1,"scoreNormcitations":0.0189,"scorePubyear":2002,"source":"psychological medicine, 32(8), 1484-1485","title":"untitled - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0189,"x":0.5061,"y":0.8158,"year":"2002"},{"authors":"picardi, a; abeni, d","cluster":441,"id":738,"label":"picardi (2002)","scoreCitations":1,"scoreNormcitations":0.0189,"scorePubyear":2002,"source":"psychotherapy and psychosomatics, 71(2), 125-126","title":"stressful life events and skin diseases: an additional perspective from research on psychosomatic dynamics in systemic lupus erythematosus - reply","url":"http://dx.doi.org/10.1159/000049357","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0189,"x":-0.3997,"y":-0.917,"year":"2002"},{"authors":"hurley, k; du hamel, k; vickberg, s; seremetis, s","cluster":442,"id":739,"label":"hurley (2002)","scoreCitations":1,"scoreNormcitations":0.0189,"scorePubyear":2002,"source":"psychosomatic medicine, 64(1), 157-157","title":"does cancer-specific anxiety facilitate or deter screening? different answers from breast and colon cancer screening","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0189,"x":-0.0646,"y":-0.1654,"year":"2002"},{"authors":"bech, p; gudex, c; johansen, ks","cluster":443,"id":740,"label":"bech (1996)","scoreCitations":1,"scoreNormcitations":0.0143,"scorePubyear":1996,"source":"psychotherapy and psychosomatics, 65(6), 334-336","title":"the who (ten) well-being index: a reply concerning the soundness of its development and the perspectives of its use","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0143,"x":-0.1107,"y":0.7356,"year":"1996"},{"authors":"bowers, ks; farvolden, p","cluster":9,"id":741,"label":"bowers (1996)","scoreCitations":1,"scoreNormcitations":0.0143,"scorePubyear":1996,"source":"psychological bulletin, 119(3), 386-389","title":"the search for the canonical experience: reply to pennebaker and memon (1996)","weightCitations":1,"weightLinks":1,"weightNormcitations":0.0143,"x":0.2523,"y":-0.281,"year":"1996"},{"authors":"theorell, t","cluster":444,"id":742,"label":"theorell (1992)","scoreCitations":1,"scoreNormcitations":0.0882,"scorePubyear":1992,"source":"psychotherapy and psychosomatics, 57(3), 133-133","title":"psychosocial cardiovascular risks - on the double loads in women - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0882,"x":0.7044,"y":-0.2371,"year":"1992"},{"authors":"shaffer, jp","cluster":445,"id":743,"label":"shaffer (1991)","scoreCitations":1,"scoreNormcitations":0.0235,"scorePubyear":1991,"source":"psychological bulletin, 109(2), 348-350","title":"effect size estimation for one-sample multiple-choice-type data - design, analysis, and metaanalysis - comment","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0235,"x":0.8784,"y":-0.1871,"year":"1991"},{"authors":"dannemiller, jl","cluster":446,"id":744,"label":"dannemiller (1991)","scoreCitations":1,"scoreNormcitations":0.0235,"scorePubyear":1991,"source":"psychological review, 98(1), 146-148","title":"lightness is not illuminant invariant - reply","url":"http://dx.doi.org/10.1037//0033-295x.98.1.146","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0235,"x":0.5114,"y":0.0717,"year":"1991"},{"authors":"markowitsch, hj","cluster":447,"id":745,"label":"markowitsch (1984)","scoreCitations":1,"scoreNormcitations":0.1429,"scorePubyear":1984,"source":"psychological bulletin, 95(2), 327-331","title":"the frontal eye field in mammals - a comment on crowne","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1429,"x":-0.7443,"y":0.2052,"year":"1984"},{"authors":"scherwitz, l","cluster":448,"id":746,"label":"scherwitz (1984)","scoreCitations":1,"scoreNormcitations":0.1429,"scorePubyear":1984,"source":"psychosomatic medicine, 46(1), 67-68","title":"behavioral-correlates of angiography - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1429,"x":-0.8513,"y":-0.1714,"year":"1984"},{"authors":"marascuilo, la; zwick, r","cluster":449,"id":747,"label":"marascuilo (1983)","scoreCitations":1,"scoreNormcitations":0.0842,"scorePubyear":1983,"source":"psychological bulletin, 94(3), 534-539","title":"another look at strength and direction of attitude using contrasts - comment","url":"http://dx.doi.org/10.1037/0033-2909.94.3.534","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0842,"x":-0.7478,"y":0.3245,"year":"1983"},{"authors":"hutchinson, tp","cluster":450,"id":748,"label":"hutchinson (1982)","scoreCitations":1,"scoreNormcitations":0.0237,"scorePubyear":1982,"source":"psychological bulletin, 91(1), 193-197","title":"signal probability and the slope of the roc - a comment on treisman","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0237,"x":-0.582,"y":0.4136,"year":"1982"},{"authors":"moshman, d","cluster":160,"id":749,"label":"moshman (1981)","scoreCitations":1,"scoreNormcitations":0.0112,"scorePubyear":1981,"source":"psychological bulletin, 90(1), 185-187","title":"prediction analysis and developmental priority - a comment on froman and hubert","weightCitations":1,"weightLinks":1,"weightNormcitations":0.0112,"x":0.8236,"y":-0.6178,"year":"1981"},{"authors":"greer, k; harvey, n","cluster":451,"id":750,"label":"greer (1978)","scoreCitations":1,"scoreNormcitations":0.0387,"scorePubyear":1978,"source":"psychological review, 85(5), 482-484","title":"timing and positioning of limb movements - comments","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0387,"x":-0.4917,"y":-0.7822,"year":"1978"},{"authors":"marmor, gs; marmor, m","cluster":452,"id":751,"label":"marmor (1978)","scoreCitations":1,"scoreNormcitations":0.0387,"scorePubyear":1978,"source":"psychological bulletin, 85(5), 1102-1103","title":"cross-sectional time-series experiments - some suggested statistical-analyses - comment","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0387,"x":0.9952,"y":-0.4037,"year":"1978"},{"authors":"freides, d","cluster":453,"id":752,"label":"freides (1977)","scoreCitations":1,"scoreNormcitations":0.0918,"scorePubyear":1977,"source":"psychological bulletin, 84(1), 60-61","title":"modality differences, transfer designs, and statistics - comment on a reply","url":"http://dx.doi.org/10.1037/h0078050","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0918,"x":0.9395,"y":0.3955,"year":"1977"},{"authors":"warm, js; schumsky, da; clark, jl","cluster":454,"id":753,"label":"warm (1977)","scoreCitations":1,"scoreNormcitations":0.0918,"scorePubyear":1977,"source":"psychological bulletin, 84(1), 57-59","title":"understanding of intersensory transfer designs - reply to freides","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0918,"x":0.0151,"y":-0.85,"year":"1977"},{"authors":"rudel, rg; teuber, hl","cluster":150,"id":754,"label":"rudel (1975)","scoreCitations":1,"scoreNormcitations":0.2273,"scorePubyear":1975,"source":"psychological bulletin, 82(6), 947-947","title":"human information-processing and sensory modality - cross-modal functions, information complexity, memory, and deficit - comment","weightCitations":1,"weightLinks":1,"weightNormcitations":0.2273,"x":-0.0972,"y":-0.9593,"year":"1975"},{"authors":"vaught, rs","cluster":455,"id":755,"label":"vaught (1975)","scoreCitations":1,"scoreNormcitations":0.2273,"scorePubyear":1975,"source":"psychological bulletin, 82(6), 872-874","title":"analysis of vaughts semiexperimental design - reply","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2273,"x":-0.809,"y":-0.5568,"year":"1975"},{"authors":"cicchetti, dv","cluster":456,"id":756,"label":"cicchetti (1974)","scoreCitations":1,"scoreNormcitations":0.0986,"scorePubyear":1974,"source":"psychological bulletin, 81(11), 896-897","title":"concerning cicchettis interpretation of findings of petrinovich and hardyck - reply","url":"http://dx.doi.org/10.1037/h0037133","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0986,"x":1.0009,"y":0.1975,"year":"1974"},{"authors":"siegel, w; siegel, ja","cluster":457,"id":757,"label":"siegel (1974)","scoreCitations":1,"scoreNormcitations":0.0986,"scorePubyear":1974,"source":"psychological review, 81(2), 180-182","title":"role of memory in stimulus identification - reply to leshowitz,b and green,dm","url":"http://dx.doi.org/10.1037/h0036083","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0986,"x":0.3248,"y":0.5967,"year":"1974"},{"authors":"krantz, dh; tversky, a","cluster":458,"id":758,"label":"krantz (1971)","scoreCitations":1,"scoreNormcitations":0.1345,"scorePubyear":1971,"source":"psychological review, 78(5), 458","title":"exchange of functional and conjoint measurement - reply","url":"http://dx.doi.org/10.1037/h0020292","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1345,"x":-1.0113,"y":0.3908,"year":"1971"},{"authors":"irwin, fw","cluster":459,"id":759,"label":"irwin (1966)","scoreCitations":1,"scoreNormcitations":0.0741,"scorePubyear":1966,"source":"psychological review, 73(3), 241","title":"reply to paul thomas young","url":"http://dx.doi.org/10.1037/h0023203","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0741,"x":-0.0182,"y":0.5875,"year":"1966"},{"authors":"throsby, a","cluster":151,"id":760,"label":"throsby (1964)","scoreCitations":1,"scoreNormcitations":0.1111,"scorePubyear":1964,"source":"psychological bulletin, 62(1), 67-69","title":"proportion of light to cycle and critical flicker-fusion frequency - a reply to bartley","url":"http://dx.doi.org/10.1037/h0048432","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1111,"x":-0.7818,"y":-0.7229,"year":"1964"},{"authors":"levitt, ee","cluster":152,"id":761,"label":"levitt (1963)","scoreCitations":1,"scoreNormcitations":0.1404,"scorePubyear":1963,"source":"psychological bulletin, 60(3), 326-329","title":"a comment on a paradigm for determining the clinical relevance of hypnotically induced psychopathology","url":"http://dx.doi.org/10.1037/h0040796","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1404,"x":-0.1994,"y":-0.2262,"year":"1963"},{"authors":"reese, hw","cluster":460,"id":762,"label":"reese (1963)","scoreCitations":1,"scoreNormcitations":0.1404,"scorePubyear":1963,"source":"psychological bulletin, 60(5), 503-504","title":"reaction to a placebo - the mediational deficiency hypothesis - a reply","url":"http://dx.doi.org/10.1037/h0048148","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1404,"x":0.7155,"y":-0.3124,"year":"1963"},{"authors":"reyher, j","cluster":152,"id":763,"label":"reyher (1963)","scoreCitations":1,"scoreNormcitations":0.1404,"scorePubyear":1963,"source":"psychological bulletin, 60(3), 330-332","title":"a paradigm for determining the clinical relevance hypnotically induced psychopathology - a reply","url":"http://dx.doi.org/10.1037/h0042520","weightCitations":1,"weightLinks":1,"weightNormcitations":0.1404,"x":-0.1995,"y":-0.2224,"year":"1963"},{"authors":"becker, wc","cluster":461,"id":764,"label":"becker (1961)","scoreCitations":1,"scoreNormcitations":0.2692,"scorePubyear":1961,"source":"psychological bulletin, 58(2), 175-175","title":"perturbations in personality structure research - comments","url":"http://dx.doi.org/10.1037/h0042138","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2692,"x":-0.0826,"y":0.8884,"year":"1961"},{"authors":"haggard, ea","cluster":462,"id":765,"label":"haggard (1960)","scoreCitations":1,"scoreNormcitations":0.6667,"scorePubyear":1960,"source":"psychological bulletin, 57(2), 163-164","title":"intraclass correlation vs factor analytic techniques for determining groups of profiles - reply","url":"http://dx.doi.org/10.1037/h0047324","weightCitations":1,"weightLinks":0,"weightNormcitations":0.6667,"x":-0.3341,"y":1.0212,"year":"1960"},{"authors":"ellingson, rj","cluster":463,"id":766,"label":"ellingson (1957)","scoreCitations":1,"scoreNormcitations":0.1081,"scorePubyear":1957,"source":"psychological bulletin, 54(1), 76-78","title":"comments on the reticular-formation and behavioral wakefulness","url":"http://dx.doi.org/10.1037/h0040453","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1081,"x":1.0365,"y":-0.2837,"year":"1957"},{"authors":"behan, ra; behan, fl","cluster":464,"id":767,"label":"behan (1954)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1954,"source":"psychological bulletin, 51(2), 176-178","title":"comments on seeman operational analysis of the freudian theory of daydreams","url":"http://dx.doi.org/10.1037/h0061238","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":-0.0465,"y":0.7736,"year":"1954"},{"authors":"seeman, w","cluster":465,"id":768,"label":"seeman (1954)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1954,"source":"psychological bulletin, 51(2), 178-179","title":"reply to the behans","url":"http://dx.doi.org/10.1037/h0058431","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":0.0556,"y":0.4117,"year":"1954"},{"authors":"burke, cj","cluster":466,"id":769,"label":"burke (1951)","scoreCitations":1,"scoreNormcitations":0.055,"scorePubyear":1951,"source":"psychological bulletin, 48(1), 81-82","title":"letter to the editor on peters reply to lewis and burke","url":"http://dx.doi.org/10.1037/h0051660","weightCitations":1,"weightLinks":0,"weightNormcitations":0.055,"x":-0.7599,"y":-0.4813,"year":"1951"},{"authors":"razran, g","cluster":467,"id":770,"label":"razran (1951)","scoreCitations":1,"scoreNormcitations":0.055,"scorePubyear":1951,"source":"psychological bulletin, 48(2), 153-155","title":"reply to grice comments on razran discussion of stimulus generalization","url":"http://dx.doi.org/10.1037/h0054517","weightCitations":1,"weightLinks":0,"weightNormcitations":0.055,"x":0.561,"y":0.8454,"year":"1951"},{"authors":"london, id","cluster":468,"id":771,"label":"london (1950)","scoreCitations":1,"scoreNormcitations":0.2857,"scorePubyear":1950,"source":"psychological bulletin, 47(2), 150-151","title":"a reply to razran note","url":"http://dx.doi.org/10.1037/h0057539","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2857,"x":-0.9788,"y":-0.2503,"year":"1950"},{"authors":"conrad, hs; ellis, a","cluster":469,"id":772,"label":"conrad (1949)","scoreCitations":1,"scoreNormcitations":0.0755,"scorePubyear":1949,"source":"psychological bulletin, 46(4), 307-308","title":"reply to the humms notes on the validity of personality inventories in military practice","url":"http://dx.doi.org/10.1037/h0053831","weightCitations":1,"weightLinks":0,"weightNormcitations":0.0755,"x":1.0533,"y":0.2359,"year":"1949"},{"authors":"heinlein, cp","cluster":470,"id":773,"label":"heinlein (1947)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1947,"source":"psychological bulletin, 44(1), 80-82","title":"comment on the validity of personality questionnaires","url":"http://dx.doi.org/10.1037/h0054070","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":0.6658,"y":0.202,"year":"1947"},{"authors":"hunter, ws","cluster":471,"id":774,"label":"hunter (1947)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1947,"source":"psychological review, 54(6), 348-352","title":"summary comments on the heredity environment symposium","url":"http://dx.doi.org/10.1037/h0060137","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":0.763,"y":-0.2688,"year":"1947"},{"authors":"mcnemar, q","cluster":153,"id":775,"label":"mcnemar (1947)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1947,"source":"psychological bulletin, 44(2), 171-176","title":"response to cresp rejoinder and conrad reply to appraisal of opinion-attitude methodology","url":"http://dx.doi.org/10.1037/h0055758","weightCitations":1,"weightLinks":1,"weightNormcitations":1.0,"x":0.8133,"y":-0.6987,"year":"1947"},{"authors":"dunlap, k","cluster":472,"id":776,"label":"dunlap (1946)","scoreCitations":1,"scoreNormcitations":0.1724,"scorePubyear":1946,"source":"psychological bulletin, 43(4), 375-375","title":"reply to elder note on dunlap remedy for color vision","url":"http://dx.doi.org/10.1037/h0061567","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1724,"x":0.6824,"y":0.8305,"year":"1946"},{"authors":"sickles, wr","cluster":473,"id":777,"label":"sickles (1946)","scoreCitations":1,"scoreNormcitations":0.1724,"scorePubyear":1946,"source":"psychological review, 53(1), 55-66","title":"in defense of the theory of order - a reply to london,ivan,d.","url":"http://dx.doi.org/10.1037/h0055352","weightCitations":1,"weightLinks":0,"weightNormcitations":0.1724,"x":-0.8121,"y":0.1803,"year":"1946"},{"authors":"skaggs, eb","cluster":474,"id":778,"label":"skaggs (1942)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1942,"source":"psychological review, 49, 600-606","title":"some critical comments on theory of personality","url":"http://dx.doi.org/10.1037/h0059641","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":-0.6883,"y":0.3379,"year":"1942"},{"authors":"fitch, fb","cluster":475,"id":779,"label":"fitch (1940)","scoreCitations":1,"scoreNormcitations":0.2083,"scorePubyear":1940,"source":"psychological bulletin, 37(10), 817-819","title":"symbolic logic and behavior theory: a reply","url":"http://dx.doi.org/10.1037/h0050571","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2083,"x":-0.1744,"y":0.3196,"year":"1940"},{"authors":"kellogg, wn","cluster":476,"id":780,"label":"kellogg (1940)","scoreCitations":1,"scoreNormcitations":0.2083,"scorePubyear":1940,"source":"psychological review, 47, 95-97","title":"the superfluity of the chappell critique - a reply","url":"http://dx.doi.org/10.1037/h0060983","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2083,"x":-0.7911,"y":-0.2702,"year":"1940"},{"authors":"kellogg, wn","cluster":477,"id":781,"label":"kellogg (1939)","scoreCitations":1,"scoreNormcitations":0.2069,"scorePubyear":1939,"source":"psychological review, 46, 489-491","title":"on the nature of skills - a reply to mr lynch","url":"http://dx.doi.org/10.1037/h0054834","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2069,"x":0.8375,"y":0.1731,"year":"1939"},{"authors":"mcnemar, q","cluster":478,"id":782,"label":"mcnemar (1938)","scoreCitations":1,"scoreNormcitations":0.2381,"scorePubyear":1938,"source":"psychological bulletin, 35(8), 552-554","title":"rejoinder to holzinger's reply to special review of 'twins'","url":"http://dx.doi.org/10.1037/h0061795","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2381,"x":-0.7848,"y":0.5462,"year":"1938"},{"authors":"holzinger, kj","cluster":479,"id":783,"label":"holzinger (1938)","scoreCitations":1,"scoreNormcitations":0.2381,"scorePubyear":1938,"source":"psychological bulletin, 35(7), 436-444","title":"reply to special review of 'twins'","url":"http://dx.doi.org/10.1037/h0058781","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2381,"x":0.8009,"y":0.1205,"year":"1938"},{"authors":"hull, cl","cluster":480,"id":784,"label":"hull (1937)","scoreCitations":1,"scoreNormcitations":0.2857,"scorePubyear":1937,"source":"psychological review, 44, 219-221","title":"a comment on dr adams' note on method","url":"http://dx.doi.org/10.1037/h0058615","weightCitations":1,"weightLinks":0,"weightNormcitations":0.2857,"x":0.3604,"y":0.7161,"year":"1937"},{"authors":"laslett, hr","cluster":481,"id":785,"label":"laslett (1934)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1934,"source":"psychological bulletin, 31(10), 815-817","title":"the free association test as a measure of delinquency - a reply","url":"http://dx.doi.org/10.1037/h0074836","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":-0.4223,"y":-0.5908,"year":"1934"},{"authors":"rosenow, c","cluster":482,"id":786,"label":"rosenow (1929)","scoreCitations":1,"scoreNormcitations":0.3571,"scorePubyear":1929,"source":"psychological review, 36, 450-451","title":"in reply to the rescuer","url":"http://dx.doi.org/10.1037/h0075944","weightCitations":1,"weightLinks":0,"weightNormcitations":0.3571,"x":-0.8417,"y":-0.2289,"year":"1929"},{"authors":"rosenow, c","cluster":483,"id":787,"label":"rosenow (1928)","scoreCitations":1,"scoreNormcitations":1.0,"scorePubyear":1928,"source":"psychological review, 35(6), 532-532","title":"a reply to dr. kuo","url":"http://dx.doi.org/10.1037/h0072170","weightCitations":1,"weightLinks":0,"weightNormcitations":1.0,"x":-0.9148,"y":0.5685,"year":"1928"},{"authors":"frestad, d; prescott, e","cluster":484,"id":788,"label":"frestad (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychosomatic medicine, 79(7), 836-837","title":"vital exhaustion and depression: a reply to bianchi and colleagues","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3233,"y":0.9423,"year":"2017"},{"authors":"kepes, s; bushman, bj; anderson, ca","cluster":17,"id":789,"label":"kepes (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological bulletin, 143(7), 775-782","title":"violent video game effects remain a societal concern: reply to hilgard, engelhardt, and rouder (2017)","url":"http://dx.doi.org/10.1037/bul0000112","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.1617,"y":0.1056,"year":"2017"},{"authors":"kolshus, e; elovac, aj; mcloughlin, dm","cluster":485,"id":790,"label":"kolshus (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological medicine, 47(8), 1512-1513","title":"electrode placement in electroconvulsive therapy - bilateral is still the 'gold standard' for some patients: a reply","url":"http://dx.doi.org/10.1017/s003329171700006x","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0439,"y":0.5878,"year":"2017"},{"authors":"stone, j; koychev, i; reilly, t; mcguire, p","cluster":486,"id":791,"label":"stone (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological medicine, 47(5), 983-983","title":"reply to: letter to the editor: sodium nitroprusside for schizophrenia: could methodological variables account for the different results obtained?","url":"http://dx.doi.org/10.1017/s0033291716003470","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.256,"y":-0.8156,"year":"2017"},{"authors":"friborg, o; johnsen, tj","cluster":487,"id":792,"label":"friborg (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological bulletin, 143(3), 341-345","title":"the effect of cognitive-behavioral therapy as an antidepressive treatment is falling: reply to ljotsson et al. (2017) and cristea et al. (2017)","url":"http://dx.doi.org/10.1037/bul0000090","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.4347,"y":0.4887,"year":"2017"},{"authors":"adolphs, r","cluster":488,"id":793,"label":"adolphs (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"social cognitive and affective neuroscience, 12(1), 32-33","title":"reply to barrett: affective neuroscience needs objective criteria for emotions","url":"http://dx.doi.org/10.1093/scan/nsw155","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9705,"y":-0.4588,"year":"2017"},{"authors":"de vries, ya; roest, am; franzen, m; munafo, mr; bastiaansen, ja","cluster":489,"id":794,"label":"de vries (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological medicine, 47(1), 183-185","title":"moving science forward by increasing awareness of reporting and citation biases: a reply to vrshek-schallhorn et al. (2016)","url":"http://dx.doi.org/10.1017/s003329171600218x","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9732,"y":-0.2881,"year":"2017"},{"authors":"horwitz, ri; hayes-conroy, a; singer, bh","cluster":0,"id":795,"label":"horwitz (2017)","scoreCitations":0,"scoreNormcitations":2017.0,"scorePubyear":0,"url":"losing the 'person' in personalized medicine","weightCitations":490,"weightLinks":0,"weightNormcitations":0.0},{"authors":"verhage, ml; schuengel, c; fearon, rmp; madigan, s; oosterman, m; cassibba, r; bakermans-kranenburg, mj; van ijzendoorn, mh","cluster":143,"id":796,"label":"verhage (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychological bulletin, 143(1), 114-116","title":"failing the duck test: reply to barbaro, boutwell, barnes, and shackelford (2017)","url":"http://dx.doi.org/10.1037/bul0000083","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.6554,"y":-0.4345,"year":"2017"},{"authors":"wiley, jf; gruenewald, tl; karlamangla, as; seeman, te","cluster":491,"id":797,"label":"wiley (2017)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2017,"source":"psychosomatic medicine, 79(1), 119-121","title":"the authors reply: pursuing the optimal operationalization of allostatic load","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.4304,"y":0.7148,"year":"2017"},{"authors":"lilienfeld, so; smith, sf; watts, al","cluster":492,"id":798,"label":"lilienfeld (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological bulletin, 142(12), 1394-1403","title":"the perils of unitary models of the etiology of mental disorders-the response modulation hypothesis of psychopathy as a case example: rejoinder to newman and baskin-sommers (2016) reply","url":"http://dx.doi.org/10.1037/bul0000080","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.3966,"y":0.7682,"year":"2016"},{"authors":"bowers, js","cluster":59,"id":799,"label":"bowers (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological review, 123(5), 628-635","title":"psychology, not educational neuroscience, is the way forward for improving educational outcomes for all children: reply to gabrieli (2016) and howard-jones et al. (2016)","url":"http://dx.doi.org/10.1037/rev0000043","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":0.8253,"y":0.4331,"year":"2016"},{"authors":"kraan, tc; velthorst, e; de haan, l; van der gaag, m","cluster":493,"id":800,"label":"kraan (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological medicine, 46(14), 3063-3064","title":"disentangling cause and effect in the relationship between cannabis and psychosis: are we there yet? reply","url":"http://dx.doi.org/10.1017/s0033291716001720","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":1.0133,"y":0.2771,"year":"2016"},{"authors":"shemesh, e","cluster":0,"id":801,"label":"shemesh (2016)","scoreCitations":0,"scoreNormcitations":2016.0,"scorePubyear":0,"url":"the stanford integrated psychosocial assessment for transplantation: a prospective study of medical and psychosocial outcomes","weightCitations":494,"weightLinks":0,"weightNormcitations":0.0},{"authors":"bergink, v; laursen, tm; johannsen, bmw; kushner, sa; meltzer-brody, s; munk-olsen, t","cluster":495,"id":802,"label":"bergink (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological medicine, 46(11), 2453-2453","title":"postpartum psychosis and pre-eclamptic toxaemia: a reply","url":"http://dx.doi.org/10.1017/s0033291716001124","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7181,"y":0.3946,"year":"2016"},{"authors":"moritz, s","cluster":496,"id":803,"label":"moritz (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological medicine, 46(9), 2006-2007","title":"should we focus on quality or quantity in meta-analyses? - a reply","url":"http://dx.doi.org/10.1017/s0033291716000192","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.8317,"y":0.3432,"year":"2016"},{"authors":"hui, clm; lee, ehm; chang, wc; chan, skw; chen, eyh","cluster":154,"id":804,"label":"hui (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological medicine, 46(7), 1561-1562","title":"comparing delusional disorder and schizophrenia: a comment on hui et al. (2015) - a reply","url":"http://dx.doi.org/10.1017/s0033291715002810","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":1.0052,"y":-0.1134,"year":"2016"},{"authors":"kendler, ks","cluster":144,"id":805,"label":"kendler (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychological medicine, 46(7), 1565-1566","title":"robustness is the kind of coherence that matters: a comment on kendler (2015) - a reply","url":"http://dx.doi.org/10.1017/s0033291716000155","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.1323,"y":-0.1822,"year":"2016"},{"authors":"de leon, j; baca-garcia, e; blasco-fontecilla, h","cluster":497,"id":806,"label":"de leon (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychotherapy and psychosomatics, 85(2), 112-113","title":"reply to the multifaceted aspects of suicide behavior by tondo","url":"http://dx.doi.org/10.1159/000442422","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.0132,"y":-0.5039,"year":"2016"},{"authors":"granger, da; laurent, hk","cluster":498,"id":807,"label":"granger (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychosomatic medicine, 78(1), 116-117","title":"closing the border on a new frontier: the problem with salivary nerve growth factor reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5943,"y":0.8301,"year":"2016"},{"authors":"hasler, g","cluster":499,"id":808,"label":"hasler (2016)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2016,"source":"psychotherapy and psychosomatics, 85(6), 368-368","title":"reply to 'is binge drinking in adolescents related to specific impairments in well-being?' by rafanelli et al.","url":"http://dx.doi.org/10.1159/000448760","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1158,"y":-0.8241,"year":"2016"},{"authors":"tsetsos, k; chater, n; usher, m","cluster":500,"id":809,"label":"tsetsos (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological review, 122(4), 838-847","title":"examining the mechanisms underlying contextual preference reversal: comment on trueblood, brown, and heathcote (2014)","url":"http://dx.doi.org/10.1037/a0038953","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6891,"y":0.7562,"year":"2015"},{"authors":"savill, m; priebe, s","cluster":501,"id":810,"label":"savill (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(11), 2459-2460","title":"concepts and methods when considering negative symptom course: a reply","url":"http://dx.doi.org/10.1017/s0033291715000306","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4587,"y":-0.9021,"year":"2015"},{"authors":"abu-akel, a; fischer-shofty, m; levkovitz, y; decety, j; shamay-tsoory, s","cluster":502,"id":811,"label":"abu-akel (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(6), 1341-1341","title":"letter to the editor oxytocin and empathy to pain in schizophrenia: a reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2136,"y":0.8803,"year":"2015"},{"authors":"kleim, b; wilhelm, fh; temp, i; margraf, j; wiederhold, bk; rasch, b","cluster":503,"id":812,"label":"kleim (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(4), 887-888","title":"simply avoiding reactivating fear memory after exposure therapy may help to consolidate fear extinction memory - a reply","url":"http://dx.doi.org/10.1017/s0033291714001822","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.4975,"y":0.6066,"year":"2015"},{"authors":"van der zanden, r; galindo-garre, f; curie, k; kramer, j; cuijpers, p","cluster":145,"id":813,"label":"van der zanden (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(3), 664-665","title":"mechanisms of change in an internet-based therapy for depression - a comment on van der zanden et al.: a reply","url":"http://dx.doi.org/10.1017/s0033291714002335","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.3938,"y":0.1721,"year":"2015"},{"authors":"dazzi, t; gribble, r; wessely, s; fear, nt","cluster":504,"id":814,"label":"dazzi (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(1), 217-u229","title":"suicidal ideation and research ethics committees: a reply","url":"http://dx.doi.org/10.1017/s0033291714002281","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5103,"y":0.2323,"year":"2015"},{"authors":"goodwin, gm","cluster":505,"id":815,"label":"goodwin (2015)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2015,"source":"psychological medicine, 45(2), 447-447","title":"comments on 'is there an excess of significant findings in published studies of psychotherapy for depression?'","url":"http://dx.doi.org/10.1017/s003329171400230x","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0625,"y":0.6614,"year":"2015"},{"authors":"fearon, p; shmueli-goetz, y; viding, e; fonagy, p; plomin, r","cluster":506,"id":816,"label":"fearon (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"journal of child psychology and psychiatry, 55(9), 1043-1046","title":"commentary: genetic influences on adolescent attachment security: an empirical reminder of biology and the complexities of development - a reply to rutter (2014)","url":"http://dx.doi.org/10.1111/jcpp.12302","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9138,"y":-0.2945,"year":"2014"},{"authors":"singh, sp; burns, t; tyrer, p; islam, z; parsons, h; crawford, mj","cluster":507,"id":817,"label":"singh (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"psychological medicine, 44(4), 894-896","title":"'ethnicity as a predictor of detention under the mental health act': a response to singh et al. - a reply","url":"http://dx.doi.org/10.1017/s0033291713003061","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6171,"y":-0.6153,"year":"2014"},{"authors":"bahorik, al; newhill, ce; queen, cc; eack, sm","cluster":508,"id":818,"label":"bahorik (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"psychological medicine, 44(3), 670-671","title":"critique of bahorik et al. (2013) - 'underreporting of drug use among individuals with schizophrenia: prevalence and predictors' - a reply","url":"http://dx.doi.org/10.1017/s0033291713002560","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2436,"y":0.6948,"year":"2014"},{"authors":"lee, rsc; redoblado-hodge, ma; naismith, sl; hermens, df; porter, ma; hickie, ib","cluster":509,"id":819,"label":"lee (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"psychological medicine, 44(3), 671-672","title":"comments on 'cognitive remediation improves memory and psychosocial functioning in first-episode psychiatric out-patients': a reply","url":"http://dx.doi.org/10.1017/s0033291713002675","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6038,"y":0.5344,"year":"2014"},{"authors":"meyer, t; berendes, a; hulpke-wette, m; herrmann-lingen, c","cluster":510,"id":820,"label":"meyer (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"psychosomatic medicine, 76(2), 164-166","title":"blood pressure and school performance reply","url":"http://dx.doi.org/10.1097/psy.0000000000000034","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6268,"y":-0.3346,"year":"2014"},{"authors":"sturz, k; gunther, v","cluster":511,"id":821,"label":"sturz (2014)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2014,"source":"psychological medicine, 44(3), 671-671","title":"comments on 'cognitive remediation improves memory and psychosocial functioning in first-episode psychiatric out-patients'","url":"http://dx.doi.org/10.1017/s0033291713002687","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.0072,"y":0.8339,"year":"2014"},{"authors":"anderson, el; reti, im","cluster":512,"id":822,"label":"anderson (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychosomatic medicine, 75(9), 894-895","title":"electroconvulsive therapy in pregnancy revisited reply","url":"http://dx.doi.org/10.1097/psy.0000000000000007","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7325,"y":0.7067,"year":"2013"},{"authors":"martel, mm","cluster":155,"id":823,"label":"martel (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychological bulletin, 139(6), 1265-1269","title":"the utility of evolutionary psychology for generating novel, specific, and a priori hypotheses about psychopathology in a parsimonious fashion: reply to hankin (2013)","url":"http://dx.doi.org/10.1037/a0033241","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.1746,"y":-0.016,"year":"2013"},{"authors":"huddy, vc; clark, l; harrison, i; ron, ma; moutoussi, m; barnes, tre; joyce, em","cluster":513,"id":824,"label":"huddy (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychological medicine, 43(10), 2238-2239","title":"multifaceted impairments of impulsivity in cannabis users? - a reply","url":"http://dx.doi.org/10.1017/s0033291713001645","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6906,"y":-0.1111,"year":"2013"},{"authors":"marin, tj; miller, ge","cluster":15,"id":825,"label":"marin (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychological bulletin, 139(5), 998-999","title":"taking the middle ground, where the path is most clear: reply to smith (2013) and denollet (2013)","url":"http://dx.doi.org/10.1037/a0033977","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":-0.908,"y":0.2,"year":"2013"},{"authors":"simonoff, e; taylor, e; baird, g; bernard, s","cluster":514,"id":826,"label":"simonoff (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"journal of child psychology and psychiatry, 54(6), 703-704","title":"commentary: rct of optimal dose methylphenidate in children and adolescents with severe adhd and id - a reply to arnold (2013)","url":"http://dx.doi.org/10.1111/jcpp.12098","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.5493,"y":0.7733,"year":"2013"},{"authors":"leung, j; gartner, c; hall, w; lucke, j; dobson, a","cluster":515,"id":827,"label":"leung (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychological medicine, 43(2), 445-447","title":"smoking and mental health in young women - challenges in interpretation: a reply","url":"http://dx.doi.org/10.1017/s0033291712002371","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2357,"y":-0.9841,"year":"2013"},{"authors":"bech, p; tomba, e","cluster":516,"id":828,"label":"bech (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychotherapy and psychosomatics, 82(4), 259-259","title":"operationalising concordance: testing the utility of bech's pharmacopsychometric triangle reply","url":"http://dx.doi.org/10.1159/000348508","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6123,"y":-0.4375,"year":"2013"},{"authors":"zimmerman, m","cluster":517,"id":829,"label":"zimmerman (2013)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2013,"source":"psychotherapy and psychosomatics, 82(3), 189-189","title":"the performance of the revised major depression inventory for self-reported severity of depression - implications for the dsm-5 and icd-11 reply","url":"http://dx.doi.org/10.1159/000347097","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3503,"y":-0.507,"year":"2013"},{"authors":"hunt, im; kapur, n","cluster":518,"id":830,"label":"hunt (2012)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2012,"source":"psychological medicine, 42(12), 2685-2686","title":"transfer of suicide risk versus looking at suicides outside hospital in general - a reply","url":"http://dx.doi.org/10.1017/s0033291712002048","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.9894,"y":-0.4261,"year":"2012"},{"authors":"wills, aj; pothos, em","cluster":19,"id":831,"label":"wills (2012)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2012,"source":"psychological bulletin, 138(6), 1259-1261","title":"on the adequacy of bayesian evaluations of categorization models: reply to vanpaemel and lee (2012)","url":"http://dx.doi.org/10.1037/a0028892","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.344,"y":0.9031,"year":"2012"},{"authors":"apter, a","cluster":519,"id":832,"label":"apter (2012)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2012,"source":"journal of child psychology and psychiatry, 53(1), 26-27","title":"commentary: preventing adolescent suicide: is proactive screening for mental disorders the answer? - reflections on christiansen and larsen (2011)","url":"http://dx.doi.org/10.1111/j.1469-7610.2011.02472.x","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.2306,"y":0.8683,"year":"2012"},{"authors":"boysen, ga","cluster":520,"id":833,"label":"boysen (2012)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2012,"source":"psychotherapy and psychosomatics, 81(3), 185-185","title":"the scientific status of childhood dissociative identity disorder: a review of published research reply","url":"http://dx.doi.org/10.1159/000334249","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2124,"y":0.0212,"year":"2012"},{"authors":"grool, am; van der graaf, y; mali, wptm; witkamp, td; vincken, kl; geerlings, mi","cluster":521,"id":834,"label":"grool (2012)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2012,"source":"psychological medicine, 42(1), 217-218","title":"location and progression of white-matter lesions, lacunar infarcts and atrophy associated with motivational and mood symptoms in patients with symptomatic atherosclerotic disease: things to ponder reply","url":"http://dx.doi.org/10.1017/s0033291711002297","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1804,"y":-0.769,"year":"2012"},{"authors":"patrick, jc; devilly, gj; o'donovan, a; alcorn, kl; creedy, d","cluster":522,"id":835,"label":"patrick (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(12), 2683-2686","title":"incorrect citations of edinburgh postnatal depression scale cut-off scores and the use of the state-trait anxiety inventory reply","url":"http://dx.doi.org/10.1017/s0033291711001930","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1704,"y":-0.9835,"year":"2011"},{"authors":"rozanski, a; gransar, h; kubzansky, ld; wong, n; shaw, l; miranda-peats, r; thomson, le; hayes, sw; friedman, jd; berman, ds","cluster":523,"id":836,"label":"rozanski (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychosomatic medicine, 73(8), 721-722","title":"self-reported versus other-reported distress and coronary artery calcification reply","url":"http://dx.doi.org/10.1097/psy.0b013e318230ae8c","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.7426,"y":-0.0759,"year":"2011"},{"authors":"van rijn, s; aleman, a; de sonneville, l; sprong, m; ziermans, t; schothorst, p; van engeland, h; swaab, h","cluster":524,"id":837,"label":"van rijn (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(9), 2011-2012","title":"adiposity as a possible mediator of low testosterone salivary levels in adolescent boys in prodromal stages of psychosis reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7028,"y":0.2669,"year":"2011"},{"authors":"walter, nt; montag, c; markett, s; reuter, m","cluster":525,"id":838,"label":"walter (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychosomatic medicine, 73(7), 633-635","title":"genetic contributions to alexithymia reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1181,"y":-0.9504,"year":"2011"},{"authors":"horacek, j; tejkalova, h; novak, t; bubenikova-valesova, v; palenicek, t; rambousek, l; ruzickova, s; vaculin, s; hoschl, c","cluster":526,"id":839,"label":"horacek (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(8), 1787-1789","title":"the influence of a subanaesthetic dose of ketamine on circulating pro-inflammatory cytokines and serotonin in brain reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4911,"y":-0.8496,"year":"2011"},{"authors":"kendler, ks; zachar, p; craver, c","cluster":527,"id":840,"label":"kendler (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(7), 1566-1566","title":"mental disorders as mechanistic property clusters reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.7393,"y":-0.609,"year":"2011"},{"authors":"webb, rt; abel, km","cluster":528,"id":841,"label":"webb (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(7), 1564-1565","title":"life history theory as a possible explanation for teenage pregnancy reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.3957,"y":0.3997,"year":"2011"},{"authors":"pinquart, m; duberstein, pr","cluster":529,"id":842,"label":"pinquart (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(6), 1340-1342","title":"meta-analysis and its discontents reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5816,"y":0.3489,"year":"2011"},{"authors":"bourque, f","cluster":530,"id":843,"label":"bourque (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(4), 893-895","title":"migrant status, vitamin d and risk of schizophrenia reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6327,"y":-0.1346,"year":"2011"},{"authors":"chiesa, a; serretti, a","cluster":531,"id":844,"label":"chiesa (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(3), 667-668","title":"response to 'a systematic review of neurobiological and clinical features of mindfulness meditations' reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7273,"y":-0.6735,"year":"2011"},{"authors":"abbass, a; kisely, s; kroenke, k","cluster":532,"id":845,"label":"abbass (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychotherapy and psychosomatics, 80(3), 184-185","title":"psychodynamic therapy for somatic disorder meta-analysis raises more questions than answers reply","url":"http://dx.doi.org/10.1159/000321071","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6638,"y":0.5228,"year":"2011"},{"authors":"erceg-hurn, dm","cluster":533,"id":846,"label":"erceg-hurn (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychotherapy and psychosomatics, 80(3), 182-183","title":"psychodynamic therapy for somatic disorder meta-analysis raises more questions than answers","url":"http://dx.doi.org/10.1159/000320578","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.7332,"y":0.7882,"year":"2011"},{"authors":"gill, m; corvin, a; donohue, g","cluster":534,"id":847,"label":"gill (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychological medicine, 41(1), 220-220","title":"what have official classifications ever done for psychiatric genomics? implications for dsm-v schizophrenia reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.4852,"y":-0.8517,"year":"2011"},{"authors":"jones, sg","cluster":535,"id":848,"label":"jones (2011)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2011,"source":"psychosomatic medicine, 73(1), 112-112","title":"nature and degree of childhood abuse in psychogenic nonepileptic seizures reply","url":"http://dx.doi.org/10.1097/psy.0b013e3182056cfc","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.2934,"y":0.3393,"year":"2011"},{"authors":"moncrieff, j; leo, j","cluster":536,"id":849,"label":"moncrieff (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological medicine, 40(12), 2106-2107","title":"a comment on 'a systematic review of the effects of antipsychotic drugs on brain volume' by moncrieff & leo (2010) the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6944,"y":-0.8211,"year":"2010"},{"authors":"moncrieff, j; leo, j","cluster":127,"id":850,"label":"moncrieff (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological medicine, 40(12), 2108-2108","title":"are antipsychotics good or bad for the brain? a comment on moncrieff & leo (2010) the authors reply","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.0325,"y":-0.2418,"year":"2010"},{"authors":"kendler, ks","cluster":537,"id":851,"label":"kendler (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological medicine, 40(10), 1757-1758","title":"context dependency of major depression reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6127,"y":0.7231,"year":"2010"},{"authors":"burt, sa","cluster":156,"id":852,"label":"burt (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological bulletin, 136(5), 874-874","title":"are there shared environmental influences on attention-deficit/hyperactivity disorder? reply to wood, buitelaar, rijsdijk, asherson, and kuntsi (2010) (vol 136, pg 341, 2010)","url":"http://dx.doi.org/10.1037/a0020878","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.0158,"y":0.2385,"year":"2010"},{"authors":"jablensky, a","cluster":538,"id":853,"label":"jablensky (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological medicine, 40(9), 1584-1584","title":"co-morbidity and the concept of 'emotional disorders' reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3663,"y":-0.7848,"year":"2010"},{"authors":"tomiyama, aj; dallman, mf","cluster":539,"id":854,"label":"tomiyama (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychosomatic medicine, 72(6), 599-600","title":"low-calorie dieting and dieters' cortisol levels: don't forget cortisone reply","url":"http://dx.doi.org/10.1097/psy.0b013e3181e9e1aa","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1517,"y":-0.5962,"year":"2010"},{"authors":"ader, r; mercurio, mg; walton, j; james, d; davis, m; ojha, v; kimball, ab; fiorentino, d","cluster":540,"id":855,"label":"ader (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychosomatic medicine, 72(5), 505-506","title":"placebo response? the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0458,"y":0.9072,"year":"2010"},{"authors":"nater, um; lin, jm; maloney, em; jones, jf; tian, h; heim, c; raison, cl; boneva, rs; reeves, wc","cluster":541,"id":856,"label":"nater (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychosomatic medicine, 72(5), 507-509","title":"criteria used to define chronic fatigue syndrome questioned the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1414,"y":-1.0677,"year":"2010"},{"authors":"keers, r; farmer, ae; aitchison, kj","cluster":542,"id":857,"label":"keers (2010)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2010,"source":"psychological medicine, 40(4), 702-704","title":"further evidence is required to confirm association between cacna1c gene variants and bipolar affective disorder reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-1.0453,"y":0.2285,"year":"2010"},{"authors":"jones, sr; langdon, r; fernyhough, c; connaughton, e","cluster":543,"id":858,"label":"jones (2009)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2009,"source":"psychological medicine, 39(9), 1579-1580","title":"naming names: auditory hallucinations, inner speech, and source monitoring reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6287,"y":-0.3725,"year":"2009"},{"authors":"ismail, k; wessely, s","cluster":544,"id":859,"label":"ismail (2009)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2009,"source":"psychological medicine, 39(8), 1402-1402","title":"chronic fatigue in gulf war veterans: should it be treated as chronic fatigue syndrome? reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6936,"y":0.8242,"year":"2009"},{"authors":"coid, j","cluster":545,"id":860,"label":"coid (2009)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2009,"source":"psychological medicine, 39(4), 699-700","title":"untitled reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.8155,"y":-0.1071,"year":"2009"},{"authors":"spillane, ns; smith, gt","cluster":157,"id":861,"label":"spillane (2009)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2009,"source":"psychological bulletin, 135(2), 344-346","title":"on the pursuit of sound science for the betterment of the american indian community: reply to beals et al. (2009)","url":"http://dx.doi.org/10.1037/a0014997","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.9915,"y":-0.2116,"year":"2009"},{"authors":"lee, kh; tsoi, dt; woodruff, pwr","cluster":546,"id":862,"label":"lee (2009)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2009,"source":"psychological medicine, 39(2), 348-351","title":"skills-based learning for gating for a loved one with an eating disorder: the new maudsley method reply","url":"http://dx.doi.org/10.1017/s0033291708004509","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8853,"y":-0.6059,"year":"2009"},{"authors":"macleod, j","cluster":547,"id":863,"label":"macleod (2008)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2008,"source":"psychological medicine, 38(3), 462-464","title":"the coherence of the evidence linking cannabis with psychosis - the author replies","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.8909,"y":-0.3585,"year":"2008"},{"authors":"deneve, km","cluster":149,"id":864,"label":"deneve (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological bulletin, 133(6), 910-910","title":"repressive defensiveness and subjective well-being: reply to pauls (2007)","url":"http://dx.doi.org/10.1037/0033-2909.133.6.910","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.5089,"y":0.0525,"year":"2007"},{"authors":"christenfeld, njs","cluster":548,"id":865,"label":"christenfeld (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychosomatic medicine, 69(8), 823-824","title":"don't yet name your child pig: reply to morrison and smith","url":"http://dx.doi.org/10.1097/psy.0b013e318159b4a9","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.134,"y":-0.6915,"year":"2007"},{"authors":"first, mb","cluster":549,"id":866,"label":"first (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological medicine, 37(10), 1513-1514","title":"untitled - reply","url":"http://dx.doi.org/10.1017/s0033291707001237","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5106,"y":0.9475,"year":"2007"},{"authors":"howe, pdl; sagreiya, h; curtis, dl; zheng, cj; livingstone, ms","cluster":158,"id":867,"label":"howe (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological review, 114(4), 1109-1110","title":"postscript: a reply to bressan (2007)","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.6885,"y":-0.4981,"year":"2007"},{"authors":"smith, g; morrison, s","cluster":550,"id":868,"label":"smith (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychosomatic medicine, 69(8), 824-825","title":"don't yet name your child pig: reply to morrison and smith - response","url":"http://dx.doi.org/10.1097/01.psy.0000296501.22504.02","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.0228,"y":-0.0765,"year":"2007"},{"authors":"spek, v; cuijpers, p; nyklicek, i; pop, v","cluster":551,"id":869,"label":"spek (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological medicine, 37(8), 1211-1212","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.7742,"y":-0.338,"year":"2007"},{"authors":"pope, hg; poliakoff, mb; parker, mp; boynes, m; hudson, ji","cluster":552,"id":870,"label":"pope (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychological medicine, 37(7), 1065-1067","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.847,"y":0.0827,"year":"2007"},{"authors":"haass-wiesegart, m; xiao, zp","cluster":553,"id":871,"label":"haass-wiesegart (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychotherapy and psychosomatics, 76(6), 408-409","title":"changing societies - changing people: psychotherapeutic answers","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8597,"y":-0.0262,"year":"2007"},{"authors":"pope, hg; barry, s; bodkin, ja; hudson, ji","cluster":554,"id":872,"label":"pope (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychotherapy and psychosomatics, 76(1), 59-60","title":"the validity of the dissociative disorders - reply","url":"http://dx.doi.org/10.1159/000096367","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-1.0336,"y":-0.2985,"year":"2007"},{"authors":"pope, hg; barry, s; bodkin, ja; hudson, j","cluster":555,"id":873,"label":"pope (2007)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2007,"source":"psychotherapy and psychosomatics, 76(6), 401-403","title":"scientific study of the dissociative disorders - reply","url":"http://dx.doi.org/10.1159/000107571","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.3896,"y":0.5305,"year":"2007"},{"authors":"macmillan, na; rotello, cm","cluster":32,"id":874,"label":"macmillan (2006)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2006,"source":"psychological review, 113(3), 664-665","title":"deciding about decision models of remember and know judgments: a reply to murdock (2006) - postscript","url":"http://dx.doi.org/10.1037/h0087898","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.3235,"y":-0.2142,"year":"2006"},{"authors":"hartmann, a","cluster":556,"id":875,"label":"hartmann (2006)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2006,"source":"psychosomatic medicine, 68(1), 175-176","title":"please don't talk bad about good old aunt anova! a reply to aj vickers' critique","url":"http://dx.doi.org/10.1097/01.psy.0000199925.51075.36","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7179,"y":0.5559,"year":"2006"},{"authors":"winkler, d; pjrek, e; kasper, s","cluster":557,"id":876,"label":"winkler (2006)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2006,"source":"psychotherapy and psychosomatics, 75(3), 193-193","title":"evidence for a male or instead for a female depression? reply","url":"http://dx.doi.org/10.1159/000091781","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.2364,"y":0.2334,"year":"2006"},{"authors":"mcrae, k; hare, m; tanenhaus, mk","cluster":159,"id":877,"label":"mcrae (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological review, 112(4), 1031-1031","title":"meaning through syntax is insufficient to explain comprehension of sentences with reduced relative clauses: comment on mckoon and ratcliff (2003) - postscript: rejoinder to mckoon and ratcliff (2005)","url":"http://dx.doi.org/10.1037/0033-295x.112.4.1031","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.2709,"y":0.3064,"year":"2005"},{"authors":"lee, md; wagenmakers, ej","cluster":19,"id":878,"label":"lee (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological review, 112(3), 668-668","title":"postscript: bayesian statistical inference in psychology comment on trafimow (2003)","url":"http://dx.doi.org/10.1037/0033-295x.112.3.668","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.3796,"y":0.8714,"year":"2005"},{"authors":"cheng, skw; wong, cw; tsang, j; wong, kc","cluster":558,"id":879,"label":"cheng (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological medicine, 35(3), 460-461","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0731,"y":-1.0702,"year":"2005"},{"authors":"castle, dj","cluster":559,"id":880,"label":"castle (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological medicine, 35(2), 299-300","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.2271,"y":-0.8057,"year":"2005"},{"authors":"faravelli, c","cluster":560,"id":881,"label":"faravelli (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychotherapy and psychosomatics, 74(3), 191-192","title":"prevalence of bipolar disorders - reply","url":"http://dx.doi.org/10.1159/000084007","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4145,"y":0.0762,"year":"2005"},{"authors":"marks, i; mataix-cols, d; kenwright, m","cluster":561,"id":882,"label":"marks (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological medicine, 35(1), 150-151","title":"untitled - the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9777,"y":-0.0361,"year":"2005"},{"authors":"patten, sb; barbui, c","cluster":562,"id":883,"label":"patten (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychotherapy and psychosomatics, 74(6), 387-388","title":"interferon-alpha-induced depression: when a randomized trial is not a randomized controlled trial - reply","url":"http://dx.doi.org/10.1159/000087788","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3393,"y":-0.6872,"year":"2005"},{"authors":"startup, m; jackson, m; bendix, s","cluster":563,"id":884,"label":"startup (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological medicine, 35(1), 152-153","title":"untitled - the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4955,"y":-0.573,"year":"2005"},{"authors":"nielen, mma; den boer, ja","cluster":564,"id":885,"label":"nielen (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"psychological medicine, 34(7), 1368-1369","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.02,"y":0.3096,"year":"2004"},{"authors":"tyrer, p; schmidt, u; davidson, k; thompson, s; byford, s; knapp, m; catalan, j; macleod, a","cluster":565,"id":886,"label":"tyrer (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"psychological medicine, 34(6), 1144-1146","title":"psychological medicine - author's reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1668,"y":-0.742,"year":"2004"},{"authors":"goodwin, rd; kroenke, k","cluster":566,"id":887,"label":"goodwin (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"psychosomatic medicine, 66(3), 456-457","title":"suicidal ideation in primary care: ask a vague question, get a confusing answer - response","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-1.0264,"y":0.0539,"year":"2004"},{"authors":"healy, d","cluster":567,"id":888,"label":"healy (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"psychotherapy and psychosomatics, 73(4), 260-261","title":"ssri and suicide - reply","url":"http://dx.doi.org/10.1159/000077747","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.875,"y":-0.3806,"year":"2004"},{"authors":"nielen, mma; den boer, ja","cluster":568,"id":889,"label":"nielen (2004)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2004,"source":"psychological medicine, 34(1), 181-183","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":1.0097,"y":0.0676,"year":"2004"},{"authors":"sensky, t; scott, j","cluster":569,"id":890,"label":"sensky (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychological medicine, 33(6), 1136-1137","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4333,"y":-0.8315,"year":"2003"},{"authors":"karniol, r","cluster":28,"id":891,"label":"karniol (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychological review, 110(3), 595-600","title":"protocentrism will prevail: a reply to krueger (2003), mussweiler (2003), and sedikides (2003)","url":"http://dx.doi.org/10.1037/0033-295x.110.3.595","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.1776,"y":0.9592,"year":"2003"},{"authors":"bakker, a; spinhoven, p; van der does, ajw; van balkom, ajlm; van dyck, r","cluster":570,"id":892,"label":"bakker (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychotherapy and psychosomatics, 72(2), 111-111","title":"attribution of improvement to medication and increased risk of relapse of panic disorder with agoraphobia - reply","url":"http://dx.doi.org/10.1159/000068688","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.344,"y":0.1041,"year":"2003"},{"authors":"fava, ga","cluster":571,"id":893,"label":"fava (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychotherapy and psychosomatics, 72(2), 109-109","title":"training psychiatry residents in evidence-based treatments for major depression - reply","url":"http://dx.doi.org/10.1159/000068685","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0488,"y":1.0735,"year":"2003"},{"authors":"prudic, j; olfson, m; sackeim, ah","cluster":572,"id":894,"label":"prudic (2002)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2002,"source":"psychological medicine, 32(7), 1324-1326","title":"untitled - reply","url":"http://dx.doi.org/10.1017/s0033291702236223","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":1.0586,"y":-0.2182,"year":"2002"},{"authors":"keri, s; kelemen, o; benedek, g; janka, z","cluster":573,"id":895,"label":"keri (2002)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2002,"source":"psychological medicine, 32(1), 181-182","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1655,"y":0.3255,"year":"2002"},{"authors":"parker, g","cluster":574,"id":896,"label":"parker (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychological medicine, 31(7), 1324-1325","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5709,"y":0.7754,"year":"2001"},{"authors":"benazzi, f","cluster":575,"id":897,"label":"benazzi (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychotherapy and psychosomatics, 70(3), 167-167","title":"female depression and menopause - reply","url":"http://dx.doi.org/10.1159/000056245","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1703,"y":0.5313,"year":"2001"},{"authors":"jacobs, jr; bovasso, g","cluster":576,"id":898,"label":"jacobs (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychological medicine, 31(3), 566-568","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6792,"y":-0.364,"year":"2001"},{"authors":"mccord, rs; sheffield, d; floyd, mr; cestaro-seifer, d; seifer, fd; bevins, bc; mccord, e; davidson, g","cluster":577,"id":899,"label":"mccord (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychosomatic medicine, 63(1), 134-134","title":"the effect of emotional expression in a short answer questionnaire on clinical outcome in pulmonary rehabilitation","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.0707,"y":-1.0475,"year":"2001"},{"authors":"mojtabai, r","cluster":578,"id":900,"label":"mojtabai (2000)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2000,"source":"psychological medicine, 30(2), 481-483","title":"untitled - the author replies","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.2717,"y":-1.0435,"year":"2000"},{"authors":"wade, t","cluster":579,"id":901,"label":"wade (2000)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2000,"source":"psychological medicine, 30(2), 483-484","title":"untitled - the authors reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.794,"y":-0.56,"year":"2000"},{"authors":"nopoulos, p","cluster":580,"id":902,"label":"nopoulos (1999)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1999,"source":"psychological medicine, 29(3), 754-754","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.825,"y":0.688,"year":"1999"},{"authors":"o'carroll, r","cluster":581,"id":903,"label":"o'carroll (1998)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1998,"source":"psychological medicine, 28(2), 495-496","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9468,"y":0.509,"year":"1998"},{"authors":"bjork, ra","cluster":582,"id":904,"label":"bjork (1996)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1996,"source":"psychological review, 103(1), 3-4","title":"policy on critiques and replies: psychological review","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7779,"y":0.6629,"year":"1996"},{"authors":"bancroft, j","cluster":583,"id":905,"label":"bancroft (1995)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1995,"source":"psychological medicine, 25(3), 657-658","title":"untitled - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.554,"y":0.278,"year":"1995"},{"authors":"stenager, en; stenager, e","cluster":584,"id":906,"label":"stenager (1995)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1995,"source":"psychotherapy and psychosomatics, 63(1), 55-55","title":"chronic pain and suicide - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2017,"y":-1.0516,"year":"1995"},{"authors":"jennings, jr; mcknight, jd","cluster":585,"id":907,"label":"jennings (1994)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1994,"source":"psychosomatic medicine, 56(6), 578-578","title":"inferring vagal tone from heart-rate-variability - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8447,"y":0.3739,"year":"1994"},{"authors":"newlove, t; linden, w","cluster":586,"id":908,"label":"newlove (1994)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1994,"source":"psychosomatic medicine, 56(2), 179-179","title":"when ambulatory and office blood pressures dont match - self-measured pressure is the answer","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3835,"y":-0.8594,"year":"1994"},{"authors":"joanes, dn","cluster":587,"id":909,"label":"joanes (1983)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1983,"source":"psychological bulletin, 93(3), 609-609","title":"estimability - comments","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.1112,"y":0.889,"year":"1983"},{"authors":"froman, t; hubert, lj","cluster":160,"id":910,"label":"froman (1981)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1981,"source":"psychological bulletin, 90(1), 188-188","title":"a reply to moshman critique of prediction analysis and developmental priority","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.8253,"y":-0.621,"year":"1981"},{"authors":"[anonymous]","cluster":588,"id":911,"label":"[anonymous] (1981)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1981,"source":"psychological medicine, 11(4), 864-864","title":"questions and answers in the practice of family-therapy - gurman,as","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.281,"y":-0.7892,"year":"1981"},{"authors":"ikemi, y","cluster":589,"id":912,"label":"ikemi (1979)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1979,"source":"psychotherapy and psychosomatics, 31(1-4), 382-383","title":"psychosomatic-medicine - core approach to clinical medicine - education, practice, research and theory - concluding comment","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0293,"y":0.7152,"year":"1979"},{"authors":"simonton, dk","cluster":590,"id":913,"label":"simonton (1979)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1979,"source":"psychological bulletin, 86(5), 927-928","title":"alternatives to simonton analyses of the interrupted and multiple-group time-series designs - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5867,"y":-0.3257,"year":"1979"},{"authors":"hunter, je; schmidt, fl","cluster":161,"id":914,"label":"hunter (1978)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1978,"source":"psychological bulletin, 85(4), 675-676","title":"bias in defining test bias - reply to darlington","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.0425,"y":-0.5821,"year":"1978"},{"authors":"jenkins, cd; zyzanski, sj; rosenman, rh","cluster":591,"id":915,"label":"jenkins (1978)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1978,"source":"psychosomatic medicine, 40(6), 508-510","title":"coronary prone behavior - on pattern or several - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2903,"y":-0.8616,"year":"1978"},{"authors":"kanak, nj","cluster":592,"id":916,"label":"kanak (1978)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1978,"source":"psychological bulletin, 85(2), 277-279","title":"associative interference hypothesis in verbal-discrimination transfer - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.4545,"y":0.0238,"year":"1978"},{"authors":"laxenaire, m","cluster":593,"id":917,"label":"laxenaire (1978)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1978,"source":"psychotherapy and psychosomatics, 29(1-4), 149-152","title":"comments on analytical psychotherapy","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9179,"y":-0.024,"year":"1978"},{"authors":"fierz, hk","cluster":594,"id":918,"label":"fierz (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychotherapy and psychosomatics, 25(1-6), 287-288","title":"what is psychotherapy - comment","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.8764,"y":-0.1205,"year":"1975"},{"authors":"frank, jd","cluster":595,"id":919,"label":"frank (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychotherapy and psychosomatics, 25(1-6), 288-290","title":"what is psychotherapy - comment","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3293,"y":-0.8323,"year":"1975"},{"authors":"freides, d","cluster":150,"id":920,"label":"freides (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychological bulletin, 82(6), 948-948","title":"human information-processing + sensory modality - cross-modal functions, information complexity, memory, and deficit - reply","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.0978,"y":-0.9628,"year":"1975"},{"authors":"payne, ec","cluster":596,"id":921,"label":"payne (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychosomatic medicine, 37(6), 548-549","title":"questions and answers on death and dying - kublerross,e","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8555,"y":-0.4393,"year":"1975"},{"authors":"sifneos, pe","cluster":597,"id":922,"label":"sifneos (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychotherapy and psychosomatics, 25(1-6), 290-291","title":"what is psychotherapy - comment","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.3543,"y":-1.0208,"year":"1975"},{"authors":"vaglum, p","cluster":598,"id":923,"label":"vaglum (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"psychotherapy and psychosomatics, 25(1-6), 291-293","title":"what is psychotherapy - comment","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6659,"y":0.3668,"year":"1975"},{"authors":"alf, ef; abrahams, nm","cluster":599,"id":924,"label":"alf (1973)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1973,"source":"psychological bulletin, 80(1), 86-87","title":"random-sampling assumption in comment on component-randomization tests - reply","url":"http://dx.doi.org/10.1037/h0034622","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3892,"y":0.6996,"year":"1973"},{"authors":"heim, j","cluster":600,"id":925,"label":"heim (1973)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1973,"source":"psychological review, 80(3), 235-236","title":"comment on johnson,rc - reanalysis of meaningfulness and verbal-learning","url":"http://dx.doi.org/10.1037/h0034289","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1852,"y":-0.4341,"year":"1973"},{"authors":"biederma, gb","cluster":601,"id":926,"label":"biederma (1972)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1972,"source":"psychological review, 79(2), 178","title":"continuity theory revisited - reply to berch db","url":"http://dx.doi.org/10.1037/h0032271","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6652,"y":0.6971,"year":"1972"},{"authors":"diamant, jj","cluster":602,"id":927,"label":"diamant (1972)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1972,"source":"psychotherapy and psychosomatics, 20(5), 294","title":"some methodological comments to assessment of hostility on level of molar behavior in course of psychosomatic treatment of functional disorders","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.1233,"y":1.0773,"year":"1972"},{"authors":"hebb, do","cluster":603,"id":928,"label":"hebb (1972)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1972,"source":"psychological review, 79(4), 368","title":"possible test of hebbs hypothesis concerning imagery - reply","url":"http://dx.doi.org/10.1037/h0020297","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.607,"y":0.187,"year":"1972"},{"authors":"moore, dj","cluster":604,"id":929,"label":"moore (1972)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1972,"source":"psychological review, 79(3), 280","title":"toward a theory of early infantile autism - reply","url":"http://dx.doi.org/10.1037/h0020295","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0643,"y":-0.8193,"year":"1972"},{"authors":"anderson, nh","cluster":605,"id":930,"label":"anderson (1971)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1971,"source":"psychological review, 78(5), 458","title":"exchange of functional and conjoint measurement - reply","url":"http://dx.doi.org/10.1037/h0020291","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6769,"y":0.4304,"year":"1971"},{"authors":"brogden, he","cluster":606,"id":931,"label":"brogden (1971)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1971,"source":"psychological bulletin, 75(5), 362","title":"further comments on interpretation of factors","url":"http://dx.doi.org/10.1037/h0030874","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.894,"y":-0.4903,"year":"1971"},{"authors":"weitzman, b","cluster":13,"id":932,"label":"weitzman (1971)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1971,"source":"psychological review, 78(4), 352","title":"behavioristic conception of neurosis - reply to wolpe","url":"http://dx.doi.org/10.1037/h0031129","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.422,"y":-0.3236,"year":"1971"},{"authors":"turner, c; mackinto, nj","cluster":607,"id":933,"label":"turner (1970)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1970,"source":"psychological review, 77(6), 577","title":"continuity theory revisited - comments on wolford and bower","url":"http://dx.doi.org/10.1037/h0029969","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.9604,"y":0.0293,"year":"1970"},{"authors":"reid, l","cluster":608,"id":934,"label":"reid (1967)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1967,"source":"psychological bulletin, 67(3), 226","title":"comment on grubo psychology","url":"http://dx.doi.org/10.1037/h0024284","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.187,"y":0.2609,"year":"1967"},{"authors":"malmo, rb","cluster":609,"id":935,"label":"malmo (1965)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1965,"source":"psychological review, 72(3), 240-241","title":"comment on the exchange of theoretical notes between smith and black and lang","url":"http://dx.doi.org/10.1037/h0021828","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8698,"y":0.2995,"year":"1965"},{"authors":"murstein, bi","cluster":610,"id":936,"label":"murstein (1961)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1961,"source":"psychological bulletin, 58(1), 87-88","title":"a note on projection - comment","url":"http://dx.doi.org/10.1037/h0045364","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.7945,"y":0.7277,"year":"1961"},{"authors":"pearson, js; kley, ib","cluster":611,"id":937,"label":"pearson (1958)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1958,"source":"psychological bulletin, 55(6), 433-435","title":"discontinuity and correlation - a reply to eysenck","url":"http://dx.doi.org/10.1037/h0043343","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":0.7139,"y":0.1726,"year":"1958"},{"authors":"ellingson, rj","cluster":612,"id":938,"label":"ellingson (1957)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1957,"source":"psychological bulletin, 54(4), 360-360","title":"sleep, wakefulness, and consciousness - comment","url":"http://dx.doi.org/10.1037/h0047844","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5806,"y":0.0341,"year":"1957"},{"authors":"karson, s; sells, sb","cluster":613,"id":939,"label":"karson (1956)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1956,"source":"psychological bulletin, 53(4), 335-337","title":"comments on meehl and rosen paper","url":"http://dx.doi.org/10.1037/h0042049","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":1.0182,"y":0.0071,"year":"1956"},{"authors":"abelson, rp","cluster":614,"id":940,"label":"abelson (1954)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1954,"source":"psychological review, 61(4), 276-278","title":"learning and the principle of inverse probability - critical comment","url":"http://dx.doi.org/10.1037/h0063544","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.9151,"y":-0.1454,"year":"1954"},{"authors":"johnson, hm","cluster":615,"id":941,"label":"johnson (1951)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1951,"source":"psychological bulletin, 48(1), 77-78","title":"ryan work and effort - a reply","url":"http://dx.doi.org/10.1037/h0051828","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":1.0014,"y":0.3882,"year":"1951"},{"authors":"jones, fn","cluster":616,"id":942,"label":"jones (1950)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1950,"source":"psychological review, 57(3), 138-139","title":"color vision and factor analysis - some comments on cohen comments","url":"http://dx.doi.org/10.1037/h0056400","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.0191,"y":0.7778,"year":"1950"},{"authors":"snyder, wu","cluster":617,"id":943,"label":"snyder (1948)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1948,"source":"psychological bulletin, 45(4), 346-347","title":"suggestibility and narcosis - a reply to eysenck","url":"http://dx.doi.org/10.1037/h0057840","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.6113,"y":-0.5017,"year":"1948"},{"authors":"howells, th","cluster":618,"id":944,"label":"howells (1946)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1946,"source":"psychological review, 53(5), 302-305","title":"the hereditary differential in learning - a reply to pattie,f.a.","url":"http://dx.doi.org/10.1037/h0061003","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.9222,"y":-0.4165,"year":"1946"},{"authors":"lerner, e","cluster":619,"id":945,"label":"lerner (1945)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1945,"source":"psychological review, 52(1), 52-54","title":"a reply to wyatt and teuber","url":"http://dx.doi.org/10.1037/h0053495","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.5434,"y":0.7087,"year":"1945"},{"authors":"dearborn, wf","cluster":620,"id":946,"label":"dearborn (1942)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1942,"source":"psychological bulletin, 39(4), 250-253","title":"reply to howard v. meredith's review","url":"http://dx.doi.org/10.1037/h0050663","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.2171,"y":0.2058,"year":"1942"},{"authors":"meredith, hv","cluster":621,"id":947,"label":"meredith (1942)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1942,"source":"psychological bulletin, 39(4), 254-254","title":"a note on professor dearborn's reply","url":"http://dx.doi.org/10.1037/h0053297","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-1.0111,"y":-0.0115,"year":"1942"},{"authors":"speer, gs","cluster":622,"id":948,"label":"speer (1940)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1940,"source":"psychological review, 31, 693-698","title":"the problem of pseudo-feeblemindedness a reply","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.3954,"y":0.2513,"year":"1940"},{"authors":"wellman, bl; dulsky, sg","cluster":623,"id":949,"label":"wellman (1940)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1940,"source":"psychological review, 31, 641-652","title":"a functional concept of intelligence - comments on our changing concept of intelligence","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.8782,"y":0.6204,"year":"1940"},{"authors":"foley, jp","cluster":86,"id":950,"label":"foley (1939)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1939,"source":"psychological bulletin, 36(4), 286-287","title":"a reply to lanier's note on 'motor speed and tempo","url":"http://dx.doi.org/10.1037/h0060523","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.5982,"y":0.0595,"year":"1939"},{"authors":"achilles, ps","cluster":624,"id":951,"label":"achilles (1938)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1938,"source":"psychological bulletin, 35(8), 548-551","title":"a reply to dr. doob's comments concerning the psychological corporation","url":"http://dx.doi.org/10.1037/h0057360","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.17,"y":-0.9972,"year":"1938"},{"authors":"hollingshead, l; barton, jw","cluster":625,"id":952,"label":"hollingshead (1932)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1932,"source":"psychological review, 39, 492-497","title":"the adrenal cortex and emotion: a reply","url":"http://dx.doi.org/10.1037/h0071231","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":-0.5897,"y":0.4738,"year":"1932"},{"authors":"calkins, mw","cluster":626,"id":953,"label":"calkins (1929)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1929,"source":"psychological review, 36, 348-352","title":"analysis chemical or psychological? - a comment on raymond wheeler's the action consciousness","url":"http://dx.doi.org/10.1037/h0070661","weightCitations":0,"weightLinks":0,"weightNormcitations":0.0,"x":0.6166,"y":0.2491,"year":"1929"},{"authors":"campbell, cm","cluster":0,"id":954,"label":"campbell (1922)","scoreCitations":1,"scoreNormcitations":1922.0,"scorePubyear":0,"url":"depression","weightCitations":627,"weightLinks":0,"weightNormcitations":0.0},{"authors":"calkins, mw","cluster":628,"id":955,"label":"calkins (1918)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1918,"source":"psychological review, 25(2), 168-169","title":"miss calkins's case of self against soul - reply","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":-0.9589,"y":-0.0399,"year":"1918"},{"authors":"[anonymous]","cluster":629,"id":956,"label":"[anonymous] (1917)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1917,"source":"psychological review, 24(2), 159-173","title":"discussion - a new method of heterochromatic photometry - a reply to dr. johnson","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":1.0181,"y":-0.3443,"year":"1917"},{"authors":"langfeld, hs","cluster":630,"id":957,"label":"langfeld (1914)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1914,"source":"psychological review, 21(6), 492-492","title":"the inhibitory factor in voluntary movement. reply.","url":"http://dx.doi.org/10.1037/h0063936","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":-0.8536,"y":-0.291,"year":"1914"},{"authors":"baldwin, jm","cluster":631,"id":958,"label":"baldwin (1909)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1909,"source":"psychological review, 16(6), 431-436","title":"darwinism and logic - a reply to professor creighton","url":"http://dx.doi.org/10.1037/h0068339","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":-0.6682,"y":-0.3201,"year":"1909"},{"authors":"baldwin, jm","cluster":632,"id":959,"label":"baldwin (1907)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1907,"source":"psychological review, 14(4), 297-298","title":"experience, habit and attention - comment on professor moore's paper","url":"http://dx.doi.org/10.1037/h0065257","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":0.9285,"y":-0.0884,"year":"1907"},{"authors":"jones, gl","cluster":633,"id":960,"label":"jones (1904)","scoreCitations":0,"scoreNormcitations":1.0,"scorePubyear":1904,"source":"psychological bulletin, 1(3), 79-82","title":"comments on religious psychology","weightCitations":0,"weightLinks":0,"weightNormcitations":1.0,"x":-0.8396,"y":0.6743,"year":"1904"},{"authors":"bem, sl","cluster":7,"id":961,"label":"bem (1974)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1974,"source":"journal of consulting and clinical psychology, 42(2), 155-162","title":"measurement of psychological androgyny","url":"http://dx.doi.org/10.1037/h0036215","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.1913,"y":0.9805,"year":"1974"},{"authors":"bem, sl","cluster":7,"id":962,"label":"bem (1979)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1979,"source":"journal of personality and social psychology, 37(6), 1047-1054","title":"theory and measurement of androgyny - reply","url":"http://dx.doi.org/10.1037/0022-3514.37.6.1047","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":-0.2304,"y":1.0096,"year":"1979"},{"authors":"jones, wh; chernovetz, meo; hansson, ro","cluster":7,"id":963,"label":"jones (1978)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1978,"source":"journal of consulting and clinical psychology, 46(2), 298-313","title":"enigma of androgyny - differential implications for males and females","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":-0.2383,"y":0.9935,"year":"1978"},{"authors":"eisenberger, r; cameron, j","cluster":24,"id":964,"label":"eisenberger (1996)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1996,"source":"american psychologist, 51(11), 1153-1166","title":"detrimental effects of reward - reality or myth?","url":"http://dx.doi.org/10.1037/0003-066x.51.11.1153","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.7784,"y":0.5822,"year":"1996"},{"authors":"vicente, kj; wang, jh","cluster":27,"id":965,"label":"vicente (1998)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1998,"source":"psychological review, 105(1), 33-57","title":"an ecological theory of expertise effects in memory recall","url":"http://dx.doi.org/10.1037//0033-295x.105.1.33","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.9283,"y":0.1274,"year":"1998"},{"authors":"archer, j","cluster":8,"id":966,"label":"archer (2000)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2000,"source":"psychological bulletin, 126(5), 651-680","title":"sex differences in aggression between heterosexual partners: a meta-analytic review","url":"http://dx.doi.org/10.1037//0033-2909.126.5.651","weightCitations":0,"weightLinks":5,"weightNormcitations":0.0,"x":0.3259,"y":-0.0262,"year":"2000"},{"authors":"roberts, bw; delvecchio, wf","cluster":11,"id":967,"label":"roberts (2000)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2000,"source":"psychological bulletin, 126(1), 3-25","title":"the rank-order consistency of personality traits from childhood to old age: a quantitative review of longitudinal studies","url":"http://dx.doi.org/10.1037/0033-2909.126.1.3","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.5068,"y":-0.0432,"year":"2000"},{"authors":"lashley, ks","cluster":162,"id":968,"label":"lashley (1930)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1930,"source":"psychological review, 37, 1-24","title":"basic neural mechanisms in behavior","url":"http://dx.doi.org/10.1037/h0074134","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.2702,"y":0.1289,"year":"1930"},{"authors":"seidenberg, ms; mcclelland, jl","cluster":5,"id":969,"label":"seidenberg (1989)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1989,"source":"psychological review, 96(4), 523-568","title":"a distributed, developmental model of word recognition and naming","url":"http://dx.doi.org/10.1037/0033-295x.96.4.523","weightCitations":0,"weightLinks":9,"weightNormcitations":0.0,"x":-0.5696,"y":-0.1335,"year":"1989"},{"authors":"oyserman, d","cluster":14,"id":970,"label":"oyserman (1993)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1993,"source":"journal of personality and social psychology, 65(5), 993-1009","title":"the lens of personhood - viewing the self and others in a multicultural society","url":"http://dx.doi.org/10.1037/0022-3514.65.5.993","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.2166,"y":-0.1724,"year":"1993"},{"authors":"oyserman, d; coon, hm; kemmelmeier, m","cluster":14,"id":971,"label":"oyserman (2002)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2002,"source":"psychological bulletin, 128(1), 3-72","title":"rethinking individualism and collectivism: evaluation of theoretical assumptions and meta-analyses","url":"http://dx.doi.org/10.1037//0033-2909.128.1.3","weightCitations":0,"weightLinks":6,"weightNormcitations":0.0,"x":0.2489,"y":-0.1536,"year":"2002"},{"authors":"ackerman, pl; beier, me; boyle, mo","cluster":25,"id":972,"label":"ackerman (2002)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2002,"source":"journal of experimental psychology-general, 131(4), 567-589","title":"individual differences in working memory within a nomological network of cognitive and perceptual speed abilities","url":"http://dx.doi.org/10.1037//0096-3445.131.4.567","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.2516,"y":-0.576,"year":"2002"},{"authors":"ackerman, pl; beier, me; boyle, mo","cluster":25,"id":973,"label":"ackerman (2005)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2005,"source":"psychological bulletin, 131(1), 30-60","title":"working memory and intelligence: the same or different constructs?","url":"http://dx.doi.org/10.1037/0033-2909.131.1.30","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.2662,"y":-0.5567,"year":"2005"},{"authors":"brandstatter, e; gigerenzer, g; hertwig, r","cluster":2,"id":974,"label":"brandstatter (2006)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2006,"source":"psychological review, 113(2), 409-432","title":"the priority heuristic: making choices without trade-offs","url":"http://dx.doi.org/10.1037/0033-295x.113.2.409","weightCitations":0,"weightLinks":7,"weightNormcitations":0.0,"x":-0.3498,"y":-0.0872,"year":"2006"},{"authors":"garner, dm; garfinkel, pe","cluster":61,"id":975,"label":"garner (1979)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1979,"source":"psychological medicine, 9(2), 273-279","title":"eating attitudes test - index of the symptoms of anorexia-nervosa","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.5052,"y":-0.1915,"year":"1979"},{"authors":"trafimow, d","cluster":19,"id":976,"label":"trafimow (2003)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2003,"source":"psychological review, 110(3), 526-535","title":"hypothesis testing and theory evaluation at the boundaries: surprising insights from bayes's theorem","url":"http://dx.doi.org/10.1037/0033-295x.110.3.526","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.3784,"y":0.8805,"year":"2003"},{"authors":"nisbett, re; wilson, td","cluster":9,"id":977,"label":"nisbett (1977)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1977,"source":"psychological review, 84(3), 231-259","title":"telling more than we can know - verbal reports on mental processes","url":"http://dx.doi.org/10.1037/0033-295x.84.3.231","weightCitations":0,"weightLinks":9,"weightNormcitations":0.0,"x":0.2555,"y":-0.2956,"year":"1977"},{"authors":"cross, se; madson, l","cluster":7,"id":978,"label":"cross (1997)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1997,"source":"psychological bulletin, 122(1), 5-37","title":"models of the self: self-construals and gender","url":"http://dx.doi.org/10.1037/0033-2909.122.1.5","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.1468,"y":0.9679,"year":"1997"},{"authors":"dell, gs","cluster":3,"id":979,"label":"dell (1988)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1988,"source":"journal of memory and language, 27(2), 124-142","title":"the retrieval of phonological forms in production - tests of predictions from a connectionist model","url":"http://dx.doi.org/10.1016/0749-596x(88)90070-8","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.7017,"y":-0.1878,"year":"1988"},{"authors":"dell, gs","cluster":3,"id":980,"label":"dell (1986)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1986,"source":"psychological review, 93(3), 283-321","title":"a spreading-activation theory of retrieval in sentence production","url":"http://dx.doi.org/10.1037//0033-295x.93.3.283","weightCitations":0,"weightLinks":9,"weightNormcitations":0.0,"x":-0.6873,"y":-0.1299,"year":"1986"},{"authors":"levelt, wjm; schriefers, h; vorberg, d; meyer, as; pechmann, t; havinga, j","cluster":3,"id":981,"label":"levelt (1991)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1991,"source":"psychological review, 98(1), 122-142","title":"the time course of lexical access in speech production - a study of picture naming","url":"http://dx.doi.org/10.1037//0033-295x.98.1.122","weightCitations":0,"weightLinks":4,"weightNormcitations":0.0,"x":-0.6855,"y":-0.1569,"year":"1991"},{"authors":"smallwood, jonathan; schooler, jonathan w.","cluster":6,"id":982,"label":"smallwood (2006)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2006,"source":"psychological bulletin, 132(6), 946-958","title":"the restless mind","url":"http://dx.doi.org/10.1037/0033-2909.132.6.946","weightCitations":0,"weightLinks":6,"weightNormcitations":0.0,"x":-0.1559,"y":0.6035,"year":"2006"},{"authors":"watkins, edward r.","cluster":6,"id":983,"label":"watkins (2008)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2008,"source":"psychological bulletin, 134(2), 163-206","title":"constructive and unconstructive repetitive thought","url":"http://dx.doi.org/10.1037/0033-2909.134.2.163","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":-0.1743,"y":0.555,"year":"2008"},{"authors":"coyne, jc","cluster":11,"id":984,"label":"coyne (1976)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1976,"source":"psychiatry-interpersonal and biological processes, 39(1), 28-40","title":"toward an interactional description of depression","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":0.5331,"y":-0.0721,"year":"1976"},{"authors":"coyne, jc; whiffen, ve","cluster":11,"id":985,"label":"coyne (1995)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1995,"source":"psychological bulletin, 118(3), 358-378","title":"issues in personality as diathesis for depression - the case of sociotropy-dependency and autonomy-self-criticism","url":"http://dx.doi.org/10.1037//0033-2909.118.3.358","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":0.552,"y":-0.0598,"year":"1995"},{"authors":"lane, h","cluster":60,"id":986,"label":"lane (1965)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1965,"source":"psychological review, 72(4), 275-309","title":"the motor theory of speech-perception - a critical-review","url":"http://dx.doi.org/10.1037/h0021986","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.0923,"y":-0.0923,"year":"1965"},{"authors":"haidt, j","cluster":34,"id":987,"label":"haidt (2001)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2001,"source":"psychological review, 108(4), 814-834","title":"the emotional dog and its rational tail: a social intuitionist approach to moral judgment","url":"http://dx.doi.org/10.1037//0033-295x.108.4.814","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.1863,"y":-0.3669,"year":"2001"},{"authors":"gray-little, b; hafdahl, ar","cluster":8,"id":988,"label":"gray-little (2000)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":2000,"source":"psychological bulletin, 126(1), 26-54","title":"factors influencing racial comparisons of self-esteem: a quantitative review","url":"http://dx.doi.org/10.1037//0033-2909.126.1.26","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.2951,"y":-0.0855,"year":"2000"},{"authors":"caplan, d; waters, gs","cluster":5,"id":989,"label":"caplan (1999)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1999,"source":"behavioral and brain sciences, 22(1), 77","title":"verbal working memory and sentence comprehension","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":-0.5951,"y":-0.2004,"year":"1999"},{"authors":"tversky, a; koehler, dj","cluster":1,"id":990,"label":"tversky (1994)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1994,"source":"psychological review, 101(4), 547-567","title":"support theory - a nonextensional representation of subjective-probability","url":"http://dx.doi.org/10.1037/0033-295x.101.4.547","weightCitations":0,"weightLinks":3,"weightNormcitations":0.0,"x":0.4747,"y":-0.6833,"year":"1994"},{"authors":"tversky, a; kahneman, d","cluster":1,"id":991,"label":"tversky (1983)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1983,"source":"psychological review, 90(4), 293-315","title":"extensional versus intuitive reasoning - the conjunction fallacy in probability judgment","url":"http://dx.doi.org/10.1037/0033-295x.90.4.293","weightCitations":0,"weightLinks":6,"weightNormcitations":0.0,"x":0.5007,"y":-0.6503,"year":"1983"},{"authors":"brown, gw; harris, t; copeland, jr","cluster":35,"id":992,"label":"brown (1977)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1977,"source":"british journal of psychiatry, 130(jan), 1-18","title":"depression and loss","url":"http://dx.doi.org/10.1192/bjp.130.1.1","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.4001,"y":0.5416,"year":"1977"},{"authors":"brown, gw; ni bhrolchain, m; harris, t","cluster":35,"id":993,"label":"brown (1975)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1975,"source":"sociology-the journal of the british sociological association, 9(2), 225-254","title":"social-class and psychiatric disturbance among women in an urban population","url":"http://dx.doi.org/10.1177/003803857500900203","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.398,"y":0.554,"year":"1975"},{"authors":"russell, ja; carroll, jm","cluster":36,"id":994,"label":"russell (1999)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1999,"source":"psychological bulletin, 125(1), 3-30","title":"on the bipolarity of positive and negative affect","url":"http://dx.doi.org/10.1037//0033-2909.125.1.3","weightCitations":0,"weightLinks":2,"weightNormcitations":0.0,"x":0.8273,"y":-0.4163,"year":"1999"},{"authors":"russell, ja","cluster":163,"id":995,"label":"russell (1994)","scoreCitations":0,"scoreNormcitations":0.0,"scorePubyear":1994,"source":"psychological bulletin, 115(1), 102-141","title":"is there universal recognition of emotion from facial expression - a review of the cross-cultural studies","url":"http://dx.doi.org/10.1037/0033-2909.115.1.102","weightCitations":0,"weightLinks":1,"weightNormcitations":0.0,"x":-0.2013,"y":0.8023,"year":"1994"}] ,
"links": [{"source":2,"target":995},{"source":3,"target":144},{"source":3,"target":211},{"source":3,"target":969},{"source":3,"target":980},{"source":3,"target":989},{"source":4,"target":287},{"source":4,"target":477},{"source":4,"target":990},{"source":4,"target":991},{"source":5,"target":58},{"source":5,"target":88},{"source":5,"target":252},{"source":5,"target":292},{"source":5,"target":407},{"source":5,"target":510},{"source":5,"target":560},{"source":5,"target":969},{"source":7,"target":485},{"source":7,"target":486},{"source":7,"target":971},{"source":7,"target":988},{"source":9,"target":383},{"source":9,"target":972},{"source":9,"target":973},{"source":10,"target":986},{"source":11,"target":977},{"source":12,"target":60},{"source":12,"target":115},{"source":12,"target":276},{"source":12,"target":969},{"source":12,"target":979},{"source":12,"target":980},{"source":12,"target":981},{"source":13,"target":178},{"source":13,"target":978},{"source":16,"target":52},{"source":16,"target":352},{"source":16,"target":375},{"source":16,"target":379},{"source":16,"target":982},{"source":16,"target":983},{"source":17,"target":46},{"source":17,"target":971},{"source":18,"target":46},{"source":18,"target":971},{"source":18,"target":977},{"source":19,"target":307},{"source":19,"target":967},{"source":19,"target":984},{"source":19,"target":985},{"source":20,"target":383},{"source":20,"target":973},{"source":22,"target":992},{"source":22,"target":993},{"source":24,"target":67},{"source":24,"target":323},{"source":24,"target":987},{"source":25,"target":113},{"source":25,"target":225},{"source":25,"target":326},{"source":25,"target":502},{"source":26,"target":77},{"source":26,"target":994},{"source":27,"target":36},{"source":27,"target":501},{"source":27,"target":964},{"source":28,"target":35},{"source":28,"target":503},{"source":28,"target":504},{"source":29,"target":509},{"source":30,"target":505},{"source":31,"target":46},{"source":31,"target":971},{"source":32,"target":124},{"source":32,"target":506},{"source":34,"target":103},{"source":34,"target":507},{"source":34,"target":508},{"source":35,"target":503},{"source":36,"target":74},{"source":36,"target":501},{"source":36,"target":964},{"source":37,"target":42},{"source":37,"target":961},{"source":37,"target":962},{"source":37,"target":963},{"source":38,"target":239},{"source":38,"target":965},{"source":39,"target":175},{"source":39,"target":510},{"source":40,"target":94},{"source":40,"target":966},{"source":41,"target":967},{"source":42,"target":962},{"source":42,"target":963},{"source":43,"target":46},{"source":43,"target":971},{"source":44,"target":968},{"source":45,"target":969},{"source":46,"target":970},{"source":46,"target":971},{"source":47,"target":529},{"source":47,"target":991},{"source":48,"target":88},{"source":48,"target":974},{"source":49,"target":975},{"source":50,"target":271},{"source":50,"target":562},{"source":50,"target":878},{"source":50,"target":976},{"source":51,"target":119},{"source":51,"target":170},{"source":51,"target":256},{"source":52,"target":352},{"source":52,"target":982},{"source":54,"target":385},{"source":56,"target":672},{"source":57,"target":353},{"source":57,"target":716},{"source":58,"target":974},{"source":60,"target":63},{"source":60,"target":979},{"source":60,"target":980},{"source":60,"target":981},{"source":61,"target":234},{"source":61,"target":321},{"source":62,"target":104},{"source":63,"target":255},{"source":63,"target":980},{"source":63,"target":981},{"source":64,"target":233},{"source":65,"target":474},{"source":66,"target":100},{"source":67,"target":977},{"source":67,"target":987},{"source":68,"target":253},{"source":69,"target":891},{"source":70,"target":505},{"source":71,"target":272},{"source":71,"target":484},{"source":72,"target":240},{"source":73,"target":624},{"source":74,"target":501},{"source":74,"target":964},{"source":76,"target":508},{"source":77,"target":994},{"source":79,"target":327},{"source":80,"target":121},{"source":81,"target":398},{"source":86,"target":95},{"source":87,"target":393},{"source":88,"target":104},{"source":88,"target":251},{"source":88,"target":974},{"source":90,"target":98},{"source":92,"target":130},{"source":94,"target":101},{"source":94,"target":109},{"source":94,"target":966},{"source":96,"target":232},{"source":96,"target":969},{"source":97,"target":337},{"source":100,"target":149},{"source":100,"target":454},{"source":101,"target":966},{"source":103,"target":508},{"source":104,"target":974},{"source":105,"target":240},{"source":107,"target":124},{"source":107,"target":506},{"source":108,"target":275},{"source":109,"target":966},{"source":111,"target":285},{"source":111,"target":980},{"source":112,"target":114},{"source":112,"target":209},{"source":113,"target":225},{"source":113,"target":326},{"source":113,"target":502},{"source":114,"target":158},{"source":114,"target":209},{"source":115,"target":276},{"source":115,"target":979},{"source":115,"target":980},{"source":116,"target":168},{"source":117,"target":203},{"source":117,"target":213},{"source":117,"target":226},{"source":118,"target":384},{"source":119,"target":991},{"source":120,"target":546},{"source":123,"target":357},{"source":124,"target":257},{"source":124,"target":506},{"source":125,"target":528},{"source":126,"target":185},{"source":127,"target":384},{"source":128,"target":239},{"source":128,"target":965},{"source":132,"target":180},{"source":134,"target":154},{"source":141,"target":304},{"source":141,"target":969},{"source":142,"target":166},{"source":143,"target":209},{"source":144,"target":211},{"source":144,"target":969},{"source":144,"target":989},{"source":147,"target":285},{"source":152,"target":419},{"source":153,"target":444},{"source":154,"target":234},{"source":154,"target":468},{"source":156,"target":421},{"source":159,"target":168},{"source":163,"target":471},{"source":164,"target":207},{"source":164,"target":303},{"source":165,"target":248},{"source":167,"target":624},{"source":169,"target":527},{"source":171,"target":408},{"source":174,"target":466},{"source":177,"target":408},{"source":177,"target":977},{"source":178,"target":212},{"source":178,"target":978},{"source":183,"target":402},{"source":184,"target":237},{"source":184,"target":305},{"source":187,"target":381},{"source":195,"target":480},{"source":196,"target":224},{"source":197,"target":481},{"source":198,"target":273},{"source":198,"target":287},{"source":199,"target":337},{"source":200,"target":575},{"source":201,"target":969},{"source":202,"target":377},{"source":203,"target":213},{"source":205,"target":328},{"source":207,"target":283},{"source":207,"target":303},{"source":208,"target":471},{"source":209,"target":274},{"source":209,"target":572},{"source":212,"target":961},{"source":212,"target":978},{"source":213,"target":226},{"source":219,"target":400},{"source":220,"target":718},{"source":221,"target":445},{"source":223,"target":509},{"source":223,"target":621},{"source":224,"target":322},{"source":224,"target":423},{"source":225,"target":326},{"source":225,"target":502},{"source":230,"target":350},{"source":230,"target":351},{"source":231,"target":604},{"source":233,"target":376},{"source":234,"target":468},{"source":236,"target":618},{"source":238,"target":384},{"source":238,"target":624},{"source":239,"target":965},{"source":241,"target":980},{"source":244,"target":433},{"source":247,"target":522},{"source":248,"target":249},{"source":250,"target":567},{"source":251,"target":974},{"source":252,"target":358},{"source":252,"target":874},{"source":254,"target":384},{"source":254,"target":624},{"source":255,"target":969},{"source":255,"target":980},{"source":257,"target":506},{"source":258,"target":310},{"source":259,"target":528},{"source":262,"target":390},{"source":267,"target":397},{"source":268,"target":555},{"source":269,"target":950},{"source":270,"target":523},{"source":271,"target":878},{"source":271,"target":976},{"source":272,"target":425},{"source":273,"target":287},{"source":276,"target":980},{"source":276,"target":981},{"source":277,"target":579},{"source":282,"target":590},{"source":283,"target":303},{"source":284,"target":302},{"source":284,"target":603},{"source":284,"target":710},{"source":284,"target":974},{"source":285,"target":380},{"source":285,"target":478},{"source":286,"target":526},{"source":289,"target":337},{"source":290,"target":891},{"source":292,"target":407},{"source":296,"target":454},{"source":301,"target":709},{"source":302,"target":974},{"source":306,"target":450},{"source":307,"target":985},{"source":309,"target":891},{"source":314,"target":430},{"source":315,"target":394},{"source":318,"target":418},{"source":321,"target":468},{"source":323,"target":987},{"source":324,"target":426},{"source":325,"target":577},{"source":326,"target":502},{"source":333,"target":354},{"source":334,"target":852},{"source":335,"target":618},{"source":336,"target":337},{"source":337,"target":573},{"source":338,"target":575},{"source":344,"target":638},{"source":346,"target":460},{"source":346,"target":932},{"source":352,"target":375},{"source":352,"target":982},{"source":353,"target":716},{"source":354,"target":982},{"source":355,"target":523},{"source":358,"target":727},{"source":359,"target":447},{"source":360,"target":487},{"source":366,"target":494},{"source":367,"target":459},{"source":372,"target":647},{"source":374,"target":977},{"source":375,"target":982},{"source":377,"target":404},{"source":377,"target":470},{"source":377,"target":664},{"source":378,"target":475},{"source":379,"target":982},{"source":379,"target":983},{"source":380,"target":478},{"source":382,"target":525},{"source":383,"target":973},{"source":386,"target":427},{"source":399,"target":517},{"source":400,"target":967},{"source":401,"target":825},{"source":403,"target":473},{"source":405,"target":861},{"source":406,"target":425},{"source":408,"target":977},{"source":415,"target":495},{"source":420,"target":442},{"source":422,"target":479},{"source":424,"target":623},{"source":435,"target":437},{"source":438,"target":543},{"source":441,"target":775},{"source":443,"target":564},{"source":446,"target":867},{"source":448,"target":571},{"source":452,"target":453},{"source":452,"target":626},{"source":455,"target":675},{"source":456,"target":534},{"source":456,"target":578},{"source":458,"target":681},{"source":460,"target":544},{"source":466,"target":646},{"source":467,"target":518},{"source":468,"target":509},{"source":469,"target":608},{"source":470,"target":664},{"source":476,"target":477},{"source":482,"target":877},{"source":484,"target":735},{"source":485,"target":486},{"source":485,"target":988},{"source":486,"target":966},{"source":486,"target":988},{"source":491,"target":961},{"source":493,"target":581},{"source":498,"target":679},{"source":500,"target":641},{"source":505,"target":659},{"source":508,"target":789},{"source":509,"target":519},{"source":509,"target":621},{"source":510,"target":544},{"source":511,"target":760},{"source":519,"target":663},{"source":519,"target":977},{"source":520,"target":608},{"source":521,"target":612},{"source":522,"target":977},{"source":524,"target":668},{"source":526,"target":622},{"source":527,"target":574},{"source":534,"target":578},{"source":535,"target":580},{"source":543,"target":587},{"source":551,"target":552},{"source":552,"target":593},{"source":556,"target":595},{"source":558,"target":799},{"source":562,"target":831},{"source":563,"target":612},{"source":566,"target":617},{"source":567,"target":619},{"source":584,"target":586},{"source":596,"target":652},{"source":597,"target":700},{"source":598,"target":804},{"source":601,"target":705},{"source":601,"target":990},{"source":601,"target":991},{"source":602,"target":708},{"source":603,"target":710},{"source":607,"target":714},{"source":608,"target":609},{"source":610,"target":611},{"source":613,"target":718},{"source":615,"target":850},{"source":616,"target":723},{"source":630,"target":676},{"source":632,"target":914},{"source":642,"target":684},{"source":653,"target":705},{"source":653,"target":991},{"source":655,"target":656},{"source":657,"target":823},{"source":658,"target":713},{"source":659,"target":825},{"source":670,"target":726},{"source":671,"target":729},{"source":698,"target":699},{"source":701,"target":796},{"source":702,"target":799},{"source":704,"target":805},{"source":705,"target":990},{"source":705,"target":991},{"source":707,"target":813},{"source":723,"target":983},{"source":725,"target":864},{"source":741,"target":977},{"source":749,"target":910},{"source":754,"target":920},{"source":761,"target":763},{"source":878,"target":976}] }
�PNG

IHDR���D iCCPicmH��WTSI�WR -)�7Az���`#$B !T�袂k VtD�����({� ����*�$tݿ���3o�w��;߽o��YA&�@?O�ÌOHd�����@���xGD�(�����M�H�k��X�������@" N�䲳 >��� t@���<���XU @$Kp� kIp� [Km�#}!��Le���(H�3�٩0��bk>�LJx7��4b1����!V�Bl��]�Կ�L��b��aY.R!��r����g9��de�F�Ї��& ��� �V��"��;��O �X�<��^�黎�bF��ٹ��f�����B ��D���l�J}�=�� �����ȑ�h>?3,t$Ί4n�(������I�C Wz� -:N�m��ņA�qGnFTȈ�Â4߰Q�(R���)€H� ���;�f�fI�R��+/-:H��ss�CG9p�~�2�ˏ����9�[$Ȍ��vr3#euƎ��G��v��&��(�59B�{'ȋ��q�q
|�`l� �^{]?|���T��#�Q�8�>�@�".���rA>��ʞ� E:�/��O ��5q� �O/�lqg�eԏ�8:+џ�G "��x�!�L؄��ot!����$\��9|�GxB�$<"� � w@,x,�2b5�W(��9Lb-`$�d�o�7��p���q� ,q{��7� ss����Ƹ}���IX�ψ^�\�a�E�ؗ���1��w5��>�GKlv k��b��F�0�3X=ֆ��ౕ�X�Fg��rˀqx�6�U�}֟�1;k��P��AwN�dC�f �
y�iyLo�G�2��l� L[kG$�w��� C��F���r�p)���o:�'�@�Mg�n����`���2.y(�t�0�9�G���?� �A4H3a��@d=�K@(k�&� �{A8 ��:�΂ �
�7�=�6z� 0ށ!AH �#�.b�X ��3��#�H$��$!�!�H �ن�A*�_���Y�҉�A��>�5� �P*��j���D��FC�ht����2t5�-G���Y�
z�/�A `���,1g� ��L�-Ċ�R���෾���~�#N��8���3���x�_�o�+�Z���w��W��E� �� �T�lB����p�p�^�;"�� ����L ��Wwk�M�Nbq�D"i�,H�p��G*"m%"�!u�zI��d]�-9��H� ɥ����.�S򐜒����\�Gn���}r rW�z�(��;%��NYB�B����ܧ����חw��*ϓ_,�E���E�n��T�9՗:�*����6Q�P��h4c�-��G[M����=�}P�+X)+p)�)�*t)�T�S4R�V��X�X�xL�b�������Ki�R��I�[J��te�p�,�U��/)?S!����pT���U9��C��t_:�����~�ޫJT5Q VMW-Q=�ڮ:���f��6G�L픚��1���L��Q�MƧq���qǭW=�k�{���^�\�b���4���4�4h��S5gk��<��?^u��x����G���B�̵"��i��j�����ho�>�ݯ����I�٨sZ�O�����ݨ{F�9S����dna�0����Dz{�����M�c� �k�P � R 64 �N1�oXex�H���(�h�Q��{c�8���u��L�M�M
L�L��L=MsL�M��͜�2�v�u����i�e�W-P G ���� � .��'ܲ�Zz[�[VYv[1�B�
��^N4��8q��։_��3��Y߳Q��lSh�`���ܖm[f{ݎf`�Ȯ��=�~��m�����_���Վ}N�NIN۝n9�:G8�r��Bp�qY�������5����_n�nnݞM2�ĝ�oR���;�}��؃���C����,�|�e���������;����Kk�� ����� |��0�@�b�v��m��R��6�B���
�fWLv��`rK5$*d[ȣP�Pah�t��)��3
�Յ���� �"L"r"~�J�1�l�H�����Q��YQ��E�D���c#�i�U��[�>�/n}�8~b���+ � ���DRbl����i��6M��0�h��&3�̸4Ssf��S�g�fK"$�%L��
g������'�}ٛ�/8^���>�;w=�i�{���g��R��<�J��y��m�W�A���g�g�Όˬ�"g%e���3�-�:�s�;�"�8�5gS΀0D�?ɝ�[��
�:m"S�O��|�����cg��<�?�m��ܕs��2�Ǟ�<_o���� ��Y�,L^ؼ�`ѲE��W,�,�X�{�u��·K�6,�^�xY�O�?U) �n-w[�k����}��ʭ+�s�/�X���|^�^u�g����<�:eu��5;�����\繮b�����=�l����X����Y�.�ڗ��L�,�,���~��ֵ[?oK�v�̧�f�����������鵳z����]�v�v�����ܸ�t/qo��'�b�����K�~��%���WDV�T:UV�:��
�U��~�����j��=5���#�����_�~�y4�h�1�c�Ǎ�o?A?Q\��έ�K��'�w��|������oV�h�k,;�vj�i��e����l4��M=��<��޹�s�[����9�B��s�ޭg.�_l��z��e��uW�Զ9���������W���w�t4tN�<���u��ߵ ׃�_�v��f��۷�����~v'�Ϋ��w��-�O�_�@�A�C�����Q#v����n{��^�����ǟ{�=�=)}������ƾ����Ӟ����/�S���/M_��믶����W�WïW��xs���������� �/�������Oq����L���ٗ��!_�g  XB��(��������xv��8����%Dvg�"��&xr9�@�bB�e'lFSa/9~G{��n��Hn���,�b���h@j��pxxh���}���rd�>����]���� �,lX�1@bKGD������� pHYs%%IR$��IDATx���y��y~�w��#�;�κP����3C�px�#j(2֢(�^S��ϕDʻ�e�k�\k6��:h{-S!� �+��I[�E�&W�)QCJ3��@��������?���Q@��PՍ�+�����|�)��O���A��������'�y� """"""�"(�������KAXDDDDDD^
�""""""�RP������������EDDDDD䥠,""""""/`y)(�������KAXDDDDDD^
�""""""�RP������������EDDDDD䥠,""""""/`y)(�������KAXDDDDDD^
�""""""�RP������������EDDDDD䥠,""""""/`y)(�������KAXDDDDDD^
�""""""�RP������������EDDDDD䥠,""""""/`y)(�������KAXDDDDDD^
�""""""�RP������������EDDDDD䥠,""""""/��/@DD�C�pz`�K�i�������,""?�[_�7 �����o�S��?�� �� 8��@n�/�k�46���������|���PDDD. ���ȋ��᣼��؂���ïa�˞M{���~��7ǥ�""""Q ���<���uX�2 ZP\��~� �"0 ��߇�w�����5 ��߄~�����EDD�Q��kЂ��?��� ���w�.���;��G�o �� �}��p��`�p8�u]f��I�k��q�k���F���EDD�R�����~�o�7+6�\��W��ӯ�/S�����'B��y�b1�� ��e�e�k0��}@�Ca��~�"""r)�����>��q�n�0 �wa���.����h4²,l�&�H���I&���q��!�n�|�[0V�����|0`'��?N�,���_����\(
�""���h�sf���9����#�L�N���bX��a��}���8::"�HP,�A���x���?�� �2|�O|�OQ=>&f�
���1�O>`y~�$�f7����|�Q��I$��K6��0 ��*����F#
��J�~�2�?�����nC" �#X��N���]<�cee���ILSKDDDD{�ED�y�� ���O����h@�A��'~�#/ǝw��u]��q|�'�˱��H�R!����F�����+��y�ŶmF�!�{d�Y���q'�Y��{�"""/;�K_�җ��"DD�����������l9|�u����ߎe��b1z��z�N���8��qb�����v9>>fww� ����zt��~�+���a�C��y,..����v�T�UF��LF!XDD�%��% ""υ�lmm�������\�v���7����a��쮮�J�h�۸�����R�D"A�ߧ��2�t:4 \ץ\.sxxH�٤�h0 (�Jd�YZ��f���I^y����988`8���B&�Q_����KJ%�""��y����&���d�Y^{�5����� ��7�[�n��f���djj���٨��}F��v���U����,�|>�i�4�M���Y\\��ի�Z-��*��Ӽ��X���8lnn���G*��ҥK��e�`���N�ED��}���]vvv�m���E��8�벺�N����}��z� h�Z,..r���eʖe�J�p�0���bii ۶i�Z��}� ��鰱�����Z-z��D�����$�.]"�J������&�l�����?��7��a�:�|$ �} EDD�9Q�g&����4MVVV����0 � ��l������r9*�
SSSܿ���-fff���?�a)�p8dnn���L�dnn�u�V��J%��2�N�^�G����͛�N����d�Y���H$�Ľ�����Я���9x�G�� ����V����s�,""�DT�U��� ����e���1 ��h���!��� �Cl�fjj**S6M�[�n��[o�N�)�J�cQ���d2���G+��f۶����ڵk��}��*��.�^��p��4�ML�dff�ٙi����+?�`0����v���b��"""�i1���<�F���5\�e~~�J��[�nq��}ǡT*111A"��4M,��ڵk,..�l6y��7�v��z=vvv�T*������ �J�m��4M2� KKK\�|�b�H�X�ҥKLMM�H$H��X���K���k���p����� �w��v����s�,""Y��duu�D�r����w��Ν;��}�������\.�� ��@"���^cjj���nݺ�p8doo�^�G�\fjj���.��R(0M�v� @&�!�ɐL��{4�8u��.46�������s�h�`�|w|bjZx����.�n���)��2kkkT�U� `bb�J��eY4�M��dtz�������������븮���$�I0 �q�}�u�F�z=�������F8��p8��n��vi���T�R� �,�I�G2p� ��y�ey�ED����d���
�� ��ʷb�򇙛�D��w���q��"sss�E,ˢ�n�X �V��`0 ���yAP(XYY�w���ݻ��yfgg988���h4��<|�g�q��븮�aQYu�T��}L�dzz�l6K̎�g
���������$8 �a�u��q�w[DDD�`y:�߀���`��`�X�@��x�sܽ{�d2���
�r۶�}��p�u���O��fss�F��h4�>�`8R��I$�F�(ܚ�I,öm��8�x���yfgg�υ!����cYV4�˾r�����p|o�Z��(8��k��?�'�[����Ǐ���<Y���� �� �q�����_(]����W��0�[y���Z�qh�Z��v1 �f���8Q�n��.�X�t:��y �\��x<�eYQ��FLMM133��e��e����}�6�t�q�ò^���y�� ��?~3�����P��y�myN�ED��n��Wޟ�2 �=������g!�յU|ߏJ��`;H&�Q��󬬬�L&��b�����*A������1�j�Z�6��HDO����p?���.���`�a��y2��x/��5��+�n�N��>u8����|(��ȓ�v��s�Ԩq�ՠ_'�$�ˑH$�R��N���U���(�˸�K2�dvv6*Y��ݥ�n���v����|��_gss�t:�k���eY��k�Lӌiy�G��dww�F�A,�\.������,,,����m۴Z-������J%6ﭑɤYZZ�v ����'����<Yv�� �A�2����q M�R
��4�mG�m�&�L�J���bQ�t�wvv0 ���yR��d�W^y���z�{��N��|���7�}?� ������I àZ��ǣ�g�����v�V�������n��hH�R�����|�(��ȓ;󟃻��qrr�a���O���n�i4�A"� �ˑ���v�Ѵg˲H$��m��d����h_���$�a���H����w��֭[��i����{��u��ܤ���8�R���)Z�Q�>::�����Ib��~� ���$��Q�� 
�"""�P
�""�d� ��O��a�~c���}������l��<�k׮�y�V�v����1GGG�z=��.�T� ��Ѓ��Z�F�Z%�J����9ض�իW��zlll��;���H�R\�U:��i�`zz�L&���6GGG��y�\�B,����j�h4��e��.�e�J�0 �\.G�Z�J�EDD�GXDD���w�?����w�،��w�k���`��]��.�N���e�\�Mq�t:lnn��vi�Z �C:��n���UF������G�:<� �F�b1,��r΃R?�ǷS�Έ�w��h4����ҥK$�I���Y]]���t:M��Ƕ���r��i�n����"""��bA��E����H�7��`�t�mvv�i�Zd�Y��>sssT*�h@���:���,//�H$���c}}��h@*��R�P(�f�d�Y��$�ea�&��3 I�`��U���;`š��]g�[X]]#����p�������;�0��������L&�k��F,�q�~�m<��S��ԉ��"""�ɠ`�` �$�p���7 �LMME=� ���E��fii�B��eY�ߛ��J�����j5
����x�����0�\.G<'�L259����~�g�_�e
�݇�������嫟�|��L&���bss���]|�'�JE�g�6�\���z������'��DD�C�m�x,�`0 ����H�ߧ�jq��e*�
�V�۷o����p8�0�h
�m��n�K�.��o��o��믳���������w��}�n���܀����^d�`�Â��O�Kb��� �Z���$ Z����d�R�pOp�Z��"""�(��ȇbY�r�0h4LOO3;;K�V������%�]��eY����������3��b�E,�"�S(���%��cY�X���i&&'a�mhl��� 0��z�g^s:��\.3��F�R�_�f�ضM������"""�ZDD>�B����C��� �H$XXX �ɰ������q�Z���y���G�°��>�F���]��x�k׮111A:�w8.y>�xC�3��0 J�R���a�x�l6K��e8�:�KDDD>�t,""Z"��X,�8NXWVV�UD�j�L&�ի�x��7���+ �C�ܹC��%�ϓH$���t:�ݻ��۷i�ZLLL����i�lnnR��a�*$ �)!8� ��c�9��8AP��xp�m���yǡ�����gLXDD>4�4)��A�^�u]2� +++�`;��>1��d�ח'��<ϵ��)�J�r9� `gg�w�y':��r8����kkk����&�� �����W��48�{���������ň���j5���r9 à�j�E """�,*����P(�N��t:t:��"�B�7^#n��w��{��xe�aaV���w�$��>�͛7988�N^��xt� ����i��"�b�|��e��o�O0h&��;����h��eO���~4�9�J19>>&��`0�N$t:\�=�JIDDD>��ED�# W����h4��t:�����:��tOk��&�?�7X��*��ݣ���d�AX�|�b�H>�'�LF������
|��ơڌ�ܧ�X�����*���: Q� y�G��%�1;;���GGGLOOG�b��\���c������'�J�ED�# KٶM�^g4���܁���q�5��pe��m�ퟣ�2Y\\"��!�L�7np��ufggI��'�o(�d4�����+&����v�N��;����Ӡ��ϱX���
��^�����I.���}���y�^y��ED�#��r�R)z���ã��B���E����s;��٫2W�Dk�z�����z�'��W��o�C6���۫W�2;;K������~d�U���qR��d���)L����0�I�˲h�Z��޷WDDD�`��b��R �������6�.Q���|��il:�fnn���)����u��������8���l�
����*�r���C�~�m�A��^������r�T"����v��j��%�IR��v��uI"""��,""كeЍF��ȁ��,���7 _��d�)�4YYY����A�ݻwY]]���?�y611����J.�c{{�;w��.�����1M�L&�����4Qصm�\.�h4zdJ����||)���3��d�d2��}Z�L\�O�s`���(����+8�<��#��!�~�0�T*ܸq�b����>�oߦZ�>R����Ӟ �`nn��ׯ�ǹw����8�C��Ŷm��t���r�l6K�ӡ^�G��hR����'����<a�����u|ӆ��7�;�<d������.��e����V�S�Vi6���t��\.�+�����2���;w�q�O�u]� 8uH�i�,//s��nݺ������lj������q����}���\� ����h����DDD��Mk�DD�)�J����l6��3�����G�zo�g^��W��)�Mi�Z4 n޼���"�����q��rlll���M��fii�b���V �2�+W�0 X[[��͛�r9���MNNrpp@�բ�l211A"� ����v�F������|�X_�җ�t�!""� �eE��2� �lvz 0�i�k4��e�ml�&��3�v�A@�ӡ�ja�&�d�L&C�T"j��Z �0���177���ĩ�c�6�B�n�K�Ze0������[���8�^A@�\Ʋ,��z�\.� ����ǗJ�ED䙱m;
��z��)΍Z�;�ަ�^�m�3�|�|>��m��ܽ{�;w�P�׉�b�����+���Y[[cgg���~X&���W_%��������;QJ �S䩩)R��F�V���!�A��z�Z&���ED�*���qZ�։D�T
�� % L�$�J��+�p��e��$�j�۷oGӠ'&&�q���� �C��a���q2� �b�D"���.���#�<�J111��8��>�L�D"A��Q����'����<S�d�B��p8��h��Z*�:5P&�IL�d0`Y������,..b���ܼy���mL���ի�����>;;;ܿ�~��)�`0�V%�h2��o���$�I��:�N�X,F.����=�EDD��GXDD�)˲(�J��H�m�Q)�2�LbY��0:�M�R,//��k�1==�h4b}}�[�nq||L<'�J�J�888�֭[��K��z��������
�����'�/�NS.���2h���IDD�@XDD��B�@2���n��v�ϛ�I6���}:�N��X,F<�qF�щ����\�v�W^y%��s�;;;�����
+++�F#�ܹ������ ��z�x��իWYYYa8��[oQ��N<_8��V������rX�E��zb�����\l
�""��%
����2�l6�i�'��-�"�L�yީ�Ɩe199ɫ����˗I$�)r�V�X,�ꫯ�����������Dg����zX�E:�&��ꫯ���@����7�<ҳ�,�R)�2�L&I�R��m�9�[+"""����<s�iR*��,�z�~"8�}�J�4I$g�P<�R�p�� ��"AD�ϝN����v����loo������ض �J�R���kLMMqpp��o��[���� �X�j���8�r9F�щ�,"""?
�""�\��yR��n�Dp ����~�J&��x`��V�A*�"�͒J�(� �C���X]]%�Ns���ܺu�^�G*�"�E�S(x�7(
lll�� ���)
�z=������A�>`��9`y.��8�B�u�rdx���}�� �:�����K<������+��yZ���ݣV�1;;����f����S�MNN��믓L&�{�.kkkA�������m��h��Z�$""�1�,""υa���Sˠ��,�e��t����`�ȎއA��8�A<grr�7n���B"���舍� `��Z����J�׋¸a���s�� ���͛�����|>O�ۥ���f�v�'�t����Nj���<7�l�t:M��?Q>|�>�X,�mیF�'�:�D:�3??�k�����<{{{�j5��$�\����G�%����\��p8��7ߤV��Ř������D"��8'N�EDD��EXDD��x<N�Tz� :��Qp8 �����
A�a�}�0 ��4+++ܸq�R��h4b4ES���!w��=�.ɶm^y����h6��d�R�D.����i��Z���(����ť,""�U�X$��l6��a�4��r'��\�����A��ض}"�LӤP(0;;K�P �N3 �v���I��KJ&��������ppp�[o����4A��v�,K}�"""c�y_���|�e�Y��,�f�f����4�\�D�i�$�I� x� p��������pH<gii�L&����^�0�}�z�N�ߧR�077G6��S������M��4W�^%��D�����N�������se�6�R� ���'�^%��}�d֓x�G���0
�‰��0�A@��amm�;w��n�)��|�S�"�Jq��]vww���$��?Y�DDD>��ED�{� :<ݵm�\.w�8�H`��SO�6M��S`��S�T*p�?xzz�x<����h
���4���:�ir��M�!�N��~����IDDD.`y���tv[�0X��f�}?�N$�$���ن%бX��<�F$ ��d���?����\�~�R�D*�"��*�o�����LOOs��u��!w���0 L��qZ��'U����ţ,""ϝeY��e� �V�E���l�4�>����?�����.�t˲N�����e��$�^�{��q��M��"KKK��m�������v��������!X""�B
��v��`@&�y�8��L&i4O�
83�z=|�?3�?�H$XXX�\.�������f�����&SSS��e���q]�R�Dyb�x<q޷TDDD> `y!R��B���C��:�L&�>::�����I$O���>A������t:��k3 �L&���
���FA���N�I$�����믓��=蹐��T U���\t
�""�B��I�X���F����,�m��f988���P(H&����p8��#=,��Y=���~���5f�Y&''���f�V����%>��7��~�� �߀���|����q����6����c(��� �v�M��#�ϟ����UH���N/� 8�C*�"���m���)
����U�v�:�ݯ��� hl���ޅ��0h�w�Y����\`�[ZDD^�D"A�P�q���>�D"�eY ���N�������c`=��?xqq�O�����ӿ�^���A�0��a؆��M����-��P��4M��2�iR��q�}��m�H$p]��IО��x��� ���A@:�>���0 �X����a����C��0���7������c(��� ���H�Rt�]���#���UH��9�q|�Ƕ���<�n��m�d2�gw� �w�׃��y�^y `y���8�R �u���������6@��:�O�8�~?
��Lz&��_=rA>��0u��n����<�����P�aP,�,�z��h4z�8�= �}������`��z֙��ܿ�2��8����->�'a��"""��-""/\.�#����th�ZLLL���`>mt8�W��L&�`���W��Ӈ��k����t>�c���g��a��gNXDD^�X,F�X��l�h4���<��\.�X���N�|8��`��>�^�0H�RgN���� `o��|�Ob�|T�Ӆ�k��>1�C6�=��+"""gP �����R�D,��h0O��+�<�c4zt��Y=�������,����jlllptt��P\����?L͞e���]666N�^��ED�\d2��,�~�f�y�8��$��9 x��q��X� ��v�������|�q� ��`�V����,�m����ؾe9?
�""r.lۦT*�z�4�}��`��V!y��a��A��z���V$}P�ш��u��>������_'M���t:����S(��ȹ)��b1��&����>�D"�a�N����>އO�{����d>r�}���mj�333��͝�S�b��K:�faa���}Z��y�^y������t:M>�g8�l6�>�0������8�e�&�t�#]W���G�P`qq�̉ҙL�q���R�D�\fkkK��"""�����˲�2�Z�F,#�JE%Ŗe1���~>�n4��f����&�x��������q��8�N�&���S?�����,""�X,�L&i�Z8�C6�e0�.�x�uO��A�`0��,�����F#��!�x�# ��������y����r��~�eY�R)��n�9۶�,""r)��ȹJ&���yF��V+�����N�����pV:�>�\�I\�ecc�v����<���O�s�l6z�Ѓ���v��o�����,""��4MJ��aP��I&�X�E��%�=qR���������ﳳ�������T*�G�l�%���.�����K��RI��"""������B�@2���n��>�d�n��m���p8$`|�i�ŀ�T�~���`���C6��ҥK�c?�X,F"����C�aDAzggG��"""�LXDD�]<�X,�8�N�l6�p8���htX���>���4�`����zض��p��f}}˲XYY!�J}��ou��(���~�v�M�Z=�[-""�RS�s�A��I�� �H��>��>�
��~��h4"�H���4��!kkk�F#���(
�5<��a�L�J���ޞ��EDDΑ���\�\.��l�m31M�Ğ]�00 ���>8˶��~N����ܤ�l277����#�����4����;11�~`�s�,""B<�T*�n4���c�6��G�� �J�ð��� ��L&�ԃ�� `���J� zz4�����0�����?`� àX,bY�N'��<���}��q�({�G�ۍ��>�z����&�T�K�.}���=�8�~`��,""F.�#��D'��a�8�#��C�����vY__`yy�l6�L���}�S?�����Q� #�Q,�<�q0 ��1 ��$�a��}�!�J=���h���:�^���E&&&����}��~���EDD·���\(�R�X,F��Dz,<�#�h-�ˠc��i��v�<�T*��^����١V�133����zu�x<N2�<�8�~`��,""J&�!���.��GC�F���A�)��~�s����������Y\\�@���i���i:�Ι}�!�����x
�""r�ضM�T�zi��pi����'��6�M666��b����L&���g�Y��c��C�y��ED��)
�b�����h�U�0 \�e0��;��ﳾ���,//���۵���S��Y�,""��(��ȅ�N������o�G�����I$�Ik*�:���u]677i�����355�\�=��H$��R?���ȋ�,""�eY�N�O������1M�~��뺤��S`�����.���LNN2??��>�g����,""�b(��ȅT,I$Ap"���|ߧ��a�t��i����loo��fY^^~�5I����XDD��S� )�L���1M3�����aA@��ö�S`��m6660M�K�.=qHֳ�?س�4�,""�|)��ȅd�&�r�X,���x���8�����u]b��#���!��� ���(�/���kz�>����EDD�/`����<�T*��<��v���o����,����ڢ�h077���̩���S�^��~`��GXDD.�D"A�T¶m<�c8F��~�`A�������J%O��"�r9���|��U?�����,""�a'�a9���8�`��5�h4���$�Lr��%����]{*�"����y����<{
�""r��r9��,�e1�����n�`�z=����}�K�.��f���m��P}�!����<{
�""r����h��8 ��(��q��㰾�N��cqq�r�|ޗ����C�y��ED�B3 �r�L:��u�h��������������)���0͋���G��XDD�ٱ?�C���<_�L��� �$_�cYV�|||����|������[����?R?����n���m�\�r���"""gF�a�DDD^� �F�ļ>.��&�S���ptxȕ�W)
�}�'������I��������F�c-..^�Sn�����6���� � �?���w��e61&�ç���_drr�d2yޗ��4�d2t:|��H�5�������*�t�����~y""";
�""r��7�����!,\� ��&��R����a��U�*��r||���t9��277����T��']���|ܨ~JDD.6߃���q���z�Æ~~������3�'��~��<����|^��EDD>`�؆-������ç�� �M�����3�b����a�iR�T����~`�@XDD.6o4>�=�����2 �L&C��}fa5�n6���K��P��-���e x��/�l6�p8�u�g��a?�:]��S� �u]j�C����dq|���\�^X�����
��{��3}\����|0
�""r�x�G�Z��ݻ���OM_���? ���� �X^�g����}ُ��H�R��϶T[��"""�A��FDD��<�V������011�������|�߆ݯ�c��,7=�ؖI"�8��X���4�M�]�������鰺���ܜ����<����ȹ�}�v����>��r�����x���Ϧ�?������p������~�:�e���9S6�����q�yX�~`���,""���}:���}J����$�����3ⷿ�[��mb���d2�����y*�ʙ?{���i�����i����n���-�\���ɹ���D�,""/T|���Y__'�q��UH&�� ������ A�i�ѩ���.�f�_ޙl�&�J=����y2`y!� ��뱱������r�
��ˤ��:��<��1M�X,��e����m���y��S���{��s ��,""�x
�""�\A@��gss��w��yW�\�ҥKd2�T�<���X,�eY��;����΅=� �;��\�C��EDDN�,""�E ����{�.�шK�.q��e��쇚����7��yމ��v�����y��S=��<i?������ED�
���h���w�ܡ�����ȕ+W(
i�h4�N| � ���N������y����g��m���s�6�����NS�ED����a���܆d�?�E0 � �u]��*�j۶YXX�P(<��D��D�Ɓ��<\�%�H�8��|>���W�\�N�/�0�f�4 <�{�k��~���U�������,""Ok����!l�p�`�0�*|�_�?B��akk �0����X,F���0۶�a���m����`0`rr���=VVV ������x�V#�r9p��-�~`��T-""O�څ�����_�a |��| ~�/��W�����\�v����g~� �q�h�aQ�jS��T�j����,�F�Z�v�w�x<�m�Ͻ8�~`��)��ȓ�� X�����0�0�����o��D�����Vr��>��˲�� �, ۶q�~�����V �q���egg煅ͧ��?��~� ������`y��{�߇������y�!3<O|�>`�4I&�4 r��\���]
��l���m\�=���-{��y/�9�XDDdLXDD�,����%�����z��p8Ķm,ˊN�}�'�L���v� �C*�
�^�Z����<�ш��� s��"����sss�����v������ `y���Czx(@�1X��qH~�|���� �������q��B�b���� T�UZ��y�I����&&&��rlmm���-""rQ(��ȓ-/|�O��
|�= ��?��S�C?'��D=�0��Na������A�� *�
�ш��C
����loo3��nF��E�*6M���y|�W?������ED���|�_�����Aq *�
�� ~�?'��<�K�FAM�N&�Q��r��T�����)�����������%��������z;�}�/�8���u����KGXDD�N���g��������%��?C#ȱ���܃\x�H$�!X�i�h4"�L��d�2h�0�T*A���>�i���@�������&�l��ht.��r����ED䥤,""O�0!U�|2�V�~�����s?M|�ڶ�h��y��O�X�Ӡ�!��055E�Z���N����g���?,�G������� ����7� ^�i������ED�#���&�ϳ���\�:9��aض ���(�hBt�X$�����v����� �i��������e��"����:�E�~؋�����o�s��9~��?��������കZ"""/����|$�m�����ϭ�6�l�ftlY�DO��d2��tT �N�����V��l61 ���9�s��d���/�8�<��� �����������<���+��;��O�����������h��(���G��f�T*T�U���3� �FX��Q?p ,�z� ƧԉD���}<�#����@�^�^���};�>�����׸�����`���eXئ�m�t����������5����KXDD>2�0����P(<�Rh��q˲����~6 ��p�?X~���,�F#:��r��β��M��?��v�}������������2,�Vd��I����C��WR����EXDD� ۶Y\\��<vvv�iY���� p,#|�?�
i0�yީe�0y�L���]\�`jj�L&���ֹ�!�wp�y��u\�=�k��}����� ""//`yf��,���?Ӟ�{�Òg�u��b�b1\��qb�ةeбX���9:�Ntma��F�K?p�8 ���Y�O$'�M�ԯ�ffIY�s}�""��Q�g�0 ���)
lnn>��ްG�4Mlێ�ꃃ�<�c0O>� �T*�����ۋ3�L�������V�߳l6��8��z������<����� ~���e���H؉�~�""�Q�g*,������gRZ�.ADS�ÞR�4I$QI�p8�)=� ڶm*�
��������B��� �����xQ��8�x��ˠCϪ�j�*?�-?�R~ /�p}�w�Ʋ���?���x�/UDD^B�G��2� ���lllptt����Gz<�q�۶��b�A�A"���; �at�ٌʠ�R�B�@�Tb�r�L*���xu�]vvv�t�҉a[ϓeY�R�s�
���ݻ������'�X=-�0��K?�bn����M���E>?�y�g�{H�*�OXDD�����l���M.�#��|��s��O����AX��E��MӤX,����A�}��i277ǭ[�8<<dii �0���{��Q�V���~a�+��rxx��'�<���xuu�t:����z�0yc� n�n�.�ec�s���ӣ>�3�%
����7��""�\<�R�׶�G�����I�pv4�{]'''9<<<��)�NS�T���{�%əL���?x��E?��q��}7x��7�:z�����_������U~�7~��s���s��Z.��R��&,���j'zn?�p�a��' ,k�F�Q�Ϛ �ꙙ���O i����P(<ӝ�Or���CϢx41 >T���������__�uv;��������g�g��w ?�������,""�MX
],����P'�A�y�#�Ba_0�'A?x�z�4h����i��*�v��5W*� xf;q������~�~�O<���Co�/��E�5�af�a�=��/��E����� BXDD���Z
���cK�M�$�LFA9\��/�ùm�������>��^������f�����au?p��S��=j�V�- �x�χar�?�N�� �w""r�(���s�QJ�� �u] Èz}ð �BN�B�ǗA�R)fgg���4��_��r��̰��M��!��q����i|�~����L&�������=�D;/���DD��OXDD���R
�� 0p"�M�W!=X���2h���)�������NOO��d��>�lj��$� ��0��aI����X���
~�?R���gY�-�۽��CXDD^�[
�Ұ8�`�냓��UH�ǕA�8xV*Z��#_{`��!ϵز,��4�n���P�?<8�,���.�������e���?�dj2
�A�>?t�x}���""r(��� ��dXXX�@�����`Y�u"��8�
�\ ����l����G��L&�������İ������~�Z��T�у�۶��,��i��|��w�S��)^-�J:�&a%�JM�_����O�v�o���\��o$����ЭV���mr��L�?�� =<P)�2�8���.�x<�z�Xdww7*�qȶm*�
w�ܡZ�277w���b�n����׮];���R:��ʆ���̓���d�t:}����}b��s��y{{{4�M�\�\�>;�Y����s{\�_�r�¯��Dt,""/�eY,,,������N�q��4�m���[˲N �zp4<� �!�X,����� *�0���ŶmvvvN�X?K�X�B�~���4�l�����`@<�N�%�u��ڢ^����H2����T�����-�!nL�P���ED� K���:�����'u]� �2�ӄ����Xا)��,���Y��!����|ݶmh��T���r_.zp(�v]�����I����u��� ��.�/_&�ϟ����6����;��7`9SSS��evvvΜ
��
$�0��% p�"�UBO� P((������z&��R������Ni/zp(�H<��y��`�����p�ʕGJ��7A��)���|�)��ȹK� �8��6 3���Ǖ�>�
i0<��� �4M����<�̓�r�L>�g{{���}�t�u/�>��������7 ����4�Y��z���b�/_>u�R�g��P����R�s�B7�S���x�wb�Y^��𚥧)��� ����������I�R���3�?�x<N2���}������ ��jV��auu�d2���ʙ������������KXDD���J��h�4�p
{�C�D"
[����ا)�^�����ީ��ǣ�Y�A��I:����|�p�6�����ͭ�����t��~�']�i���~����h4���R(X^^~�Z���yM���7�A�s�Bߺu+Z3�������`j�6�X��p�?\~�A7�M��#�B�T���ivww����P(<�=a�����T���f�Y��&��~�R� ���7�����x��m��%i%���w�g>�g�Z����a?����L�R��`0�&3XAP�����fzz����'N��� �ED�T:�swV)��yA���'J�O U�e�L&��?���iˠ�}��x����GʩCSSS��i������#�N���d����������i����ǃc~������T��g:����N�q>қApxx���6sssѩ����J�ED�4
�""r!�V
�8Nt�೦A������
)�4e�0�5;;K��8sh�eY���G���U?p,#�H|�>����u����M,��4�e�ab&_��
���[��O����3 >t�����YXX`jj�mX��2iyy)��ȅ��Th��p�0�@��aQ�m8 ��@�4ӠC�����i����\K�L&������v��L�Ň���5�E��� ��7�^��gǰi�,,,�8�N�C�P���������K�.111�Ns5KDDGXDD.��K����� �.���O`��e�0v577G�ݦV���}�b��� ����F��^d�Y���lb����>e&�/��q&'' � �q��ؠ�j���rj������$"""
�""r�<X
]�ףݾO��>��V!��� ������{f� 'G۶���Ω���
����S�L�Np�|۴99��2�1��G��' ��b�����#���2�X[[c0p�����z�ph�����FXDD.˲X\\�4M����Ӽ� �a��h4:���A۶����~�j����[XX��ns||���C,#�L~�S�?|����ߎ�чx��-��;����'�U�TN�|�~������z��G���`9����\8�t���yF��v��O�-ˊa=n��)�(
�J%���{"��d���coo�'�O�w�ݧ��<�r���|���Ͽ�ϳ�[��,s�p��S�:����-��w���<�c4��dN���N�����I$���D��K'�""�8�(""R�\&��R�V�d2��p��A�4M��$�F�k�,��v�g��q�����֭[���xf������鰵��իW?�4�\.G�^�q�'C�������,.-]�/�_�xpLs�d"5A1Q���������⇹���y$�I�������r���6�M677������?��;�?��$y��o����,�e�n� 5��>r�h�&�D�0��?��f�f�OU �0:99����~���3M���y<�{����H�R�D���}���m��n�2(a'�d+ܘ��tz����h<�����ض�a��~�8j�����e��ڢ��Z'�""r`��“�����!�z=�Zg�
pgN��q�n�X�0��*�6M���Y� `���6<���jO��b����}�ggg�v����
�t���3 �����3�Q>K��'��8��omm�8�j���-fgg�T*����u�h������ED�B
�k.�#�L���O���0 ������>5�<�*��� ����i����8�*��1==����cO��4MJ�1;v�׃ ����Z�����'''�I����������$����4��u,,,�.7o�dww����3�O��=Z���Cڣ6~���YC�DD�,�� ����l�r�<5�Air� �� ��N2�|d�Y��t�L&C�^��h<��?E=>>f�l6{��aLOO��v�������O5��at�.�~��� �`ft}xx���2�\��\.�h4���eee噞���N�˲��blll���311񡟧6��w�����e�zG�e������+?J&��He�""�ɦ,""�h4����W�^�;����Ի.��O�\�N1��E'~�m�Ţ5H�шD"q�s�eЍF#*���b���T*��6�MJ�ҙ�kY���ܻw���Cfgg?��dg������������SN������W�(Y#K��`qq���A�iR�T�w��Z����g�; ���C�\�ekk��hč7h�Z�z�3˵�5l��������.�a�����_g���_��_`&3�`9����\H�:�x<���4�!|�~�f��^�zס��<s�qȵ,�D"A�ۍa=�t��2� �SSS���G>���n*�baa���M2� �|��^���7�����7�{� �k����y��.����\�r;���*O����̰��G6�%�L>�ߙ�y�b��G�8�Õ+WH$������͕+W>��������گ�>������������~���C������'�z�ED�Br�0(
$�i��vi�~�O�=��t8��pRx���UH�~��N��q�����f��p���E��2��یF��z���}�������7�2-L��2-<����Ƨ±x�C�tNNN�L&������h������y�#ả��8��$ׯ]'��n��w�2����4M�arr2* � ��.�V�v�}�G�����q� ����m&��7���a�ȉ��K@'�""r!�=��xǃZ{����6�a@�껴{.�B|��I�� ~Ї)��qo���!���
����a�����v���ayy�����w�{4� ,�z�ހ���]���?B�ե��G�����np~��4���>������}���#���������o�v�T����,d������R��������ܺu���]��4�iF� ݎ��.�R�˯\f�>~%T����.����#""���""r�'��D�/�����x�Oa�'���?���ÔA�b1*�
w����������~�m�,..r��}������:�{����w�� �N��;./>88�&_�AҲ,lێz���/|�`rr2�%~�t9���a`��#���1&���/� 7����i�j�U���E>��9���0M��c���p�Wx���`�q��r�0���$ �v���2�#ojA�i��V~ED�L�BDD.��в,��t�D�d蜱��2I'���*���I��N��J%��<{{{�J�3�m�2� sss���E�y�0Y�/b֩A/ `9�L�J�R�B�0~#�S��P�� ��c������̜�ڃ�9 �����_����y:N�0�S���o�s_�9��/�gTr�An��F#��~t�� �L&)�J$�I�D�aY�e��?ȯ��:���x�w����?��/�O���|�(��ȅ�X,F��!�ɱ4���f��7�r�\������8�e�8N�W��aˠ-ˢR����rtt����fbb�N� �:kE������ު��H�[�-��+?̠7�J�}ߧR���f��ݰW�q���O�H&�����l6I�R'J�>M�,�r�L���76~���}���0 ,,n��+�_�G�~��7o�8��m�4�P���7J�KKKX���A���u~��?�_��_�n�.����1��[�<s�9��3�%""�,
�""rᘦ���,�|���cZ��S����>#�'b�I����J�|?0Y�E<g0De���y؇)�(
��e���x�����<w��eoo����ao0pxx�������������; �! +���U��g��s���o�>���d�Y��*�v���YfffH$��4�\����R��Y^^���<M�=,O�}�:{�G�=j�8��ǥ�m�L&��b'B�a��y����v��]+�n�i�Z|���p�x�7�ޤ:�2���[��������� ������ED�±L������n�KX��pc1�l)A����M9�s��~",eY�d�f��A?ɇ-�6M���Y��:Q�|�x<���"kkkd�YJ�A�j��w����LOO��o�,���S�~�uv;�L�����gX�.������>���u�f�lnnr||L�Rarr���f��l~~>
����]���}�0��}
���fۦM>��'�G�r9������&�L��&B��ecc�r�<�e��P�V��7� �����džhy�Y_�җ�t�!""�=���� ��7�����_���0�����P��)�-�������zj ÈN � ��>1К��p8��lO��6�3�8::�X,�y����A����L���c�ܹ���!�n�Z�F��%��sc����<7&o`�L:��������Z�s�+�z�^���I�<ܹ�'?���`�i��A܊S����W��䀫�g1�ȿ�ƿ�dj���0 ��4�n�F�A�P81%{0Do,,,�:A��������yLMM=��@DD^>
�""r��|�޿�o��B��ۇÛ�؄+?�,�v�۷oc�B���}r�\Ի������A@*��T*=1����1��P,���6��|tt��y�ŧz�t:M�^guu�z�N�Ӊ� �R)b����4� :��r��`���.�J���2� ��������p�r�ף^��8�d��i�J$�F#j��b񉫚�rKT�UV����8��3���'>�|��w1����0��t���#\�%��a�ш��5��x�#|�x<N�Z��鰸�xfo������ED���=���b|lX`|��چ�W`��Q�\\\����j����8�Z� �m����':˲h6��^ܧ-���ɫ�R(�8:��&GGG2��}��h�eYLNNF������LLL�Ũ��Q�l>�grr�x<�0��a�6���j�h6��xE�Y!�0 R��j���f�g�j4X���.}/��YR�S�)���=�ķ�`��������t���L�m�D"����D�X,���:�.]z�`�p����>���O5�LDD^>
�""rq ;�j�`�ҼL�W~�0i�Zt:���(
`�&�l����l���O<�(eІa�L&9>>f8R*�� ܮ벷������e�R�ۉ� lۦ������r\�t�x<�Z�F�T�~MLLP.��}�v�M��'b��i2�h4�c&�SíeY�b1����f���7 �޽��y�N����|a� �����˅e:����t�]��6�D�T*�ē�Db��ioo�V��뺬��<� O���ebb�t:�l�L���'���BDD�1M�t ���-�$���y�v�d2I�R��� �} O���O��i�D2��b�'���zQ�s<����z,z��B�x<��yx�G<�T*�t�R)z���:���I>������~�B�@�ӡ�hD����S�ո}�6���t��+���B!�}P�������R����<v8�8`���^�\.���2�x�n��������1 ���)��!���,..>u)zޏ����"""R��#���σi�#A)�T �?}&,��t:A@�\&�Ͳ��P����i'A��Ӡ�AR����T���=\׍>��>���ܿ�0���4��(��b1��,�����4I&���o'
�©A/�q��%������W���>�z=
��a�8���ܺu���]F�щ�0 ����h�W���p��}l�����Ѵ� ��j���Q���<�4���aee%
�O�� �Z�bY�b1:a�v�ߧ��|�ߝ��|�)����a�?�`<�������o�`� ѷ�R)��N�u��q*��!���Q9����)�ض �j4O}r�������j���j8����6;;;�ʣZ��eY �C|��ҥK�EF�����h<<*��}���$�~��Sj�0��r|�3����<�B�v�M���q�h�s��cmm�۷os|||�7<Q?<<�������w�Ap�ʕh�v�|�
��a������SCm�����˗�v��j��߈p�t:M>����詃����<�,""K2��>ãX1�����?9��{LӤ�n�n���� �c�6�X���}��6��<�~�; :z �d��)�L����p8�R��h4��j�R)��&����^{ �G�+�<ϋʈ ��#�����3�N��L|ff&\���1M3
�A0 ��� ��h�T������V�3��z��#��^��i�'zp � ���ǣ)׭V�X,F&�9q��f���M(�J�������'�
����4GGG�r9�C��ED�B�<�Ib�~�?��1���K��ߏ��`�3 #
o�l�l6 ��p8�J�Ò�r���I��ѦA�8x��I�V#�Q,���U0M��hD2��Z��l6�q����looG+�F�����Y���O�e�eES��
�ኦ��i2�L4���}l���5 |ߧ��P���}�d2I,ò,n޼�h4��W_=u�Txr{Z�!�ɐJ�h�� �����n�Y__gff������q������=��n��pH�Px��-yy�ZDD.�qX[]e��9����γ���������nG%��a077G2���L�k���G-�{zo�x���I�F����˕i*�
�x�˗/s��ej�ډ�0��b�Ǟ`�S��R�'����e��۾���%<ϣ�l2��`�����ppx������9
��t�̓�0�����9d�r�+W��J�������t�]666(����̜x˲���g4����ز���K˗�m���i���S������A[�ED�B ��!�4 z�.�V������ ��Ó�x<���{{{щ�_���A?�)p����i��*���X��*^"}��|�g?�e������q������F#��晥�����}������ àT*��O�R����Ft�R��iR,Y\Z"�Ia��qx��u����'��Ï��}8����2���g0p��],�bff�J�r� o2�dqq�����Kٝ>��a����!?O�����\t��AA@���sz��I.�#n��ZD�@XDD.�p�Ճ�*�Q(h4LLL���m�d�Y��� 'B`�P�P(p||�:����$�]��i4O ���S�V���g~a��߅w�����^��8|�.�7�$��ѐ��h4�0 ���������L&ϼ�p�q�^gzz��^["�������y���8>>���P�T�v�:)� ���-�F�i��߆_�z����p��Y�lYw��eoo˲�T*�-U���Q����ѫ½_��p���X��m�/}��3�3������F|y��������: +��N+?�ʏ�J��S��|̩ZDD.�p���'��b�n���:#�4�f�Q�,ˊ�.����)��Flll���������mhl�ïa<�a�?��?L��j�gff���%�Lrxxxf���b���G�8?�i�LMM��o���B�Xdy�)���O����܄�>� o�O���g=|�� N-�~�ad�YR��x�L&������g�N�0���&�N���5~��V����7 pz��e�ݯ�H$�x=� ���_�g~�g�����������o�"?������O}ED�bR� �u],�z$��i��8�V둟�f������I:�&�����h���Z.�~X�Z-�޽�h4�ʕ+�j߅��x���'��1�|g������5C�N�~�O�T"��aY+�/337G�޽��� ��c8���a`���nTJ�y^T�����R�é�]��믿N!���߁��^XC� ���L�׏i}�ﳽ��a|���%���8�����~`���t��=��w߻և>���� �wO�d���/�� 4 L��4L,��4Ln��o��� =���|��ZDD.�qN� Y�E>���NM���>�v���8'G��q�D4Diii�W�<� ���\.377�eY�Zm2�����b ������FLLL�ʫ�bv:���uF��X�<|� �W��l69888b-ˢ�����o399�eY� �:�Sm���iR.O`yC���w}'�mC�k��e_��۷���evv�T*=Gx|V�p����n��|�2�L�D"�����t:lnn�.�����-'�I���0-�����7F �Ϡ��=���v�6;�L�d �a|���4� f�3O��YDD.`�0� ��<�ĩ_/�JQ��kvl�&��Q�V���'n2��N�{�{{{,--=U/gX�h4�2�X,�p8d{{�n����bTf������!��x ���_{�8�ð
�8�8$
� �4M>��O���e�?���~�����m��c�_�ט�g�����{�.��Ӭ��G��< w]��i����8�ာm�7θ7���0i4 �C��:������'�g�~�V�\�t�L&����_�����i6����KKK���t:�^�o 8�t7+V��sttD>�?ѫ�ys�T"���g����3���|(��ȅ��%�I��F�D6M�\.���!�N�B�}-�H`Y��J�� t�d�=\m�&�����q�]�F*���<vww���fjj
۶`�58� G7����1�S����l�ortt�p�/,�u]v�g���o�e���2������*�����\g&���n3�����@Új��~� _�HM����!؊Cj������w�A0�m;
�O�>>>f�����#��_�z�{���l6���83A���̸d;��7��_� �4�����>�F�d2��F�q�]���R~�L,Cݫc�����D����� B=�""ra�;d�Z���i6���>��� d<�T8Mzww7
>O�A;�ý{�X[[�X,r��eR��벹����6333\�t ۲ ��W���Sό���}����p��-��*�j�q����������߃�J���ĭVi�/��ݶ�i211��}Z�f���U������g�J�C{��A���*4� ���0گ���h4��m���#C�“ݹ��3�|�d2\�z�B�������yb�����u676p�4��$K�� ���l�� ��Go�pttD����7���ݻ�.�\����]�F:���+|q��� ���|�L,������s������:� ��}<�{�>�p�O��#�{?�$�����2h�4I$�z=|ߏ�)��찼�|���ٶM&�acc��`��>��h��8lnnrxx���<���X��8vc�a-ƨKK���V��7�A��'�Eûb���M�~����; WW�]�D�3�\.G<�V�Q�T�x�;����Ƕm��b��0l��?�Qg~�L�
�����u]��,�ш^���\�e4������333�����djj����ǞN�!xmm�Z������r��%\�eoo�n�;��L��W0>�'����#0-(,B��p%������,--E��_G�L��>�����}���t0 ���?�����?����@DD�+`�0����D"A:���h��a���щ>`˲H&��c�����w�ޥ^�311���i4��u,�"�NG�F�QҖ�����;�}�gks�~�O:�abb��gk}����9>>&���0 ���}3�y4�>���,�F�A6�9q�,�bbb���C���{{����'�\���b�a��a����w!=EP\���z�&�X���9��4��}
��Bq|L���#��f���T*=uiv��߿O�Vcoo�F��eYd2ff�C�6760M���Y�#p0 �8�v�a���� �i���n�[�>���������5�H�I^)�•��' 6� O��\DD. �u1M��)�� àX,rpp��Qys�[v�v����A"��B�p8$�N333���.�L�d2y�P�V���%��l6i6�$�IVWWi�Z���033�H�s�z�N��a���mY���r\��y^4�*�9�4��z��[�MO���G=�0�e������f9^[��n���p��{�l6���<�VWW�F\�v�� �m?Kf�s�� Ѿ籿�J�V�ʟgffx�������<�c� ��1F��Q�۷o�Şz�X�Z��8����j��d�T*a�f4�;��L&���z���avv�0�간�0 &''���bff��Ak�X���~��M�q��c��ZDD..�K_�җ��"DDD�hn���,�mS�VI��'«aT�U,ˢ\.G�%ܑ�D��� ��4�v�N�C�X<p��>t�]������f4E����~�+W��Y��h4�uE�e1==M.�cgg�^�G<g4���}�D"A6�a��UL�`��o�K���i�~��2�o�y�|˲��ۋJ�C�e�8�F#
��F��n�+W�P*���f�ɽ{��e��R)`�c��v;zӡ�鰼�Li��ol���[�5���/�[;�E���O1Y���jR����d2y�w���8N�G|tt������F#��$�X,:��|�r�K��f��b��������fI$���}���7��l6�}����v����&�b�ED��C'�""ra8��eYO�ˍ�b�~އ'>�R):���D�|�*��8,�����޽{355E��u����d2\�v-z�p����.SSSܸq����P�j��<�4����$��p `
�H��q*�
�Z�\.���/�����~y��P �m�F�O� �b�`4�P(055����#!xbb����G&b;�����f�˗/�x��A�v;
�*
,..���E�\��/�H%�o��o�[o�-:N'�����p�v����� ��_����������F���3��F�϶Z-�T*��탃��.[[[\�r����R)��� �NS,�����ݻ�j��M��-�R��z���Ǘ���\a~R��a�J%vvv� ��l6����~?
��x<:}0��ifgg���'�L2�h�ZT�*�'�'���t�]<�cbb�����f�=w8����8�,�L�Z��eY\�r�V����#�a��_d���c8��O&8G���P�����.;;;���DכH$���T�U��<�a�.[[[�j5VVV�<��<�N�C&�9�O9�ﳳ�t:�q����z�U����M����#k��;����OO}�]�QVWWi4�j5677I��LLLP.������l�Vczz�J��.\�t ������ ��)�J����b?z�b����!�F������9��bQo���|2h ���\O{ �G0>� �A.�#:�N��p�s�\499I2��^���昙��̙��6��Dϱ��F"��X,F��g��z��+_��r����c�&�m3I&���p�Ze~~���E��y���X��e��e���w����͛4�M��:������qxxx�>LNN��t���������������}4��t��r���Z������>����S<�7�4L�ސ���]\\��i�J��d2X�ub���.�V���y�\�B6�=q��x<
��ap||�������wkk �����lG��X�r�L��^��1M�4��}""��`�0�4�A�X�\.M�R���6��aY�m�ګ��Oq{��9|ߧ�l�{I�Y~�������Zs�t,ͷL} ?��S�ʔ�e*�
���t�]��nT��F���X�E>�����v�M�׋zQ���L&��r�Z�h�R2�dmm�����1�uN��1�����0 ._����<[[[d2���5�N�N���载=*�JTR|�n��ў%�JE÷Z��������t�����������tx뭷0M���y�]���& ��aD'��睘b�{��qpp@�Rann���u��"�\�r�����V�� �P��Q� ��}\�%�N?���E666�F��n�&) Z��C~������PL���g������F#�����������Jc��4�ks�y�Mn��K��%VVVp]���#��:�F���.�V+�M&���O�V���(�z=������e:�GGGd2��2�x����hxW�F#��,SSS�j5�ܹ��yQ?���W�^%�c�&ܼy�J�����O�;�Ntb~�0���Bn˰NL��qt@�Bn���q����3  ضM"���鰱�A�R!�˝yB��YYY��,vwwi4ܻw��W�FלL&YXX��� ��B���=��tt�ttD�P8���΋��'��@��ȅ�y�j�\.��!ضm�������NOO�N��������/o�/�|����mV���8#���)����_��9�`��=��1E;�l��;���.7�M� `bb�2�'��<&''�d20 �q�2 �qp]�˗/S�T�=��v�|> r�}�n����p�i��j���5z�^�<��W�V���5��2ׯ_��7��uݨ�qe���Z& ��"�8���e�~�S�V��o�I�F��m\�e0�n��S�t:�eY���븮M�>�L�$����>�N��`@��#��E}ˉD��988�P(���8<<�4M2��O><<<Q�k���$�Ǿ! ""�� !�h?�Ӳm�\.G�ш����M��_��_�{_e�0 ?��hm�׾�����W���!�N�v�m�:{Q� �S�w�wi�Ɠ���b4ѹ��>rM�f3*.
x���a�0�huO�P��5����:���ҥK'J���6���LNN��opttěo� @�Z�V�Eæ&&&����F#��|��'�A�l6Y[_c61�_��_�3S��6m���4L./�>�x��:;�;t�]Z�V4�,�JE�7�'0�������͛Ѯ�~�KKKQIw��)� �x{{۶����ތH�Rd�Y���Μ��~\����|��ZDD.���<�+�J���2��Q�0��{���?�},��)��I�_�WW�o��v�V�����r à�t��qh:��V0=\�y^�g6�J���9<<d4=��l�vԣ �a\�)p����舙�,ˢR��L&Y__�����g��~$K��N�w;vl�77�="r���}#��}�9C��H H �@����]�b��n4�PC��f�䐽����*+3+c���m���,����4��ز��2��_�Y��f���s��}��6���fww��>���O�R��1 �O?��@ @"�`���k��!�L���d2y����4�Mnoo�,�|>�o�~�����K�:�`�_-�*'���1�v[�VG�QLӔݿ���4� @����������ݕab/���������� ��gϞqrrB"�xi�P(�~惃r�������{����V(�oJ+
��k�p��K~�P˲ [JW�+��C�~<M��|���-sg�eX%��"�W�Ҍ=�� ~@8p'�L�$�L2  ��k)n��L�㸣�h��.�|���4M��"�J�T*E��$K�'�\��+޳����,'''��޲X,h�Z��a>|H,#�L��tH�R�tv}�g<^D5�Ϲ������d��ۓ_[���g��f�D7Z��V�l6���1�ш~��z�F�4���L�^.��2J���F��yvvv�m{놆i���et]�����x,w���K��;;;\\\�J���bضM��}�ؽi��V(�ojZ�P(_ ����T m"F�G��VZo�J�$~>>�@T��~/�=~k��|o����\�V�p����}��h4b�Z����zM��}i�U�4lۦX,ʴj@�. b�����}�4�x<ΣG�d�9�V��)c6���d0M��>��z�.��6���{���1�X�%�Z��>~���`���'''[B�����O?��f�ɳg�h���E<x@�T������{��y����j�P(${�EB�ؗ^�V��޾r,Z�uJ����d2���L�(��6M�T*E�V��<r��~�k�V�jLZ�P(�,T�B�P(��0�L&�Dp���
A�����0YO�v{}��� ����o��� ��,:4gM��]�ى��Ͽ����'_�e�|���t�m�2��V�1�L�,���}��!�����eYRD�Al�f�n�+�[�V�E"�`>��Z����R�
Z������tJ�� ��qxxH�ӡ���^��y2��7Xj>�S�����J �q�V�=ȧ����#�0p]���3)|������+�u?��+k�4Mc>��\.����R��}&� �@@~=�� �F��!���x,��#����xL�X����N� �����7ߗ�l�Z�\�P(��V(
����d^�>|"=��<��8�P�w��� g��/ǿ���������/v�Sv��.�6f>��������?���;���i�n���/�A�q��zM2�$��Q�T�����A0$�H���刴8�@ ��y��}
��VK�������A��<�X��$ )s����u�L&�F#�����ǽ^��pH�\�b}>�sqqA�բP(pttD$y���V+��v۶�}�l6+��E6����J��f/ aq\b�ڶmLӔnq4Ų,���BG"Z����H$h4�R)LӔ#�/�����t:��B�P| PX�P(�������@����wE�4ǡ��K�N�t>�|�Q��syOR'�Ӈ����{��ڢZ�b۶��is?�{���a�C��<7�7\^]��f��4M��j*�b>��l6(�h����-���@ �7�`�\�H$�j�b8n �P(D���0 ��(�F�x<�5��)���$ ,˒�@�ʶm�W�����ض�:U���}���4M���qvv�j������ݗF�]ץ��S�TX.�����z���j�F�m���M���TJ���j��y��u��l�j�����~�c<� �=�I��h<�\.��ضM<Dz,j��dR>v.�������8�����+�B�P|�PX�P(�FL�1g�ǜM?�����k"F앻��&���i�����^��b�Q���y�7�������=~%�+�3��;���t�m[~��8�_�c۶K�����}�鴼)�9mY����p�eY����n��, ���n�x��)�J��at:�����c�&�z�B� �w�Ė �8�z��z-�ق���@ ��d2��<�Z��h�r���Q����q��8���T*��0���/����f�pg�Y���������}��1�d���"�E!��>�`�@ �z�f6��-�~��k�á��`p��wS��{ӹ\�N�C8&l�@�|�{��lV `�B����B�P|M�,��A����P_��XV��_����;�z�h���IDAT�'��)����v�m��=̷A�~�V+YM$�a�M"��vS���N��뺜����>�Z ˲�B2�8�H ����%�dR�o�A q溮L]����q�9�i�P۶�m[�z��ht�1��ڃ� ����dB�T��jȊ"�q�T*��mNNN8::��}�,�f��!���X,(
��O `�X�\���t:D"��E����Ý�]�V�j5��:�H���}���8 ضM��x���Jұ^�V���-!,��E��p��C.v�G��e�����E"z��ömo��{�G�ݖ�b
�B��f��B�P| X�s���o��/��U=h��Kg�$h�(K�ڑh!�b��+�hބ�i��O������j����ث�+:��i��:�l�l6��i�j5B�����4�X,�`0��n���c����z�a
��~��d?��2n��.���� u
�4 "��D�Z�&����[��r���LӔcғ�DK �-Ҥ���rxx(;}��tJ ����b��%�ǡ��R�T�}�r�L>��.�����z�N0|m��}��>!,F���%��bK�]��`0��b�Br'x4a�6�\�v��eY�u���T*���-���P(�o.J+
�׀����?��])~E���{��%Ǒ��ZX��&��� f$\<M��FL�Sr��ٌ�` ;x�ɤ G�,�z��j�b�\�J����u�X,�����(���v���K$!���n�e��j
�d2f����[��0 ���K{��*H�*��i6�Q�����aooo+e9��D�N��V+9f=��F�b1V��h���],˒�̢;x3���<��!�JE&(���n9��!vqg��|m��o�����z��4M�ވ�M!�8���x,k�D
� �äR)��< H������1z!�ߴϬP(�oJ+
�׀�����>���B�4F>$�ۯ��o2���n��f�?�˦�:�ٌ�b!w9�h��-�t:���bRX�.Z1\(���㽸� �JIWw>�S�Ve��m�t:���q����!X��P�u��t�7�X��R(�T*��޲������K{��Ŏ���%5 �4��L&
��x۶ ��dsyҙ4��1 �u۶Y.����ʑ���b��[�!�]�n��d2yiT�m�O��h�4q]�^Gx�\���Y,$�I���8��F2XK����mс
���t�B�P(�>(�P(_����3���&>>13�{��2������gs\���z����P(~�=K�>lV��T�V�%S�� (�/ ������}�����D�QF���6 ��|��� ��P(X�V�f3�V
g�T*1��Ɵb�u2�l���i�4 ��5�^��888x�X��iX�%ǝ��)��cY�B���S"�:O��g����.����\��v�M0���@�����,�F���i�e���u���H��8���-G��0$�NK�<��F�����8,�K��0��dˍS�2ƭP(��'J+
�׀����a�ޅ!m�ih<�~��� �n�z�N�ݦ�n�4��Уo������$i�4Mz��e�垮��$ :��Պ`0�eY[���< ��ҕ~q:����vi6���K8��c3�8�ˑN���J�{E������4hA0��ns~~N�T�)�/�L��^$ �`:����y��!V� <�P� �<��c\c��$
��cZ��|�o���:l��u]��W⤾(�ű������+��}�}��h��8D�Q�a�Z1�N�F���k<��q�����`�a��Y�P(�\�V(���$bD鬚̽�����~��_O�l#D4%���F1M��|N�ף���n��L&,��-��� �'� ���l6��㵯�0 ���T�A���l6K��g:�ʺ�\.�%�E���ɉ�;�Bx�Q�h4J��g2��8���z� j�4���c�H�8��y�b��E�q4Q�Ve'����Ʉ�pH2�|�{&D{$!��Zu����-�o߃yfm��#�"�r�4i6�������wE�4��0��XJ�N�����A��$�Tj+���<)h7��p���u]WVU��u�4��i� �C<ϓ��
�B����B�P|M��Iv�2A=�e�YE�ï&~��y�<�N  ��L&e��ijٌ~�O�ӡ��|c�H)�@?)�MM&��������Y�V���-�)�Ǒ�آ3�V��~[MӈF���c9�,�o�Z�#�\.�F��n���<��j�R
�h4��r�m9F�J��F�ҥ�F��}߄8�D��7t��j:h�h���3��C9B�F�N�������w=O�a
�h��R\��7;�#�"�L�4<��u]��ž�w"y�^�h@�b��,K�k�uI�R_��*
���*�S(�� ��� H[9�����z�R�4��f���+�:��1���` �_��(�X�X,�m�[n��Q!�U��P($�;۶��:�ͤ�"G�}���i����eYT�U��5�b�0x��!���d2���r���բ_7�N���7u��q:���N�N������:'''�A�>}J�٤\.S.��T*D"�{�s}�g>�suu����A���>��{�i�0��.�������ߧ���l6 �J�/����������F�����WzCF���p�|>O�բ^����X,�|�.�p8���21۶m|�g�^�t:��檁B�P(��(�P(_3tM��ޭ.^-��˥Ģ#�Ģ���b����Y���W%����p8$���F �L�S�� ��<��b���U@��ܰZ�(��ضM2�����P($]��r���+vC�����L&4M����uy���|̝�*�
�T�d2�x<������S����l��\^^2��-��\_�߇����#�����u�ө����2��j�J��{��-��6'6�k.�c2�P�V�D"?W�E!�l6�V�t�]��-��eY��)�łP($G�}�g0Ȥiq�+
�⛋�
�B�-eSG"r��K�x<���^r����kS=ߣ�lP[ްt�D�8{�#�f򝄬-
�B_���W��۶�D"�F#��4�@�q�#���[ ��L&�������"��w�u0Ȱ)�D�2�*�N���i���q��6�f��r��� c�+�Q��9>>�T*���3noo�d2L�S��!�V�n�+G�G�!K�'�:��'wn��y���@��rE(��_���zM*�b2���P(D,���"�Z���>2� �~���+���<�_�x�f/r�P��hpssC�דWa]�Y�׬V+��.��B���=�
�B�n(�P(� �'�E@�d2�B�A�Ѩ��Ğ������p��L�1>�f����f꯱:z��n�W��I(¶m��!�p�h4*�t���܍~q��>,�D"���P�T����Y.�$ ��&���4��
�B!�H�� ‘H�Ǐ�Dx���K�K��S(x�� �j�4Y�V\^^
��}��p��r�}�\>L�.|����]��|���&�O����u�� �L�\.G$��C�}k4���<y�D��BLN�S)67Y, �C��1�B�^��6���^��h�����"�Z���k��|=��]�Vrzoo�ry\L���!61L5�P(�T�V(�_P4M�B��.T!���1�NG� ��i��{TW�?�c�� ]���i/�i�?7�$o7�*�z�jl�D�~�O�P ��i��۶�����/wC�v�۶m�v� B��x��h�m����K�Rr�Y�H� �qh�Z��s�d2�=i�⼌F#j��|]�a��v1M�d2I�X�qF����Z�X4J��߇h�Oa5;���������v�ݦV��l6I���r9ٍ�9::"��P�V��N�\&�h�禋,����R��d5ыB�m��B?x��R���� ��׌F#�^��T�G}���.����?�3�� X��I��7ʤ�
�B��C `�B�P�ċ�B�;���;�M?�����|�T�4�jq3�|k,ܷ�Z�ݸ����w6��=O��;:���i�X��h4"�
����$�I���]����P�~��v]�J��`0`gg�u�FL�SyCb�X���ͮ�t:�a�V+��(��� �CY߳�z�f�@��b� ��o�j��Q.����r�W$�' ��� O$D"��6�j��>����
�����}7J��!?88 �I���!���ʁ@@�a=zD�\������k�ӻk�����c>�wU��_]���<���T'tn&���>��O�g�P(��=J+
��^6�m�}�5����kx�a�|��s7��j����H1 C
��j�z���B�}��b����S*��F� �Cb������8���x,�d���3�����������|����WB�V*b��apyyI�ӑ�a�D"D"yNnnnX,X�Ńh6�<}�t놂ad2��2�h�j�J�ӑ��BЋ���kNNN�,�|>O&�a4�j���� �I��f ��E��j���[��>�r��uG�i����|>�V���ѣ{k�|�����B�EQ�H$8==�V�1���cP_��a�pэ����c�� �����?:A7�8�B�P|�PX�P(o��|B��Η��h��F����|.E܋"x���syy�eYr�W>�0��bD"|V���A����{�a�Y�uR��v������z=9r�� �ױ�c�Z��D"h�F��ãG0��p�a�DCC��a� q C�^i������ʛ"�l��W|��'��i4��ct]���P�>�J��0�r�l6+ӌ�����~�!�`P����1 �4I��$ ��)�v�N����%�FC� ��aNNN�d2������S��,���ض}�M�p8���>Ϟ=�Z�rpp�`�̛� ��ʛ�_�./�K��u]l�&��s����Ꞷ( ���?����Q%�
�⛄�
�B�x'Lݤdp9;���-Q��1c��X,$ J��&/~��K����}�w*���b�w��h�h ��]��eP���l���z�!�R�0o
�f�)�Zɑa�q���w�}�}~��^��F�=�m�T*���)f�sx�/a5��fm����/uL�ۥ��ˑ��h$����8�`�X,F"����Ƃ�|.ӌs��n���[�n�ʧ��S �B��wT�4"��e�y�a��帹�!�N3�ϩ��[]��a�ljF������th������l6�I�"$k8���+E����iJ���F���_��|�,z~g��LBׄ�i��a g���#g��y�I�P(�i(�P(�w�4�>�U�'�Oq}G�������o� 8?;g8R*�d��}��cb��l�0���~a`���ˋ��N�l�2���-]�/�����s)���Lxv]���3�� �Z�V��R�H$�Q�ٔKbt�4MF��ٌ�r)�V&�!������_틊!߇i*�/3 �V��.әwww���#�������l :�K{uu%�}��t:��ƅB��m{K�L&Y�#:��x�T���܍���l6 ��r��s&vh���(
�z=Y��n�I>߃.�$�I��*����z=�� �h�����ɄJ�"S�R� ,���>�t:�7?čq<•O�����c�Cj'L�6��a)
����
�B�xg�z��J�'d�<�E��;#f&8�<d/tD�ե���8��� )�^tV����D~��΂�p����y>��9���N*E*�E�֦ӜJ��V����`��ܭm��2I8�� �ҥ9������FRD���a�D�͖��;`@�Qm5&�L�w����qzzʃ^r*�.�d2!�N�8�z�Z�����AF��t���Պ��C��2��q~~N�ە���ҽ�m�h4*���bA0�P(pyy�b�`gg�Z�F0���I�4����fe��`0������������s���S,)�[�9�����Ǐ�T*��~��Z�V�f3)xg���<vqN�˥|�<ϣ^�sz���2��E t�9 ��x�wJx8�f˗n2(
����
�B��Ru�����A�C<�%�й�ݍŢ��y��6������L&��찳����8�������M�x��~�׬��dM!a�h4Y�V�sB�:�C�ߗI���䥔�H$�i���k9�,v����xs��u�;���W�{�9�� C����\.���ɽ��"|L�+]__������x<�.���ҥ���!
���p8L8�q��1pW;$�? 렲�,�f�f��|@6��R�prr"�ED`Z6�%�J1�i���z=������r9 4 ��J��1D�Q���9??�^�����Za�Y�5�ͤ�;���y|�8�n{�ZI�+��i�2 -`���?<��\�e�t�u�eB���=`�A�O>������S�Ţ�aW(
��%�
�B��_�P�N~!���0���2X�W*�áL�4 �q^)�@�z����>K}����b�b� ��1�Ͷv�����v��[δpO���ǟ���4�!pϏk�U�+���-ggψF��������<}��v��j���a���4M
�;;;4 ��&�p]��f�L&noo999a�X0���u]�? �)¡"�;;;����j����g�XP�T8>>~�+k�d�x<.��;�����AR��b��`����t���]��0���c��jD�Q�鴼6oZL�Sy3c��+d�.J���r�z�����t�l6K�P �J �4�T1�_�/Ѻ3�-X������ǟ���cymu�]vww�d2�T��P(��-�_h�B�P|i��)�V�d2���D�R<�Z��l6q��`�t:�X,R(���k��As�VP�>���MtàT*��q"�777
���D:����B$�:�MĘ��8���3 �g��w~ �����+E�zJ���7y��1�V�D"�i��E2��K�H�n�ۄB!B��V���iD�Q���H���N�X����` �nww�gϞm�� �S�q�����n����y���8;;�Z������Nc�s���(�H�b�H�ە{†a���z=F�;;;��y��r��l��Օ|������R��/�+v�W���uR�d�\.G6�%
���L['}$���8.�Q����x��Ʉf��|>��뱳�#o�(
����
�B���W�U���a�6GGG�R)nnn�F��knoo��z8�#wT_�{�����¹[�|�d���{vYW4�N�F��>�q� ��q�28k� m���bqv��*��B��� �� �W�����׶m��+��E��r����n�+��`0(_ �X,���#�J@�7 b��L�.��\__K�Tjq��� �˲������z����)����l6)�o=�+��R�D>���^�X���j����^�G�X��T��e�V(¶mb�8���z����HT ���i
��ä�i��4�x������rq~A�ٔ�g
)zE��p���9�DB����h�B�����B�P(�"<H�������u�t:M$�^��h4d�h4"��_����|�0Ɠ�������5�q��Q��wx�z,�}��)�B�9��|�y�������������X,X��ˤO�.z�0n�f@l7���B������ O$2��R�P�T2�ڲ,����R��{{{2��Er��~�V�E�TB�4��d��>��P(D,�^�}�!�d2�Z-:��BA>o�R��O�����d2��!�z�n��b�`�\�n�9;;#
 1 ۶99=%�cpw��L���ϫ����x"�̲,��(�L�T*�m�o�����r���Z$����~�/G����]�t*�l6�#��|��?#
�B��٠�B�P(�"HHT� �`�����t�]ץ�j�\.eW싣ǚ�QLZ$�I��5+�'�IF����
��LN~�d���K�Ѩt�6�JE*�}x41�Nq]W�ɢX��>{��l6K�P ^*˯����O>!���Gɴ��l&���d�`0����c�,�@ E���>�R镎; ǪonnH�Rr�6���>�łX,|1-İzB��E�>}J�^�#��,����׋p��(�z��Qгٌ`0�����a
W��n��1c;$J�J�����;���y�ݩT�L&#E�����E��|>g2����d2��a�u<��  �C��8�dR�<��y���K��/*��1�,Y���x�2�[�P(~�(�P(�/�p ��M�;1�J��F�\__�T��d"�W��n�����b����z�f3>|�Z�-cY��q�����������fR
�q9J�^�i6���q�8��puuE������������3����������l6I$R�L%FxW�����pH,{)�k�d2I�ף^�stt���L&B���L���`�4�����iR��n�|>O*�"�ϳX,���~e��f`��#���u�{m�X�p8,���d���a���w0�|��s�>�z�R����'�z=<�#�J�䱿���"bl< �~��|.k�nnn8==�ٳg�F#&� �DB^�|�`0H�ѐ����S��̧+n���7'x���kD6�Y���
�⧊��������>�B�P|�X,4 ��(�l��i5 C�@�@&��N� �Ct]e0�&bL��h�\.I$��]�嘪eYR̘��m���y��N��kZ.�\\\0 �, �0�N�h��ar� ��R.��}�J�B����𐃃t]���M��(�l6��)��tf���p�O&9v�١�����m��  bY�j��rI4e�^��Y.���c��%�Պp8L�P�X�u à��ຮt0��(��P�=M��H�x<���P�שV�R�M&y�7��6��,�¶ml�������"���:�Aӟ<���X�0
0_����û��$����h:��n��m�`0(��D"A�Tb:�b�t��h$o0ض�i�L�Sஞ��}���\~�M�9+��Otn�x��|��g9]3̉��C����P(�r�
�B���uN�X�ײ���P�՘���f3...�������F_+��4����jgoo�ǔJ���z� �/�:� U���'�$Ftm�f�\JA��>�mS.��u���[��&�r�B��������4�������uI&���e��(��D
uZ�i� d�,��ǥ���f�4 Ð����.��q{{K4%�L�J�Y;k���R�T2�$�N��� ��T*���S�>}�m۲W\/�)vb�Z��F"�����(�z��m�{�`w h�L��;���Z|��I_.� �C<ϓaa���<z�'O�ț�j:�ruu���GGG4�M�={F6�%�˽�Z��Ġ=�ߜ������3�h� �&l4��ƀB��١�B�P(����_�`Z�E�T����n�u�t:L&J��B�BA�4��"�ՊZ�F0�P(�+�m�Ʋ,���,��,z���#�bgVV� w����H�Z�F�Z�X,R*��(3M�������H  
I�?��e����)�R �u�<y��x��y2qضm�>�C��6�e��H&�d�YF������kL�$�HȽ�D"I!�C���{�z�����0
��n�J��r��7)&� �JE�J�xN6�W�x�A�}�P˲�Ʀ 3@�[������A]p�, �u~*n���e��i�ٌD"!�Y��\\\0�N�v��N�P�_,���c6�Q�� 
���/�~�l��s����5M��g6Z����/
��%�
�B�I�� dzB ��Fy���d�j�*wF/// ������:��S.��~�eY���{�.�L�l6e���8�����cl6�2�9�LJV$��O2��P(�j����������q��.��R�ȱX M��u���=Y������`��� �L�P�TH�R )@�q��q�zg��^�@ ����u,˒�X�e����6�]�) ��]�Er��+�y����c&� ���lF�٤��l��p8�t:�.�@���Rt-��4q�g��V��i�b�8��j�K� � �)���FC��G"B�����$רؕ���e^,��c��|^N <|��q�T*�f3��6��dh4L&y��!�v�j�J�ە����hM�^>���*��:J+
����oS����U?��1�S�Vi��8�#�Hwvv��ٹ�yM����gϞqyy)�o^$�H�x.�D��b�W��^�G����}��(�@��`��y���,���=F�WWW�R)����ұ��)gggT*t]'�J���b����>�B�4I�Rd�Y�<yB����ޓ;��\�r�L�ߧ������|N��#���_�V�z=���1^.�, }ޅ��[\�|נ~�����u�ͦ</��3�N� ���  2[�0o��`0H0�7��)��w��;�%P�.��V���>��SL�m9�.Ɠ��/�fQ�%��Vd��0�#,D��8�F#y �E��*�D�G��.�j��lF����}���999����?�\��T*E�����B�H��w��#v׭�E4� 8�mg��}� �
a���a
�⧏
�R(
�;�y�f�u���}��M|ߧ���_�"i9�L
�dH��2i7�+L�$���v�F$���O�X�ڜ�|�eY�].�t:�G?��~�`0H,c�^3�L�m�p8���J%��b1NNN�@�<�V�ŏ~�#���t(���y
刷�-*
�V+�����/��1G"2� �x\
2Q4��lۖ�����E�����?z���[ �̺�G8zP`�ګ�|.�k�Xl%W������RI�)>
��lVv�& �Ѩ+��;ǹR�pvv�h4"��L�Y<�� B�p����ӻ
)��I�R
2��t��#��t�L�S9�/���?7��N��l6#���F�����s��5�`�\.'�g�t���F���x�XȞ�H$B�\f�\R��e���T �5�I���q�^����5777�A���Y�L��v�c�{���?�P(~z�a
�B�Έ� !\� ����k� � ��I7��l�8����tJ�Xdgg�%!�F9::��쌫�+NNN��G�4������Z�0�F�����v�X��iL&�N�h�F,#�puuE8���X���j���%Ϟ=�u]b��<�h4���.�z�~�O�Ѡ\.o�۶y����f�<}�T}h���)�J�z=�ݮ�ΰx]���1�՝�{7s��sg�{0����f]ץ�+�n*�"��F�}���kB��L�~���l6i�۸�K.��T*1�!�"��?���0���A��`���%,g2��.�f�V�E.������V+f��ٌ�`@��D�4�������{��>��Zu��kћ�X,�N�R��@�~�O:������K��f�X���d�����h���[��)�����q"���z��b���_7DeW�ߧ�j1���C<G74����A�:d�t1L�x:L�4C(��W*
��mP�B�P(�6�D�f�_�s�q�t:����� �L&�F�[n�x<f4I7x�8l�&P���<���ϛ�I��c�Z1�Ldr������Y�m�qX,r�:��fi�Z�����)�P�����G?���@ 덄�?>>�X,b�&�v��tJ("������y�����K"��r���fc��VT��}&� ����hD4#�I����l;]y�� nt��tB:��\.K��i�D�s$��l�y�kwY7����noo����qNOO)��t:��1�\���ű��!}����{$��D}U�ە�eYr:��H$dW���].��F#:��~��h�t:��Q(��rgy�Z� �dR^S"�M���e��cq�.�K �`ww�X,&Ţ���܎��l6�N�r|��:-�"��&���rB$��rxxH�T���B�fJq2�8��4�r\�)�� J+
���H�Db�/�]p�V�E>��M��B�R)t]g>�㺮t�D���V�4�p8 @�^�I�x (���ܑ��f3�t:��\,D"`5��x���H�q����?�!�~�X,&������'�p8�z�����x���i��d��w�]�L,*���.�v�~�/�n�ө�%�<�h,Fy���;�y�~l�����,�l�R�D6�%������f3R���x��Q���m"�n���͍/�,���}���uF����ض��������x��N�1MS���z�eY���4 n�A�H�R�ER�8dzٌ�t�h4����m�N��^q(�)���5Ms�z��7���R)ySI�I���x<�d2��h�~�w�a�i�y�|����h��2����B�po���6�l3`���+�B�3B `�B�P�3�шn�K6�%�H|��X.���}�C���*QE$�`(e���[���ՊF�!Ð)�;����UHGGG��i>��s�%F����, ���u���S)T>��3?~���ҥ5 �|>��ɉ�]׉D"2qy�\޻�,�V�+��ϳg�h�Zt:����q#Т+X<�eY���Ny����/�j����˿E�?d�<�Z��}c��Ƿ�]���j5�> w��jQ�V�L&R@f2����d2�N�Ze0H1<��i6�� >�!p��tć�!�V��b!��6E�(�B��q��(���P($����9�NG�`p�P($�'���h4��b�׼�^�V�v+�N�N�1 �f��p8ĶmY�%v�E ���?��`����T�U�����z�����\.��
�R(��V(
�;��� ����Fv��e��w�?�t�_t����B&��A,c<��t�F��a5 �~�/�W�0������2�T*[� 
a�6������j��?��h���b�.�����+�!��f3<ϓuKb�z0H�+���
Wq�X�8���.�� �f�$��;1�$vN�6L��>�2���N�S��W+:��Kj0�r�_ܯ���%�t:T�UV���m���=�Ţ<��Ha�n�ePؗS���k%
1�Lh6��|�n�x�X�j��m���C�5�L��4 ��L&2xM� G�4Mb���F=��q٩��:�x\��b]��b�X\�f��` �������777T*F��p���=H��?�cR(�wA `�B�P�����t�N��J%Y���f3���2��ǥP�<��t�p8��'�F��z �-gv6�qss�z�&�b�6�D�Z��p8��<�g+�T&uzz�m�<~���>�L���9 �'''ob$v�G�����Z�F�V�BW$ ��s|ߗ�+Ƹ�s exU>����,� ��!����3'݁�)��w�}���t�|>���
�0 C�%����iT*nnn�,K&h��k
��ry�6��l�l6988�;���R��d��O��iRD���V��x<�u^/���tJ��"
�����á��P�B�����!ҽ�ժ<�"�{�^�8��"X�xG"��$�Պz��r���\���B^s��D������\__s{{�l6#�qpp������R�W�P|�Q)�
�B�x'<���;�ᮋ7���c�����y��!�f�Z��|>g6�qqqA��goo�X,���1O�<�����S�a8ʄ_�uq]�^�G�ߗ"E���@��zM<.$�|���t�])�ňt�\�c��!ҀE���������F1MS�g G�ġ��4M����cb��lV>���1�����/ ?~L������_>�:����V��d2�V����O&������lF�ݖ�^�����p8,o>��m&� �l��` C���$�|~� uX�F���})~ዛ$_v��>�+�D�8��͍t�7�����).ň��7�Y�ub��XL��d2I�^�]����qpGVK��O����<�m�6���D")6ō�Z���G:���h���3��,�\���ߖ�%:��y��Vg�B�P|PX�P(�.�����¥?Y�\{��.�X;����I�T"�Hp{{+��:���Dv�s~~Γ'OH&���e�>}�j�b�|�W$�
�W��H$B�T���rqq�j�"����B�����K��BL��^��N�S�K*�O��r�m��A9+�y&� �h�D"!���� �z����ժ<O��3�P�f�A�yp�|>����4�h4J��b6����l6���>��n�+�q�{"B�b������ ��������{��v�V���eR���9���2���F�������v��j5Z��L�t:�z���}龊�f�i�y��Y�L�6 ���&� �i���/��p8���L���V+����rxx(����(���<}����]��i�h���c��F�~�O�X$�L~�����\.�n�t:�4M��<�|�X,�=�B�P�<QX�P(�a���n9�o���T�KW'L.��c��h���d�_�Q�(x���d�j��t:e�Xpyy�`0�\.��x��)����iggg��+Ōp�6��`0H"�� Ʀi�J����ޞ ��잝L&[�˛��q)xE��eY���� e�R8���N����RT�ٟ���r�,���r)ǽ��z �C�-Q���)��j5�ժ� j���]�����q������'�P�T(��y�z]�Ϟ�q{{+wh�������2�LfK;��x<�һ��r�ضM�T"������.�r�����1��?�;�/�i��I�X�R��L&e"�c{��)���b�r�d:�ryyI��%����m�T*���\]]1�L888�Iպ��N�����m��*�n�������<�g�p3h`��B� �;�� ��D"ߘ>b�B�xJ+
���|�ުMg����$i��`���\o��ʘ��E�Z�z>�ъO�'�����O�,�A�P �S�Vi�۲w��j��:���,�Kz�����b���< ÐaG�i�l6�>��C*�
L��rv��{�B,m��꺎a��U�ut]g6�Ắ�ܣG��H���F��Ki�B�
���ǜ��Ȕ�D"��T2M�\.G�ߗ��B��i...��`0`0��]��~����A�\fwwW�J/�K*���JAJ�b�l6��ȝL&���g��iX�E�P ��0 x�� ����h�r���N��؛!XbZ`�D"A,�^�s||,d<������3y�# �=v@�jM�S9.}yyI�����l6�eY�!�v*���hpqqA2��T*4g|��u�WC<�']�����܉��x,��E�����l��8�P(_%*K�P(o��>�%����M?�2��zv��铱r�F荏��>��3��_� ��X{Dm�T���a�=�dR�["%:j�a0��ף�C>|����tJv��V+��!��5˽K1�[��i�� �㱬#���,�K\%���m)�����-���b1���Y���:�VK�m"�B�GGG��c9r
�8>>�i�½7��`P�W��8�T��t�`0`:��8�`P& Gܶm��5�����H$�l6���ˀ,�4�(}ߧ�h`Y�K��O1��Y,2�Y8�����e�=����bg��ld  k�F���.4Mc�X��>�pX�`��h^�T�x���D2y2�$�2���B�ZK����s��y�ag����u9��t@�&��8??��n�eX�JtV(�F��P(�7r1{Ÿ����D{��.�%O'���񻙿C@������.������?��X�V2uY��M��.�A2�����]Y�K��}_��3���.\���q���C>��G<}�T
�`0(C�\ץ�ln�Tm:���EuЦ{�B��ql�
i���� �H�Z��m��r9`[<m�*@���mS.�)����)�VK� �3Y,2�i�\�Z���N.����TjK,�F#9f����]�V�z=��.�d�l6K�\������G?������B���埛�e�p���c�� �V���3��܅7$D��}�p�F�f7�8��\�q����[�шJ����]�D"���777�j5yCg�X0qG���L� ����C4 ��AsƟ��K~o��Er����R�W�P|[QX�P(�e�-y:����D�^���z~�{ˏ(��_�8��0�����}��44|ϣR�0��0MS&4��)��eY�@�ʛ, �����_�u�777 �C��0>3�_�i�8���A�6yT��K���x�������c���xK�
�,ĭ�8K�
�d�Ϋ�F:�f<3� �B\__c۶ !���F����;+Ľi�2�����u������� �
�Bt�]��,�B�T*){��>l8���R4{�G$�Zggg��q��$�tM�������cY�tT_�,���͊�b ^�F�Qf�r=��Dz�H��J���r ��新�4�b��z���������x<����u999��c�eqttD<�����t����Db+U�g>YS;ȩ ��i��tkSz� �����p+
ŷ %�
�B�Z�ފ�3���˟_3r��Vkꍺ{�/�IM�$���[�{K�{~��:�؝�T.��,��z�r����b�V<���/�d�#��&Dh�^'`����b�mw!_���k>�������{t:��5��1��q]W>���7 �D"�#c�k�h�F�T���L�"_^^���CY���vY.�2I�)�z��h$lj=zD$��ꊧO��.�t۶����+�1p�t_�>w���8��Ǐ���@ @>������-?��e�S��b�9��ρ���J�"��6�@�X�+��yW�,F�Yu$�>��S��,v��^���������פR�-q/v�ǡV����w����6E���d�YB�WWW������C�T"˛��g��_<�g1u���P(�v�V(
�k�4���ǿW�hw������}f����6M��l��hEU�`�L]�" �h�չl:��}ߗ"R�Z��R��,\��r�p8�0 2� gggR�X��m�d�iZ�5���%� �g�r�n���~�\6Ksc��Egڶ�-�+��~�� ˲(��\^^�L&i��T*NNN�BRx ,\iq#����q888 �H�i���d2��/����k=z���Ƭ �?�q4-�Gz�!��!b��0�L8==�T*�������lF��$��Da1�\.�{�^�i4|��'���{��yy>�M�B��s��79�&�n.$ ��%��2�N����uQ/&G�辎S��999ٺ6DU�z���j�8����E�p�=z$���㱬QE�b�ъ��m h��?��Z�P(~��,�B�P�]3���� � ��?�_�J������B����S�`����-9
m��h�;a� a �$��P($��MβpS�n�|>g2���I�RR���c��>�v�~����.��K���zm����{�0�ɘ�h$�E_*��P(�*�H$"�zŮ��/�&�M8���T*E��A�4)�&����m4R{�G��#�Lrtt$��H2��G��k�� ��`ޅY�0�B�g������'���j��[u<�i2�D"����Y��t:��:���M �u����c��`�~��j��X,�\���� �*
��[u:\�%�X��, ��∻xߛ�&�i���m�h�f�D�뺌�cY��ǷD���m�^�G�ӑ7yAg�Q{��w��=߃�_���o�`�*�Y�P�b�`�B�P�C3�N�Wh/�4�w�¹��ߍ�:q3)��E1��p�:Ka� !<�N�����p�%a�*^�"�j:�����Y�V, ��;�� ,�����Wt����>7�N���2`H]�V+�á��ܣ|ѹ�BT�R� 1/�[�ۊ�%!�-˒�k$���Z��Z-��9�aH�P��@ ����K�L��\.�)��ux�o`ڼ{/�9�}\��~���k��>���J�B �㼉D�t:M�ۥX,����F��� e���!����>���j��N��
Ο5��J왿t]�mˑ|q�!�����t:�Z-��4�L�`0��i�B!��<�F�x<��y�m���#\ו ;;;�F#��*���k*����T*<y��n�bo��j��`����`9]��� ������!����_�B� ��
�B�x#�@����=>�����sH�<�~�~���q�v�h�����۲�
�X,h�Z4 ��(�v�j��z��ΜH7^���N��'�(`[:����s�cx.��X�y�I��½���P�p8,]k�0� l�D�}f@>�@�s��*�������
‘��
P(�� �z��jE:������^�E<�h�Z��/�
��0��%~��}zgh� Z(���5��<�Պ��k���e�W�P���s{{++t>��L�d6���v�v��f3�r��c��H�~�/��3� �m�\���8���(3� `�~� 0��|xxH:�f0��t�v��R)2� �P蕁X�H$���1O�>e:�b{{{���0��V���������"�0��qnnn��zw�޿���1�eiߌq��N��{)\V\^^R(�شB�P|�QX�P(oD�4RV��N� V��������RD�����B�:��b��bw�\ʏ�j�h4�q�Ѩ�#]�׬V+V���HQ#��h�K���!�֦8���圎Y�C8�� �ǥ�i����v[~~3 +�Jw[Tm:���Y�)�ş��@���c
�"�x}9�ՀX:F������F�D"�a��sZ���D:�B�����Lh��Yl��n�����������N�9;;#����GI�S$`�E��n��p��4 9Z�pJ�P�g:-z�_� �)n��>�NY.���a��,�T��hD�����X,F>���X�d�X,����b1���y�����08<<�R�0��j�����)�H߿�R�V���m"�{{{�f3����st|��{��q\�u���Z-t]�726]e�B��6��B�P(�C3o7��*��)~��ܓc��cS�V+)E�pEeR2��.����>^�k+ƒB��~�ӝ ���Mg�l�b����i1L�6�0��K�D�ٔ;�"|k�ZIQ+��7�h��N�F���yr�Y�" �X�g�A�&}�p6�e>��\.y��Ʋ���_B��P���2G�̇���z=�㱼A`���'],�H������X�^�$2 ���}...�T*�i�L��pM��
��,�ɄN�C�^�R��i��PV]u�]z��D�l6K4���79��t�]��0 ,˒;�™5 �T*E"�`<��t8;;�UG�Z����{ϵ��>;;�c�'''\^^���i6�1�Ni4, B�d2��^�ۛ[\����jaY�b��t*��///9::R"X�P|�QX�P(?u6�xW����`0�l6���p8d:�J1 ȴ�`0H*�¶m)}�g2�P�T�k�ەUE�ܑ��B��r9��<�z�?����Ç988��M�v} M#`j���#��F��f��m�á|��b�p8���
�H�R�E�̭�k���}8��t��!^��X�6�A�����|��p�hO�����ր9��m9���/�V|��2�i�^���8�^�r�!Z����*��C�#\�f5��4�lY���s{{+��ё;�/b�LFN$��s��{��b������l �x<�S���/&@o"���H{(b6�1�L��r[�Kx6���tX�V4�MB��r�%a/�D�U��ò,<x��g� T�UZ��|?b��b1��5�~���{MӸ��e0Hqo�|�v��Ç���\\\('X�P|�QX�P(_�n���}���X.�C� 3@8"����hi0��U�� Y�㺮"���BL�t^��[*�H$\__���3<���ӧ�G@��d2��O2����T]��(�b���n3���
\ץ���h4��j�A��$�T�t:��Ύ�/�s�f3��9��Bnm�b>��J��?8Dk�ŝ�����]�s�Gċ�I<���"e;
�n��L&�gk�G �%t��9��� ��B��������?������ou�B!�����~�eY|�����}>��3��&�tZ����4��bqW�dt:�S+�j�n��v�$ ��<�Db+`쫺�E�����Z.���k"�Ȗ�~_����"��B���+?~�x<�X,��z4M�P(�8���4�Mvww9>>��?�ab�㰿����j��}�b�(S���H7y2�pxxH�ۥ�lrtt����r�
ŷ%�
�B�N�P���'r���Z�8�=�H$���V8J���7^����fR�f2�y\�e>�K�u8�*��b��y�R)�ɤt��+�S�q��X����>�\�4������Ǹ�K�T��h0��h4�w5J�x╣������ߗ#�"!�T*qxx�x<�"��ja�&�x�d2I"��#�"%��@���j1�Z����f3��]�4�]����iw;��*f ��"��J�%vr�� ������ŝ�4@3 Q�� �A,k�������9�F�>��d2)�:�bY�a�Z�H&��r9��*�N����W^S��0)
$�IǑ���E��fR���K�ݦ����������qG�xx"k<�X,d��8_��^����9�_��h6�d2����u�R��z��Z�ruuE0$���z�͑8V.��q�|41�N������S*����&��rpp���%���/%M+
ŷ%�
�B�/v�
7ws'W����E�O0$�H ���`0�������F��<�I���=����T�wB@���j%wG��l�XIJ,)> Ð����J�ÅB�B�@(��}j�O�<a6�qrr��މ���&��)����y)vE�ףG�pG>��@ @8&��lj�bX�%?D����d�X,О���{o:��/G�E/��9v]W��A����C�U.
����.Ϟ=���N���������V~���Y.����`�&�b�n�K�ѐ���1�Ld��i����svv�x<foo�B���%Ɠ]ו;±X�B��U9��\��u~�,���ndZL!�f3��<��CT]]]Q*�p�N�C�ݖBX�X(
��u��p�|>O:��c��vM�8::����DH&�/=_2�D�u��?���H$B�Z%�K|qq����k�{�B�����B�P��)r�ye�H�� ��5�׶m�˺ÛB��}W&�zw���F�q��qu�o<H0�M����b�����v��eYL�S9~���G"�`�\��d2I�T��I���j�x�� ��r�L.���?Ʋ,9^l۶t��!�wvv�f�R��m��L��N� ����d"���(�X�x<.G�7Gp-˒55��߉��������vwc%V��(�x<�#�X�H$B��ݪ�j6��m>����Ī��w�K�P��O?�/��/���"���{����z-����<�J�v�}o��%[G�Q�T��j�tf�ٗB���>��\�[񾊔�\.G(�RBX�<�iZ���2�<�2�L�M��y�X,F"����pzz�U���tH�R2;�JaY�F���[>��#l�����2k2�`Y���w�b7h �`<syyI(�i�b������k_�+V(�o*J+
�ה�dɟ]����IG,�WNp����/�/v�nv�n�)�'���W0$���抄_� ���r���/_�z�y�l�f8s(��d�P(�|>���F�!��f�j��V�����F�<x�@�F����n���Sz��L�P�VY�VR|E"��V׻ ꅄ3����f����Q*���f �áW��!C���8�p���^�߹���)tB�� u��2��d������z2� �ٳg[I�F�p8,Ϲi��f�a�J%R�?��8;;öm��P�P(�������kvvvd
v&����X���X�k�]�X,&C�b��RI�����hO�>����B�@�X$�Sr��or�� ,���b19��^��J8�=�gϞ��v����r9��4�V��O�2�����^��k���?���?���0��������o���M$2����2�Ϲ��!�L�����R"X�P|k0~������P(�m~P���}��叮�w�[���-��Y�X(��BL:����\��N&�á�m4T�U�����;R�n�q�l6K�X�T*���+�7�W
�R�n�ؾ�H}�Fw�����o���р\�"���U�����?f8���)������i���u����<���=�����r|ߧ��I��y���B|���Rpvww �2m����/���
���w����۶�D"$ 2� �x\
o�<��d��t:�uݗ]u3��]x�z�<�*�G��� �'hY��iy�B�8�D"�+��<y���+C��ݮܵ{�����N���s����<��� ��-��`0`>����v��'x��&� �Ri+�Y����k�r,Ĩ����bd2b����8pw�F���Z-��/�5�łf�I �X,�1m��n�8� =���8�#������l6I$����$A2��{��������1��0�͘N��E���UWb����p�e�6�ٌ���r_=��� ᮋ�
�B�MF9�
�B�5�>��_�����yG��]�g� �����b�毜f� �z]g�f%Ћ#���{qd�]���ł�x,?�{{{K{X������u�P�n,St���c��4���d2��\��e�n�X�P(ܻ�9�8??��nc���O�>e�\�L&�8?�b�'�4M��������X�\.G8��X��H!:�L�+?��L&���m4%��UBE
h�c�ua9;�o���\��e��dH&�L�S:���D��X,���.�Ʉ��ۻ=��n��&�c(��8�x<N$�T*��:�j�~����)���r���}B�� x��q��������]��r��R�p||���
!��dH�R�I�v���u]����V��r9����t�}lv��96M۶eX����~"�x�k%��������A�u)lS��v�0���p�^�'���x����rY>�t:�b���T��8����F�v��V+���'<y�D�[Y���`�B�B `�B�����:�E���o;�:>��������A���+:�����fg�#ˁ@`K�~i��ݾ���x�h4�����m����l����~����@& 6iT��c<��ѣG�n�`�j5��t�R�$Ӕ_d2�pvvF���T*qtt�|>���V����Hg���_%�a�L&���L&��6���D�Qr�����"�Z8�B����v�-Ƕ��p#Zd4��j��q��]����V��|>�#��벿��z���Q��
z�^3�N �B�A�ݖ�Y�?���?�����Clۦ���t��p(�˜N�_�����qvv���-�����k)��bq+4�4MǑ7M��4�r�l6{��׮pe�t^�úZ��}�X,�h4���ێ_��ǏS.�y���aP�T�����dB�z��"��������� �?�{�p'�������O&�����}����|���V+�8�����HR"X�P|SQX�P(�f��',׮tw��:Sk�D<�����BU"�E��+�nG�і[)�V8&��۶1t��b��ҡ�[��]�-��[�_�b��.�P�R�����~�Z��h4�I�bT�>f�ggg��m\�%���n���K�SiY���D�0B療��R��f3:�WWW�B!��l�@�t:M*�b�^3�徰��r7w>�3e���!z~ň���G"��2�jU�����l6+��D'�p�E�����BD� ��` ŗ6M�G�G6��� ��f�W�E7Ly#�k6 rpp����V�B���k[��*4�q9ڝH$(��/M��pq��u�Q��~g1�-~.�4����A�b�����08==�zQõ�%,���>��~��o����C��4�pH���ŭ�U"���O?�V�1��988 �Nstt���9WWW/��
�B�MA�˥P(_��jq;�Ҏ��ׅ-��)�x���ؖ��Kc���Z,�p���GH=�C��|�(N>�d0Y�z>��N�&�h�Z��c�f������ �(��~�^,R,��k�f2&� �Z�H$B(��#�������t,��9�N���,�"�ˑH$�)Ƙ��tg���L� ��y�t]ץR���ѣW��b1��������֞p4%��39;;�c����b�����J�s��훛4M��Wȧ�h�?�槰������[8F�N��M7u6���({{{T*l�~���>^��Z��L&|��'���S.�ej�����|� ,�q���$ ����~�S �f�x<�Ç����t:24���]�4l�����n�K�ӡV��\.999�����Q^.���x�Iɤ�č/�)삱���f���a8w!i�f��� T*����V(�8ԿZ
�B�sD���~�N���^�_=L��i����� ��8J �t��aZ�c�"0K��" g�C8�/��u��f��mnoo��ۣ\�e?k��w��������}B�7774 4Mcww�|>�� ��j���%�f��z-��b�({��n�&BD[{�? �s���'��k���l6K*��BL��l6�%���!��@�z���T*��%���,�K���Lj�E����b1��n�y���6 ���[��,���R�M&�w�])�np("���$О�k��9����E&u��0��G2LK������Ÿ���������/"&%J��|��hD��a0���'O�pyyI�T�����4�1.ޓ|>O8������}��tJ�Ze�^S.�I�R��O�ѐ5L�l��"���H$�����u��)O�<���eqzz�����y��:���i�s�����!��/F�MӤT*��h��=�L888���X�`�B�E���P(?D�`0��l���@ �/������d頣����7���~y��r<b�u2�Hq�X�j$!H6�j���oLt�5v:��)�Պ�|�|��%�д��ӛ�f�{{{R��V+r�;;;o���8WWWR�ڶM&�����f3��*�PH
*1һ��h��t7��@�y�R�l6K�ף�j�1�t:�U�$\�\.G&�a�^���h$����Ʉp8,�H$B8��w2���l۶���20�ٳg��c��$�bQ�k��卜�q��t*��������x��ɇ��!sJ��kRT�`��tz79�\����p���.�pxk�}3������Ь^��d2a�Xpuu�|>�0 Y%�&'ز,����l�u�
�8ΖHt�f�I��!�HpxxH0d�ZQ�TX,������mZ��|��lF�Ւ]آ�J\#�i����q����1g�o=3���/ZL� ����C��/*���t�^��{�G4����Ǐspp���!���J+�o�_+�B�V,�.���lM&bQ���U��Q��vi6�L&�7k���w�����Ra�����gd"A��i���7���߮V�M����Vx�x<�.��@@
�X,F4Ų�צE �W���V+R�GGG�B��D�L�],T*�u���L&��$'''r��M8���� �z��r�eY��a�B�Y�F���I�)��/�in�h�,;��bQ
�^�G��&�N��d^J�b8�ϓ��%��F#noo��j�I��ݕ5Gb��q&�g1mY��h4�a\\\H�(���3mYw�͞�ɰ��j������x.5 <�X�_����uq]W�`�!��pW?��sY�������m��
�W�f��}��&�ٌǏ��t(����Wބ�& +�č�4ebs�Z��<�Ǯi�ɄJ����k�&�F�{Ӥ=ϓ�ͱX ��)���c��\.���\�E��u�v��k�ߧy9�ɟ6�������J%��F���B���ל��Q,)�����*�P(�Q��
���L�o��s�����G(`�<����'d"?���F�:�+��B� ���i��_���~X`�r�L���a�_]E�pyE�/� �͚^�&L���pH��a8�^��D"����Jg�,<z��q4�xH��=nnn��X���� �p��J�޺s��<j������W������b����V�ъg�u_�i����U#n@
2��tһ�.�T�L&s� 㾡P�t:M0�R�P�T��f��q��b���[t]�����B��@ ��� �H���CYY$�u�1����6 c+�O��i��Xp��{躉n���I0���EAS��DV,�b1Y�5��嘾�{QoV���
r�����j%G���1?�я8??�T*Q*��?��������2�T*�j��L&��^�T*E�XIJ,|ߧ��R�V��!�FI�R�j5y��q�3;���!�N���3V�����b�l6��_{{{tnƬ�.�=�z��ӹ��<�/~�DHV�Z���>�Z��h4�N���y���
����WJ�P���x���������~mՠ����O+4� �O��{�b���a~m.k��{��=�/�LMӈ���Z��u�G:�fooﭟ{��Ht���s^%������o�~ w�S���N��l&�û=��n�:�Ҟ�t�^{0�s�qR�s�D�������y[���}��:777�V+��\((��q��6���r���yD"�;�]����@`�L���4M)@F�������r�-�v�@ ���1����h$���p�t:e6� �F�cY�ш�� ��>�i�����+ĸ8�^�'�u$�� ��dr�[(bEr�wbX�Zn��3���j�2��^�B�D���$�ϓN�_���Ɓ@`K�]^�Zvww��� &� Ϟ=����|>���.�tZ��/>ן���X�A�a��ӻ
!���:���D�Q)f��fS�h��R����z-����.�e�y����� r�}��a^���y���0 ����z=�ժ����ߗ#�����x]M�B�P|]PX�P����' ��i���9�������>k������a~��}��rI�ӡ�n�=F����b���1���h�����+]^%���ܬ(2M�h4����AY��6�M�/� !�o���C&�!�b>�:�im�%&�K�'�)��q��J�����6��l6e��p�"�{{{[cַ����I&�a8���e�r(�z����a�J��PB8���yn�P��p���O�����evvv ���0 �,��`@>��P(���d2)_!���'�IY1tyyI("�H�y���t*�+��}C���� Z�/|�yװ��*�S*���j��ay=�kC����jK�ᖊs-��n�+����$a2�0���h���1|��������� �ww����⣿�˯���s��; �߇�pH$�^�s{{+o\�8��n�I&��E��x�W�n���c�9�������N|��>��E� �����P(D<'��Մn�+����,�p���k��&�HD�4)�JJ+��-J+�W�v=>��v=Lc��M�X;�T�8���~���o��b:�B���)�Z���[W��*�^��l6c�\J�YQ$�x��+�\�ӕJ��.�}Eob���v�[G��b?X0[�T��{wi=��5g/k����{��v�����W8�[�3­���r�U�b�b��n(,nZ|��u]���tm!B�����d2���8;;������p8L.���\��D�V�E����}NOO�����r��7a�ͦt�c��L�ui4\]]��:�t���}��7V)x�_������ޯf@�'��������n�D�<W*��
ț=� o�͋�x�1�F���z]�s ���z�&�0�-����ve��k�~���t���R��+�����Ϸ*��Ϗ��,��׵��m۶ �����\����5�qp��M��r�Q�g�z��?�9�x��oY�V��W�I��i�L�S�>}*'FLӔ�
�ZM�W�U|ߧT*��
�B�P�,QX�P���1�<������6·X,�n�w%�p��h$�}7ëV�� �ڬ(���D��WV��u����*�x�tY9��@�k���%d��/ʃ������~�磬�Պ��í���jE�^�X,2�ω��r�2�����iw����%�n������X�x\�?���IA��>�e�k�����ϯ���x<N&��U:�H�d2)�a��|vv�z}��+v���,��J'-�K���i$��;�+�a1+����G<���ǴZ-����d�x����v||����� c�����r�|wwW���1׺m���yn>й���_VM�@�����m�{�:�㱼�$�4M���l�42 �x<�h4���T�B� �j�Nk�F(��\��f��Ni���'�cW?�^8���$���aD\...988�{�$�f��bA>�'��H$�F�����F�T*�F#nnnH$Ģq&��� ��I�C�2!t�g,�P(�(�P(^�e�|��|�hl����>���~1N�������>���N�#�~�J�+�Ctߎ�c�={F�Ze�\J�&��Xs4�;|_����j�F<'�NKQ�&��5^���K�o�p8�����b���R��y����k�v�t�]�鴬�)�Jt�]����K����D`���>��R�-�
����|]�0��>�Z��NB�!^��ѣGD�Q�2v�]nnnX,���y�A����x�čF�P(D2��u]���H$dh�nE!���`>$���駟�G�G<x���`�0������j����P�9��H$��ݕΪ�2DNԃٶͤ��]{[�Nʤ��u<拹tIEb��A�t����a�6���ꪽ�=LӔ���R~��qv]�h4���<}�����?9���>�ނp�"�2[N��?�KZ����G����'�jQ;u{{K�ד�^��i�D"A�T��޶B|�G5>�77�� �����_��ÿ�K0�~U(?Կ>
�����v��>o�Gg]4��� ����=��{�0��L��r9)Ծ���n�i����s)|��t̾��N����� �Cz����l&�w7�xE@ͻ����+f���V+lۦX,��dd���>~�6��L:������I�z7�"\i!Dp$�\.o�����j����%�����4�x�mۦ\.����v�4 Z��]pQ$7��3,G⛠���'�B�{�&��E4����j����b� ����+�E,�s Ð!P�DB�*�7�i�L��������'O��l6��w�C6�}c������4�ͭ�wAԀ��M�*��� �֎0̻$��}B1 ��X-W�&I����l�3��|1� ��Z�=�V��a2,K�\ g[ܘ����4��l�8! ��dGB �vi6�RD_\\�8���r� �Hț_?��qݻ���|.�;��@�t:M�T��/�����˹#3ϖs�?��/��������+
ŗE `�B�ZJ���>���o����.�K�2���,���q�N�f<�K{���d2�wN��&�&�+����<����bLWT��� ;;;���b��; ���<��|����]�P�\~k��>����0�K��ʕs�>� �"X�w��N��VaK'�H��Z�w{_r
���L*�d24 ���3���B2�w�}��@t ����f�F�M:O����z
�~'~}�]8��"yV���K��%�p�D"��ޞ��X�`0�^�S�V�D"R$�b1��C&����z�f�I2��P(l�ox��!�\�O?��?��?�������׺�"��R�`�6�T��;�;��� ���\�^}��M3`p�����?��4�����<q���wfe]��=3ݳ3�ٝkg���M�(��$��d�X����A�ðlQD I�LQ�"�$w����cv��黎��Ȍ����/��gVf���U�������Ȉ��x��=�+��I��R���^��v�}5_Id��]���7 ��>�\y�^�� ^�W�9s�ƭ ���L�Sv�w�w���wڹ[6�n���������݉�e�������x�a۶�=�x���� �s�Κ��������,�|�ټA�W��B�'�Y������As�igL1`9"�B��(����Z-j��F�l6K:���%���$�-u�Y߳+����*c|Ԋ"w/���.�i�]��㲽��}�B��+������D�!������o���w8�՟a9����x���X,2 (
�b�s���f��e��)+++h��x<fii��h�d2Q���2�Ok|����|d2�-����|��_4�"1jBs �R�|>�.<|��-��b����S��2�p�d2I$�P(����:o�ZT�UNNN��t:�~��ǞJ�����y���y��T68��>�u�H$�L&j��e��q��#vٶM2�տ�����6�Ƙym���op�+E6.����VK=��#w@�[����m<3 ����`��w�����*�L�@ �va��eb����L&�d2x<��:�i����8�3�������z<�s����
wW������3���5F���k��3:���B�gB`!�S �=�*ƸU�]���a��dH$��m��*�z�l6K*�z������?��I�>�Oe��&�uW �C�ë^Q���*w�M�Ѡ�l�I�t�ꣲ��H�g��>��8��6_\�`9:���_�����[{}���%�q�v���._ڌ���>�n>���P�� �B��yz��ʨ�Z-�!_�>�%Џe�0�����<��m<��T�S����� �v����1�� �D"�w|qq��pH�բ^�s��<�\�B�p�‹��eccC��ɟ� �����k�F.�c<�����&J����z�מ��2�NYe�X&���U:�����I6���ޮ��婢�}��� �[b���4g7#�����[��f��I�nE�� {eeEݝ��m����G��d�l6�����///�гn�����,�`0`2�03M4߃�`\:@�C�� !�GA`!�#9��Բ1t�S�jy<2��Z��f�Ϯ��4xR��N�����et�?˲���c<�[Q�f���Qwx�e��X,F��x��=���z���sSns����~\��N��;�õk����=F�1������� ������csڃǍ17/f�ݵ<�Ʉ��eB����$�I4MS+���x<L&��΀7���8g�O4 �QL������p8L P��G=n�~2�$�H�`��騵8�h�d2�^�XLe�k������:�͒�dԺ.M�H$|��_f�;w�<6��:���loosxx����S�W��{���Q�Q�M�IJ,V�V)lĘM,l����7�xS��r3�~����Enݺ�`0P���,��c��y"���u����vs����󱸸����ò,U��f ��d:���� �ì�������S�VVV��07�[���B��V��B~�d1L�59���Ԣɀd��̧�LT�r�wO�|�
��Q��������a��6�^/�\�T*E�����Z�F6�Ues�#۶ �j����d��nvx��F��t7�u��ni��l6K:���j���m�6��Xe���>�~�7�L�ɲ�q�T*�g���>�BA ����#��5M�vz# �v0�@�n�����a
��ٌ�tJ<�4M�>�O팽���Q�؀� ���U���Kv $ ����n�K�VS���j�ͣ��/ �{��V�����)�H� ��D"����v����ptt���>�HD]Ps�'d�Y�y����ﳾ����湽���oee���-�岚��8O��t:����A_nP:��\E�u���~_�ں�Z˲��j �C��"�R�\.�eY躮�������=��P(�d2�Z���W��:�XLMJ�B�y�L&ض=��x��?99����N��u��x�1���XZZ�\>�������n9v�ۥ�����Z�bޘ��o/�:̃`m~�ű���o.I>]V^!>j !.���*�'��۵����O~r�_{u����n >]9�{"���I&�*���jP��ɶm��>�J�f��V���_���<�~�]Q��xj/o4% ~���/��߽{L�?%��9>���еs��F�A��R٧O"����h���)�L�H$B��Pe��шv���XӘW<���y�f顿s0m��?�Ee<��P*���T�i"�x���-;w�}&dn�ҟ��?����!X��}�Kx4�R�t���9�v������#�����_��R��d��l���� ���$�P�D"A"�`uu�Z�F�R���@ yr/��q^}�U���x��w����W`���U��&I��?* ������B�V�����X�\.O�ק���F�4�N�C(�P(���h���J������� ����S:��@��d�d2Q��y��}w*z0d41�T��{â�LWdIDATέ@q�c�E6664L^�WG�N�x�:���_Z ����Z����g6���l�4��0���I�՛k|�o����>�U���t��}c�k��>���J��NqB`�>���7���Q�Ap1?I�����˷�_�����n���U���jUг
0���F��t���=av׶�~nEQ��W����`���
�T�7���{�7�l��?����6��yfZӠ��뿴ɯ}i�^wX�e�n���^������~��_~���������x�^��)^���7o^D�Y�����w�X��=Ժ���Z���J)� �Ą��dfڄ�!C�V�q��]���XYYy�c��z4�� ��>���|t�.�{��� �v~8�Cܒ~7�7 ��L�S5�� �� <��jp{Z�ݮ�:�TJ$�B!5T�m��F���� ���]��&�f���:��Ǭ�����3N&~�ӟ���/_�>������j��4�b����*a.
d�Yt]�Z�r��=U���t��P(D�\f0�~�h4���kkkj8�`0��ݻ�b15��];�^�p3šP�X,va�{��m���q��E"�����:����.���������B�o�/o����|��*�`0�z�#���&����d2,..0;�zS,�&��|67!>=$,�8���*�s�/�KPǦ�wީ�_X ��C��Rʅ�2� �Z���C��:�\�h4��h������|^e'ݞF7{�(r����1g��Ŋ���������-����8�C�=�?����(D�Lh�f32� �L�X,��&q�f3NOO ��i55���c�&�XL�����u�+-ˤ�-PK8��9{�VC�����\�cM�1�~y�`bb;�54
I?7#���#3ϮH$B B��d]��/̃^ǚ�kO�ݲ`����d� vs�ĭVKug˦�N9>;�:�J�`��鰻�{.��rd�Y5�l8� �����ضͻ����)/���
D��4�Ʉ���]����w�"�eӯg�����Z-R��b���#�����b1�^K�Rj�[ �8���j=U(���@����l6 ���*�h���u4MSӭ����E7 �^|0 ˲�Fjڴۧ<�L�1��A��������h��t M׀��e��:o~7̫i�l6���!�H�7n��f���S��\.G2���n���4[M�>?�X 8$��♓XqN�3blZ�����L��6�e�{3��o����4������ij�{{{�<�Ͷ~,ˢ��R�Th�Zj���g�Yr��*�V��W�]Q�N�>��lxՓ�7K�nߪ��!�H�ݻ5�ɹ�����Pn��{5^��5^x�KO�?i�v�V���⢚��8��G�F�
&7v�f�y�d5ˋ+Q��rs�df��hS���KwW�S���1�٪rzb;�WG�6���T*>r��8�����ȜOE�z)%�x�bg�� ���3�nɭa��~�ɤ�Q;�LT@\�V��f*3�jg�k��t:�l6���׏��#���Y[[c4���@ @6��0 R��X���C�����`�m�P(0�988`}}��!W������eYQ�V����r9�=T��r�0Ԋ1w��d2��lr��-^z�%&� [[[��u�]��^��� t]Ƕm�E�B��~ժᖖ��vB����u�N��i��N<�W��s4�������m����|ᗗY__�����z��콮�K���*y�s�{{{X�����3��B��B�sJ� ��̲/���8d�~|����)�^��G(R ���i�b�loyy�Y�V�����F��r� ���7
�N�Uid��87���E��h4�N,�� lϖO��p�4g?,�R�p:���Pn����A��������.�m> �eQ�Tp�|>��Հ� k�H�f�I�P�0 ��.;;;ضM�TR}��
AVsA, |��~�dr�rد�T��p)�i{�r?@:�yd�g�7�ͽ��̭�SӨ���%���Gq>���n x6K���.���v��3� ��N���U��p.��qZ��JE��߾}���M����{�.���,//S(����E���9>>fyy��������p���e�!
���ㅅL[��p8T�����z/�Y�P(�t:U����}ww���=�����B��t:�\.����x<Vϩ{L
�X���8�A���^tp�� �C`��<_��3hO�L��ߩL�&�����*����{��w�����ܺu�F�����t���F����0.<�B�,I,�8�Օ$7
Q�8lc��x ~�V�hЃ��n��h�NNm�V+8�2S��l���� tee��`@�Ze{{�X,F>�' ~����n�] `:���6�(r��X,vnx�ܞ V�غ���A��h�4�y4�Q?8gB9��d"� Ӑ�w�K<W�������b�&�D���5�gkk��l����XT�Vi4,//?vm�i��F�ŵI�L���$�s������р�`�ƃ��X��a}L$`pc!,'�O�l�t  �L>q����ǝ������rL&���jb�������R��N�Y__gqq�w�}���-NOO)
*K{||�a&C��ڽ^��|�V���˲�x<��~:�����4M��z�N��t:U�"�x��p���W���e�n�y������?O8��͛�b1�߿O�VSC�z����n�ձ��N��1)��j��f�*����Zm�?�0�Ndvm �`4MG���K�`F�x�Z ���?Xg���@�����7n�̷�wg#��F�<�Xq�J:̯��&�ɿ|0ڶq���ï}i�_������l8�NՀw¯��x8(~��'ˑH�P(�p8�������H$�f�a�q�OL�3 �� ���IȖe��t�V���mU��~�%��n�f��V�x�^��HD�.���O�q��٠���N��`Z�4�As��^/>�C�o���O_?�;����=xl
����y�/�{��j���s{H��� ���1�L���#��2�ш�x��ʊ����v�:�����t'?k��/h��+�.��t�3��مZ�[�&��C��r"�a���u������m*�ʅ�Z�d�\���̰�����H$�}�6�|�w�}�J����Z��{��n����7�}�j�F��V��>���U��(�шF�A��`0��Z�0TeI$aoo��p�P���\.c���j:���UǎV�E��P�Qw�{1a0��p8����z�ݬo��W���Lr�S�j����7�Q�s�������ֻt:]2� �tZ �z�w�m�X,F�� ��>`w�G9A!~ !.���y�A��N��ƀD�˫��K��'�n����#�Lo4��?���-t�Cr�^�H$�����м��E2�T������ ��N:#2?������ɐ���=*��ʸ�'�n��c��nO������`۶*��N���g�ܺA�ٝ�� ���=�q�s�v��/nf��_[�������< �@&�������$��K�Oʭ�j�|>���ω��� n��� ��,//S*��u��d����a���riϦk0pzz���*���Vv��'��IF�}FS�~�r���ƴd��G���Z���=v<n�V�TR���ݮZ��f ��x�/|� ����������r9Uq
�(�$� �]� ��g�Bt]'�JQ*���flmm����k� ��,�DB�f��>����ڶ��0����� �m3��>���{�m[�1s_@��$ ��� �� s��\�:)����Η��:��Ey��� � z��R������ ��j����*GGGܹs���m���(�J��u���P��r�w !� !�y�go<c<��ytn��.ƘZ6]�����*}�,K �9�)�T**3�Ł@���UU�j�H���翷����w�,t4�Uz�p��V���鯼����n�A�ǣJ�d�li����v�*C�A~ֳ�[��������� ���<�z$�G�om�����J�;a!�7r|e=��9.�j���zd��GNZ����z=f��ш~����2KKK躎eY2�~��c'6;�C�^���t^�Z���OU �2N���^y�o/y��yo�m]�=�|7���<<�)�H\:\�V��UZ�@@��u�-��V���jw888�^�s��m����4jsb3XD|i�~�f�i6�ضM�X$ ����&7ü�9 �L&I&��2���>�N�C��d:����^2 �F�A2����aY�P��h���Q%�g���hD:�&�J��Gn���W}�]����uK�K�ׯ_G�4���y�7����/�{/��f���ݣSX��|+E����h4����n���K"� �1�NU&^�uvvv���Q��B�,�IAk8����[�3&��9��WV��>��Jg�b�߯�ݓ��t�N {��F�\_q8&�I������?8`b�g�> �q�o���Z���bZWgKgݲ����̈�lI�Ùۇ������po�������۷�|�f��i���M�/���k��\��s����m��*}7 �q�T*�j5���H&��v�O&��:׮%��F���� �v� ��AR>��y�P��w�{H�=ԺS8�Av_Ť���y�����5U�[]�Vn��c�����dh�Z��G?��_�2�L����񻇴��Q��/}k������j�j�z�`�@�H$����#���z,n�
�������p�׫.�A�# ���� r��ln%K�VS�h7{����AՋ����`0P��5Mc4��o��;�p��ۼ���5�Gܹ��f�B�@.���jQ�Vi6����XZZ�V�q||�z�K���}B!Y�$�x>H,�7���߿s����Z�ɹMx���~����W_$��
>��n �ٓ��t�� '� h?�k�N/~��1�Y��N���R�b�@��Pe�gY�f`��TP�fq�L�ف.��Σ�x|�G��,w��ۯyw���O�-�v! I�����>�n��`0���Z���k���.� ͱ8=)��z�t݇|�#���)ж3�:f �k�?�M|t�4\k82U���r�� � �ˑH$��q�?���=���7'ԏ�|�o��֭[��}����f��i�E�ݵ�;�l���{a��騪�����.��یF#b�ع t�XLU�����h4�����m�q�ٶ�ʒ�Ѩ
��5t�����0�������޽���F#��<�f��xL,�P(pxx�l6#�8�p�N�C�������(����y<��rK!>J q�}�^��#f�}.�t��{�W73�ͯ����{�D��@��ߧy��� ��?��n���u��~۶�Y�a85瓐/ D�yPo;�H$�mG��>.�=�>[�,��m�*��j?������b���M:�;;;��u��*~�����Gf�]�ɄZ����i�w�������C����q��c�g&��K�q�czc C�T�G)�t�x��4\�l����ͳ��"�����9`ԛ���z���oNx�;����%��$���h���g�n�\&��m�� ������cN��`:�R(�I��x /����m���f�l6�&H/..b�&�v[�U�ڳ�)��G>�gaa�D"A��@�4��$����mw���6��K:�VY]���L�Z���5�z=:���/v����~?����/~�d<��� ��=l�!U
��b�P\:�ϖ�B\q���g�fS��͏v���/.�n���zj}�ٲ>7H=����Ӟ݀���'@��*k;�����f3<��J:�G�. 9rd�VR!B~���jG��L����`@�������d.�Xu�T*��.~��|>��� ��޽{�_��V�<N�^g8���Gݦi��v�����4�h�Í�0�|�ԥ;������Z�tZ�[�F#������|����͓�Δ`0�>�fwݬ�{���Gv+���gee�`0H�2�?��k� D��6�ܺu�`0�O~��F�t:�x<���_�����=n���ݡ����D"�z����h�Z�gw���|>NNN��jx�^�� �����d0$�͒�f��O~���&�ٌ��T��3M��ϭ۷����?���kUf���Në�x#�W��5ҥȳ~y!�0 ����l�a8��M�,,��������vO 0/���J����dB�ۥ��3�ԉ^���n���׎Ԯb��8�f����S���3V|tǡ�h0��F��b�K������tH�R��� ��j��+�����3�U_f0T{�/�Nv{,���i�~f� ^ݹ֬����ض�9}�ow6���םO�~ϳ�o�,ٝ,o�t��ׯs�v�?��-ڧ�.�p��/��^��:�N�7~��^��cw�hw ���Q}���T��j52� �d��lF��|�~���"��C7Tɵ��Q�b��TJ�C��x�J��VFi�Ƶk׈��t�]z���}"� ���u��?=�?v]Cc>Xn�����o��x�r
*�x6��#��k��0^C�4���q-!����{z<�q��f �C��.����t����qz��^�Z������_����wy��xf���e���߾΋ O��Gk2����t:}!�<��5�����.n8���R� �O��ww��R��fvG��ٌL&#i�� D�LF慡���d�H�O�p���i��i�*�|��y�u�N�ִ�����7�ק��?ݦu2@����8 �S~�/wIBl^�d{k�n�{n�| P���,����c��>��ܺu���eZ�C�{]�)�t��f��k �C����L&*`�t: �CLӤ�h���������k��a&� �d�V���{q �Lb�v^��8�+'4�Y��w�4��kr�B<r ���[y������^�|6�v��G�K/�����fy���� �'��LF�l6�T*�^/�hT����J������7)�Gd#~^^J�� Ky�3�n����~R�ԅ�A��fgg۶Y__'�c��:����U�t� ��~���Z���8�,�>�ݙ*U�h&� ������is����ů/`�a8��T �fv݋w���d�&3��[rm�X��?m�:���+c`2���Z��nn�N����h�F"� ����9�}��v�j�F.�cuu�÷���7w�TF���ק�[����� ^�܋��mNOO�,��4m۶Վc��������������c3���G��aN-�� �g��B\Y q�-�B�G���߾���y6�йY��뿴ɭb�g�P�F��*m�L&jbi&�!
���V�E�RA�4
�����C"��a�������ҳ~
�<�4���8�����v���� �[��������1�͸q�Z�2��έ�z����u]�"}۶���O��+�]�x�k%,��?.�IС�����ȍ/�߿xbƹ 3
�L&�F����]�g?|>/^��^s�m9��%k4�^s�ck�ujY��|��[��\�v{zݕF�� �����i�����>���A�3�3��-�������y���Y���X,���L&��1�@@��n����;7q�<�3����{� F=�� X��#�~o !��M`!������ �yԡ����yi)N!�����ey�~M7hq����T�l�i��r9��$�z�����$ ���>5������d2y��x0����x<fii�^��N��^/�n��ׯ���{�v��Y��Sw�L6�}�k���f�8����_��+9�����*��e��F�����3����*����V ��G4%��N��u] t+�Q��]Rs��1 �`(H>�g<��w(���8�Ev�P۶�F�D#Q~�;�g��3��Cu��ޛun-O2�d4��fw�S$Q�eYx�^���Ր/�D����n�烰BK7S�];��K۱r�QR%��B<; !HG�|�f�g�n/��� �F#��waa�p8|���r�ףR�0�H��j ���1�r�l6���
�JE=��sK#������;����f0���B.�S}������F.7�E�Q|>��s��V�E��W����c���{88�ǭV���)� ax<�z=��*�O$��aj��z�`0H0<�z���e#���(m&����c�3%�^����6�n���A �\.S�V��|�J% �`:��X�e� Rg��xۄve�Ł���a[6���FM��F�$�Iu�.�JT*��"�~���=R�kkk����8�l6i6��J��g��6F�ia[6���(���U�D'�9B(�es�s�����$C��f��n���C �D�QJ��@��Z$��8�F#*�
�^�X,���"�`��l���>�j�b�����шf���ʊ2ω�hD��V����|]�x<fgg�n�K�T�T*��Y��1988���]�0?���Z-��酌�i��4޶m2���:�C,�"�<�OX\M�irxx���c:��J�T�J"�P�/��K�X$�S.��t:��i|>�V��`@08��Z�E�ߧ^��`8�H�]���_��|�ag��i�8x^��k�����`8˲���N��aܼy���)7�u˔M�$��x�yC3������w�oll0�NY\\�X,�}���X,����f�r���� ����������k�L��8��wns��T�{�3��B��?�'Y���ْ3H!������{������u��l���� �q#���']��X 0rK���0�B�H$�v�^�q&� �j�V�E8f}}�px>�j2����G��dii�R���8��eb��c�=�'��h`�&^��D"��S���4�M��<��˪?�%�GGG�EL�T�O�4��$�Z�^�w!�t:j8P xd��Y�$^�%.3�L&d�Y*�
��H$h4���sU ��h}}�f����)~��B���i4 ��t:M�Xd<�n����#�Ns����B���6����b���2��M�}�]��<�\�v�M��d6�a�6����B!666��b���;?�a[�� �"^��擘�� �a0�̀�z�V�E$2/�v�2��:ng�Y���޽{�F#���/��Žq��Q�E���@�}�B���B�����[��h�rTY����C����|�Z�N�C��f00��Ԛ�B��N��-va��u5�yuu�h4�N�F�;;;��}U��:�Z��x���Ly~NL�SU��fn-�����J��`
�������r�~���N��۶�k ����U��y�49==E�u,�"�N?���4M�����A�g��m4M#�R�T��b�A��9� �P��OOOUip�T�P(P��999A�u2� �����a2�P���g61� �WG�5�Vi���EVVVT����!�j���z ����'V?l~)��N�{?�`?8���?���� f���5�N��qx8r��M���z�,,,pzz���1�D�Z�F�Ze4Q(��V��k��F&�a}}]ZV�� ���S���cY���¼h�=���>_X�3���,�l6�V�<mI�i��&;�E����E�~���m&� ׮]S=���J�B�PP%���k��L&u!���ppp���)�T���� ����!�ш��U2� �f�N�s.v���z]탆�{�� -�L�C���n�g��I��V]\>��X,F��baa��@ӭBXYY�����h��?�ϫ��j�J"� �N�
ϘYڍ6�~�P(�f%���rrr�h4�ڵk���S(��>��ۼ���B&�J���/}/�^����$U
s�N�QF4�g��^��j�3� *�����F��_6�%�Hpxx��P�EI$x<ǡ^��J��'F !ij&gB�Uz�G� {5MCw��r��ĢX*���ڶM��Q����,�t�� e��Q{b݉�n����4��aY�ZM�_I$*3�FY__�p�b8�j�(
,,,�i��������J�n��V��O,�"�J=�J��h�i�jŖg�F#��1�|��U>&'�I5p��,�K�4��8�p�j����!�V�b�H>�'����v���ܿ_�}�D"�o~0��t�T*j�d2��n��{ﱲ�B�P����x<���9::b8�FI�Rd�YB�Ѕ�衘�/��^��"�i�{54áR=�|\f2�0���:���}��
������b1����f����+t:L�T���`@��Tӡ��@񼑳!�c9��`���=�!۶ ���2�� �0���84�Mvww�x<\�~�\֡���n�Y[[��Gϑ~�O��'��8����C՟�pp��۶}�t����8΅���H�`0H��$����v�t:��~կ�4����;\�xX���%�n��{|zR��<�b�D"A�\�����r9��,�d�x<�p8�^����������pWv��m��j�pg.��������,�����h4��j�b1��,�x�ǣ~]�0�0�����$i�_�FL&666XZZ����\�v4q||��,����v[��T��0 �~�c�y !ij ���鰏���\�=�y�'x�������n�x<����`��)еZ���]B����2M�r�L2��P�'����-E�������� ���z۶9>>��騵0.ØO��L&�~�nt�Ra8R�VU��i��a�mB�eY���V"�`x�2�i�F(bmm�V���� �v���"��H�p8�d2Q�*�
�dR�2��qb��R������ ���P��X]]�X,� �i�lnn�����jܿ�P(D&�Q}����i��,//c�& ��qNNNT0����E˲�^awt8�^�0 ���999�������|��cZ�~���tJ8� �B��������{��A!��t�Gw4���6�5?�s�qXI�����MV�a����x�Cg4#�����On�a:�rrr���1�����K��0N*�
{{{���K���Z�~�a�x�F�D�Q:�����������2�,�����f��>��._��4�z��l6���Ԫ����˸Ӧ�^�ڟ*���h�r95��R���U9�;��� 7O��:�`�D"���g��;wS��a�n��V�L&���������T}����^��&�w�] �`uu�\.G(b<�����twpg�Y��i���L8��n�j������x�l6#�JqzzJ�V�P(P*�T@���u�R�D(�Z���N&�����W-������󷿶N4����!��C׸���|c�WV��S����>?�m2���<:��$��_����V���c|>+++�b�G��Z�E�\���L&���ʅ2��h�v?iү�d�=��e�l6I$����J�.|m������D"A�T������*u]����R̳��0�`�����8�㨠�i��c&� �LF�_q�[�|6@�4��řZ}��㾴��ʢ�ݻ����l6K*����Q�����V�h4J�XD�uvww1 ���:��ٌp8L�V��ݻX�����t�t:�2�ny�x<&��`�6�x���Sl�&
��-�4�`�qH&�\�v�P(�.d���ˊ�b�f3u<h�Zx�^��B<�$B���[_[�~~��֐���b"H"��3�����号�躆 ��wNi ��g� $=J����(�i�59�B���� �]�q�.�˂*��r���0��U��a�_�~�t�����锽�=u���ׅ��c0�� ��H$���6�T��x����S���{�B���V.���9
]�잽@�������mf��S����4�X,F(�V�qttD�ݦX,���0H$�b1F��z���|>�tZM���١�jQ*� j
{�Vc{{�V��2��x���UJ��F����S.�U�����h�H$�q�?��՚�n����q����G�TbooM��z��j5t]'��%�DŽ�# ���G�)%���OZ��N��61��'@k���k-~��2��7�=��O�Svwwi6�,..>�,�����v��ؐ���m�rs�ve�`l\+�X][#���F/��eqxx�`0����,�2~���*$x��^�4��>�p��'����4M{�riq�L&��K�u]'�J=�4�'�x<
�w���E6�=���:�p�P(�d2Q+��5J�b�����2+++L&j��h���d2Q����:^��h4J4%�˩5E���t:5dnee��C8��� ��fض͝;w�N�������D��|�Z-��!�F�t:�i�L�S2����!�Krf)�x,Ӷy��̲/9��a�wN{LL���g<���E��buu����KO<g��r�t:-�sρ�Ƙ��v�w����E�;���.ՎE<�p��quҾ���Ġ���3�Ͱ,�����0�P�n���= ˲ �|>�B� ��.��<Uj4����n���=;$kaaAef;�ι̳�c�X,r��u��<�~�N����c4������gyy�ߏmϏѽ^�t:����I�R�k��*��P(���$��l6��z���C�� ��ꫯ���D"X�ŝ;wx��wպ$����B!�����4M�ɤZ=�>oB�#��t4<�㯕�ڼ,�Q� ��ш���K�e]�z�q��rh߰�荧['C&��~n<8LL���ٸ������rxxH*��X,>��xv�ຓ�������f�e6�1��D"r.αm�V�u�Dםz�0wt��f:�~$k}t]'�N�F�0�D"A�P874�-/�d2$�I���l�h4�Fܼy�[�nq��=NOO�v�lmmq��m��<�\��tJ��d:�Q�T �F#u�����l��T`��� ��i���[�n��Y�B���vwwy�W�z� �Ct]�� !�sK2�B���u��-�x� '����5t^Z���\~8�v�ܿ��dµk���Cj��bQvG>��ĺpqC��%����ʢ]�񘽽=�^�SO�>�
���A�{��^��ӓ �C5$H`��&� �^�D"q����X�4�ɤ��G��󱸸���:������h4.TC��}��Y[[���<׮]c8��k�Q�T�q�KKK*�u��ӑŠa�1c�R%u2�Lb�&GGG�A666H&�4�M�}�]��&�`��ׯ���J,���������쨞�\.�p8�0 ����^��/�� �,.�x�_�]�����ͷN�mg�+��y��nd��//��q��6;;;�����c� m����P(��S~���X�����860_sxx�x<����J�-�B�� @t]�����mY���R):��S�3 r..�v�ض����e�ΖA��>*���F�v��z�r��]�����u�P(���&�D���{���{�z�N�P`aa��C.�c�������� �������//��T�p�Tb2��)ؖe����{�.�|�D"���\.S��x�7H�Rj�q>�W��յU
������- ��O�
�����mA��n��xF$���׳��_\' ��z�qh4������xb?o��f0p��5|�� �^��#���>�p�C�Z���bY�z����K�����@۞��t:�^��F ��q��(�r��pxa_�e�3 0 C���9�m�n�����h�j���Ӡ��CG��a�r9b�ع!Y��i�F.����s��=:��Ʉl6�����]����oM�R��)���cNm^�F�?�"{�{�r9�� �jU���x<L�S�8��L&�4���j����cqq���M��lu�t�l\*/��- ��O�������_]�5�� ��D}�=�OrlۦZ����G4e}}��C���)'''d2�<G^��|�wzX��t���X/�Se����Xe�X ��i�������*�4�|>�i�t�]�D"����j��:�RJ/ΙN�t�]2��Zi�A7 5d��i�`���U:�'''��mJ��#w���q�_������X,��xx�wU��~O1�&o��+�K��E���m��(�t�x<��뺎�8t�]j��6���:>�o^�Kr��U����ּ�#����o/���<�G.h
!�/ !���c�� �� �8�Mw4#�3�����H�R���=1q'�� ���4��\pح����Og=b9�םg��~��b��t:e_� J$��q��}8��lj�����!�R,-���3Z�n�h4�JC�[<��N���q�%���zX����,>�2��N2�$�P�T���'�S(����;�s��5����4�QoF��?�׿0�� ���\�X,F�^W^�˲����Wx8�n����3��(�J���s�U�迿�tl���x0�{��=���W�O�c !�'B� �X�?�����g������K��Z
۶���,--=U���������QQJ��C�"�lkF0T��P(���J%��1�v���C����4M ��bx<z#����T;L�A���l� Q6�����������G�ضM8�I�Bq��|�5���(�~���eaa�D"A�\������y����X,���&�`UQ���c��h4��� ��p8���g:���{���%�^@ظ��l���w���-t������d`�����B�`T*1��9�B| �ބ��z���)���t���W���+7�7�PR%rOb�6�r�X,�T�8ų1��u���>~����]����1��x���u�������D"�J%nܸ��NOOO�t:ܹs���Ur�"w��[c4PӦg�����W�z��!@������j=���8�~MӤ�W�3�N�t:$��K/�9O���I�A_v��H��� �����,��Ew�L=&�\h^}��@�K"?o7����ʠ}>�n�`0�V"�}-�bmm�T*E}8��K�3i:t�#����B��4f!��e;��?8��>�q<���k�F�;���mv�çb�l6��
��=�Z�;;;lo慨@�����!;;;�r9J��R�۷o����V�lmmaY�b��� ��"����bQzC�jg~������pT3��?������h�Zjg��,�b8��� O������a�&�D���i��L�QΖA?)`���A6�����x�^���)���� �����yy�� "l��q��������3%�N<���c�6~��4�m��t:h���8 �C�-��4� ����&x��i;���4t�C�8같�>�{M&NNN��Q�|r��`�m�8��PE�Q��!�@�b��.z�AVVVH�Ӕ�e��N�\.G$������z��ǘ֣����fj:$�ܾ�V�E��'�L^��t:e4�k!`�:�t:x��GQ{R� Ϧ �,M������v)��t:��"�x���Ǎ/d�M����!��ǁ`�� �P�_\8W��ŨT*�F#|>�m_��dY�V�@ @��#��Ɖ$��� Y`džX&H,#�w!��E��Omf�tF�G��Բ��'O��F�!�P�+#�i���},�"������ �@���h4:wC�ub��p�L&���1'''8����L�S<>���iX�hV4 �q��� l�����`0�4M�ᰬa�l6�����;��݃���e��u�D"A8�Z�rpp@,�P(�4 ãs�+�n�hW�ؖC<$��l5�8�&��Aw:�{��x4�5d�i�D |���%�迿�dd� ر���ҷ��Y�ܑX������N�pI�[�k���x��7��;M�Wz�ƭB�WW����%Hy���cF��
8���i��ܸq�z����ɥW�0�d2��qj�;;;�������� �%ba��G���e�ٸ��|9���'��j�XXX������+����L�S���Q4M{⅓Or��x�^J������unH��i�~<A��p�h֥�����L&Ë/����Q��5cnlY���n���8L�SR�~���_Σ�o��Z��y�[�l��fύB<��B���{��/��ӝ��ř
:,��Օ$?��:w�r{������[���h@<��W�����:��ϳ~��x<&��Fi4���P(XXX������C��&��\��[J���m��v9::"��sk1�Ow���&8�K+����B]��g�<*gY�~��#���9�n�����O�Y�A?�����N��R��K��H��{G�rZ��h�i^����Sb�kkkh��ʠM��0 F��* w˟a�~L��h�F����,n|��ʋiz��Ųh&H0��B���B��/|��ak���}j� ������Z����n���?xhbZ��?��7^;�0wF3���� x����ǐy|�#�q��z�f3�����DXXX@�4R��J�r�L<����8�i������j`���euu���U�Otii�/]�sP��h�F:�e9D�&T����J���3M��p��2 ��g7��4�ٞ�}�?�2��A:�&�rzz����T�|>���gmm ۶i6���{kk�H$B.�Seн^��O��Q��㱚�� �B�z=���(�J�F(�#�����'�� � ��߸�W������L�_��R����{���>�q8�#0m��F���˔2$�yd������>���*�tK0���h4�b1��F��x���#�ˑ�d�4�MR��T�V�E�Z%�ps!���ix��$�NgF�R���s��55����H$h��L�SU�9�T����
�`0`2��������]�<�A��i~����eU��v)�$ 677����������ܹC8&�Dh6�����|���~�d2L�SH&���!�xZ !>0�G�+�i���z�ٽ���5d01/��Aw4�ڛH��2 �����4�n�n�����H��׹�H�~�mUr��YXX �����4��x �3���L&�`0����ƶm|>�p�L&K2�$�������6[[[*vˠ����V�<�q��nT!:��a���ug�'�z��U����`8�V�qtt�ʢ���899a6��n��s�/��2�x�j����y�6�Vm �ٌl6K0d��� �+<B�O ���|��ł^<���:�1t"~9 =O�a2s�M,�!ϑ��ZM�~���ض�2��F��h�`0 �N���I(z���t�m۪dz8�h̳� $��K�`7�j��c�;���W�LӤ�n����X�����i$ j��sU�0��C�P �S.���>�|���e4M���˲8::"����N0�������xL��F�u��<�j��x̵k�d՘�SI�\B���F6������*�ι)�����J�Bٴxv��5�^yHwd�Cc)�Z1A*���Q�Ѡ���L���"�j��t���}���qZ��e��:���$��s����<�B�B���I$4�M��)�������|�WZ(���hD>��k� ~��z� �ݲ���@�4B�й!Y�v�l6 �����b1b��fS=_�n�^�G6��4M��:����%A!>m$B|l�A/��o]�3�n��v&��8��%�ܨu��t��pj���̂�'CL��s+Q��*GGG�A�� �躎���Ν;T�U����xn0mY�`�l6K$Q}��r���#��&�b���e���fcc�T:�h4�4M?�T
]ץ�W(n��I��.]ן:��A�Z�s���+]�� �:<<$�Q*��,�F��o���������A8Ʋm��"�p���S���S?�B�<�3O!����k)�����G?<�^���i|n!ί���f>�߁�H���^e��߳�,�q8n�Y�I&���a�Ѩ�3��b�R)��*�L扙�~��p8Ķm�ɤ*]�x<d�YՏ�N���b*�{xx���:7n��r4��0t0��3'>Y�e1 �F�(8}�L��e��{���|,--�!Y�Ʉd2�i�D�QB��@�veH�1#�
p��-��>�@�L&��f���iH,��X��Ϳ�é@�g���i�t����55:��l��d��C����A�4t]'���h4�V����a���8�v��x���gKT�i�����R)��z
�H�R���Am�Ik�hj��~VsA�^9A��t]giy�c�
pW+5�M������
��n���U���i��ɿާ��Ŷ|�^���o/Q,ƀO��(��"���5t�A z�g�;wטO��N'���3�N�����x<�޽{L&����K��f2�0��jX�E,#_ڃ�i�p��� ��,�ryާ�H��~����qЀ�آћ��������U3 9|�-j{h�Fve���/~l���z)
j���%vy<r��X ]��L��?�C�t����3���w��L��k�����@��&�B��d�Kgh�%'�~�N<�������d6�aY���i�X��eY$�I������'������a�&���xL�V��뱵�u.��z������ Y__���rҞrX�8�Zå1/�>j���|��d�U�k��������d8������M"��G~���Q,����t*'8�C(�������4�`0�mټ��{*�U�_���v^�r�+/<����iI,�C�X/�h�g&@�?�L�5VrA���IY��><,���Z�E4:�u��5B��irrrB�ߧP(ppp@:�&�Ja�6�Ʉ�`�i�8�s�J�X,���&�ތ��\�A�i�����X���Z|�X�ɏ�������m� �4&�o��wF�|����c\���m��~m�f���x�_�3j{�8$�%>���͟�3^�~j��tlQ?�vy�dh�8�K,��ԓX!���/nĸ_���p�Wg%d5�f4�h4��j�J%�ɤ�tO�=�b�V�E��$�H���N*�b�p8̍7(�����pw��e��>�4����@E�v�1�ĿWB�V�ޟ�Ѽz�ܺ# ۶�������X.�i���n�����������>�FM}�^�N}�4y������D{B�&�� !��'�騏�5㩍i;�:~����X��z0�����$�IJ��H��+w���ɉ�1��V�E<W�S�4��qf��Aͱ�<�����2 �
�֪LG�K�5Mc2�k�!bow@U0�e���#��>�{dq=��\0������y��������'��OY~�e��̳~z��/`�Y�P�j_�gv �Y���B�O? ��B��1t"�Xf�t�x<N�^�����{�L&C�P 
��Z>��^�szz�����~:��eQ,�:�q,ˢ���l6i�Z8���뛔�Q�cZ�ٹrm��<,�?+i�G#������p�8��p۲T��x<>Wj��t�Fcƅ|�u�i������ku�N�B���� �uC��WK�m�8��<����Al~)Oq#���B��$B�Y�B�@2��R�P�Th6���y��<>�O�1r˛S��L�p8L2����Ҳ,F��*��Fx<��t�Hd���s+Q�;��̰l�5����Z  �?oWI<_ �~���|n����]'����x�TɳeYض���!�f�k׮���Ew�����>f���}��`=��O��R�o�͛��[��v�-���r���%<>�-����3!���i���I�Ӝ��P.�i4�E2� �\���pؘ�̃�X�C1W��}?�l�6��N�C�Ѡ��Ϳ6�X,�������L�˗6��3�S�W'��韚 ��G�ʿ�k�5��8n;���[��˿�o� �Ε�
��F�R)U�|��`W�4�D���Vs�qD���g��| ��Q�H���"��c&C�H*@(��bB�� ��B�L4M#����{||L$F��xk��Ik�e�]�('|��%0�t��j5��6�i
�XXX �L �h�F�gLIVJ���� �ۿ�;��;��wpȯm�o�Y�K+O��c��\��������^���p��o9������׿M<��Oˇ� xH���W��$�B�����$ "���0�;����ߟ)K=mM�{u^^��l6i�ۤR)R��H�0$�+>M�ȯm�]^a:���|���t�:�e}����կ3�x��~�A�����q^��/�_���d!���y�%O!��C�-���&Éu!�u����n% x,|>���p����������>wi ��ضM�zJ���4I�IK��9,��ّ��B���dfcZ���jZÉE,$�����\��u�d�D�Pz�_!�S��B!>>���]����3$��_!��]r�B�� �qp~���88@:�#�I���|!���X!���04n,���罽��`?�3Q7�x �gH!���B�<���1�=� zX��� !�B|���C!��F� �7�,�x�]�RS��1 C� !�g��AB!ĕ�8���qr�F!>�$B!��eY��@���$����!��9R-�B��i<��ބ�wa<�.�^�[��#�IB�Y#`!�B\=� ��d�a���q��_�E�q�Y?J!�1�?!�B���ہ�w������t
o� �ѳ~�B!>b !���i��%�\��i0�K,��A !����x�0�J�AXB�$�B!��D"�y��Y�3�H� z֏R!�GL`!�B\=���2�!Xn��8�������֏R!�GL�@ !��j�,�݁w߁Ng��L>�2,,H �B|I,�B���q�S��#@�`�^ ~��3JJ��Bqui��Cò��B���
!�g��B!���L�����t���B����B!������m �x�E!��L`!�B\i�8MJ���3O`!�B\i�ib��BqH,�B�+�q4M�X!� ��Bq������ !� �B!�4۶�u9%B��@��B!���,˒h!��"$B!ĕfY�aHX!�9� !��Js�` !���X!�W�l6�!XBqEH,�B�+O�_!��$B!ĕ�8�e��x��CB� �X!�W��82K!�9� !���rG� !�"G{!�B\Y�mK �B\! !��ʓ!XBq5H,�B�+����z��CB� �X!�W��8�d��⪐X!�W��6 �Y?!�� ��Bqe9�#k���
���B!�,˲�4MJ��⊐X!�W�[�,�B\  !���rG2�Bq�H,�B�+k6����BqEH,�B�+K2�Bq�H,�B�+�4M� !�"�B!�,w��Bq5H,�B�+˲, ���
�X!�W� !���/�B�+��%��j�X!�W��8�|�g�P�B|B4�=� !�B\!��0�N�4 ��Bq%H,�B��g:�F�� ��@�Y?*!�3ϳ~B!���z~�c(����a@._|�E��`!��̒ �B!��~~�w���|��8����R�g�(�B|Ld�B!���]89��4갽���B����B!��:m��e����[`����
!���H,�B��A�@7�5�!=�B�&�B!��L��y6�,�]�\n>K!�g��B!��:VV`}c�g۞�n0�� ��
!���h!�B\-������d >,.��/C4���B����B!��z, &����?�g���B|�$B!�Bq%H�B!�B�+A`!�B!�W��B!�B!� ��B!�B\  !�B!��$B!�Bq%H,�B!��J�X!�B!ĕ �B!�B�+A`!�B!�W��B!�B!� ��B!�B\  !�B!��$B!�Bq%H,�B!��J�X!�B!ĕ �B!�B�+A`!�B!�W��B!�B!� ��B!�B\  !�B!��$B!�Bq%H,�B!��J�X!�B!ĕ �B!�B�+A`!�B!�W��B!�B!� ��B!�B\  !�B!��$B!�Bq%H,�B!��J�X!�B!ĕ �B!�B�+A`!�B!�W��B!�B!� ��B!�B\  !�B!����������IEND�B`�
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment