Skip to content

Instantly share code, notes, and snippets.

@borgar
Created October 4, 2017 18:08
Show Gist options
  • Save borgar/d715a87e442e64df331e36acb576e07c to your computer and use it in GitHub Desktop.
Save borgar/d715a87e442e64df331e36acb576e07c to your computer and use it in GitHub Desktop.
Nether roof
license: mit
height: 500
border: yes
scrolling: no

Of all the hostile enemies in the popular computer game Minecraft, one of the most fearsome is the Wither.

Players need to construct them for them to become active in the game, and players do this because their drops are very valuable. But sometimes, a player might want to kill them in an easy manner, say when several of their drops are wanted at a time.

There is a simple way: Construct a Wither right under a 3×3 bedrock field in the ceiling of the Nether, the creature will be stuck and defenseless and the player can have at it. But where to find the right place?

Enter your current Nether coordinates in the inputs above, and the plot will show all the nearest 3×3's (the bedrock ceiling is always the same). Hovering points will show their position, and clicking them point will "keep" the label on screen.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
@font-face {
font-family: 'minecraft';
src: url('minecraft.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
background: black;
color: white;
font: 12px sans-serif;
margin: 0;
}
svg {
background: #300;
}
form {
position: absolute;
top: 10px;
left: 10px;
}
.fi {
display: inline-block;
font: 16px 'minecraft', monospace;
margin-right: 1rem;
margin-bottom: .5rem;
}
.fi input {
width: 5em;
font: inherit;
color: inherit;
background: transparent;
text-align: right;
border: 0;
border-bottom: 1px solid white;
}
svg text {
font: 10px 'minecraft', monospace;
fill: white;
text-anchor: middle;
baseline-shift: 6px;
shape-rendering: crispEdges
}
.pos rect {
fill: #644;
shape-rendering: crispEdges
}
.inside rect {
fill: #888;
}
</style>
<body>
<form>
<div class="fi">
<label for="x">X:</label>
<input type="number" id="x" value="0" step="10">
</div>
<div class="fi">
<label for="z">Z:</label>
<input type="number" id="z" value="0" step="10">
</div>
<br>
<div class="fi">
<label for="d">MAX DISTANCE:</label>
<input type="number" id="d" min="100" max="1000" step="100" value="500" >
</div>
</form>
<svg width="960" height="500"></svg>
<script src="//cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js"></script>
<script src="//d3js.org/d3.v4.min.js"></script>
<script>
var data;
const sqrt = Math.sqrt;
const pow = Math.pow;
const abs = Math.abs;
// no margins
var svg = d3.select('svg'),
width = +svg.attr('width'),
height = +svg.attr('height');
const boxMax = Math.min(height - 30, width - 30);
const d = [-1, 1];
const mWidth = (width - boxMax) / 2;
const mHeight = (height - boxMax) / 2;
const x = d3.scaleLinear().domain(d).range([0 + mWidth, boxMax + mWidth]);
const y = d3.scaleLinear().domain(d).range([0 + mHeight, boxMax + mHeight]);
if (0) {
// show size
var grid = 'rgba(255, 0, 0, .2)';
svg.append('rect')
.attr('x', x(-1))
.attr('y', y(-1))
.attr('width', boxMax)
.attr('height', boxMax)
.style('fill', 'none')
.style('stroke', grid);
svg.append('line')
.attr('x1', x(0))
.attr('x2', x(0))
.attr('y1', y(-1))
.attr('y2', y(1))
.style('stroke', grid);
svg.append('line')
.attr('x1', x(-1))
.attr('x2', x(1))
.attr('y1', y(0))
.attr('y2', y(0))
.style('stroke', grid);
}
var bounds = svg.append('circle')
.attr('transform', d => `translate(${x(0)},${y(0)})`)
.attr('fill', 'rgba(0,0,0,.2)')
.attr('r', boxMax / 2);
var center = svg.append('circle')
.attr('transform', d => `translate(${x(0)},${y(0)})`)
.attr('fill', 'none')
.attr('stroke', 'white')
.attr('stroke-width', .5)
.attr('r', 2);
var centerText = svg
.append('text')
.attr('transform', d => `translate(${x(0)},${y(0)})`);
var cpos = svg.append('g');
svg.append('image')
.attr('href', 'wither.png')
.attr('x', 785)
.attr('y', 345);
function render () {
var x1 = d3.select('#x').node().valueAsNumber;
var z1 = d3.select('#z').node().valueAsNumber;
var limit = d3.select('#d').node().valueAsNumber;
x.domain([ -limit + x1, limit + x1 ]);
y.domain([ -limit + z1, limit + z1 ]);
center.attr('transform', d => `translate(${x(x1)},${y(z1)})`)
const points = data.filter(d => {
d.delta = sqrt(pow(d.x - x1, 2) + pow(d.z - z1, 2));
d.inside = d.delta < limit;
return abs(x(d.x)) <= width && abs(y(d.z)) <= height;
});
var br = 2;
var p = cpos.selectAll('.pos').data(points, d => d.id);
centerText.text(`${x1}, ${z1}`);
p.exit().remove();
var pg = p.enter().append('g')
.attr('pointer-events', 'all')
.on('click', d => d.sticky = !d.sticky)
.on('mouseenter', d => {
const self = d3.select(d3.event.target);
self.selectAll('text').remove();
self.append('text').text(d => `${d.x}, ${d.z}`);
})
.on('mouseleave', d => {
if (!d.sticky) {
d3.select(d3.event.target).selectAll('text').remove();
}
});
pg.append('circle')
.attr('r', br*5)
.attr('fill', 'none');
pg.append('rect')
.attr('width', br*2)
.attr('height', br*2)
.attr('x', -br)
.attr('y', -br);
pg.filter(d => d.sticky)
.append('text')
.text(d => `${d.x}, ${d.z}`);
pg.merge(p)
.attr('class', d => `pos${d.inside ? ' inside': ''}`)
.attr('transform', d => `translate(${x(d.x)},${y(d.z)})`);
}
function bootstrap ( err, _data ) {
data = _data;
d3.selectAll('#x, #z, #d').on('input', render);
render();
}
d3.csv('locations.csv')
.row(row => ({ x: +row.x, z: +row.z }))
.get(bootstrap);
</script>
We can't make this file beautiful and searchable because it's too large.
id,x,z
1,-16000,13038
2,-16000,-4083
3,-16000,-4814
4,-16000,-6413
5,-15998,-6688
6,-15998,-8736
7,-15997,6932
8,-15997,-312
9,-15997,-7029
10,-15996,13981
11,-15996,11734
12,-15995,14218
13,-15995,14063
14,-15995,11734
15,-15995,-10712
16,-15995,-14687
17,-15994,15956
18,-15994,-15116
19,-15993,6333
20,-15993,-690
21,-15993,-11074
22,-15993,-11073
23,-15992,-3226
24,-15990,10131
25,-15989,3195
26,-15989,-958
27,-15989,-10836
28,-15989,-15237
29,-15987,-308
30,-15987,-1110
31,-15987,-5563
32,-15987,-8798
33,-15986,12491
34,-15986,694
35,-15985,4979
36,-15983,9689
37,-15983,7327
38,-15983,-5721
39,-15983,-8065
40,-15983,-10125
41,-15982,12891
42,-15982,12892
43,-15982,-4971
44,-15982,-5388
45,-15981,12848
46,-15981,1628
47,-15981,-8343
48,-15980,10064
49,-15980,-235
50,-15980,-3025
51,-15980,-4485
52,-15979,9897
53,-15979,-5944
54,-15978,-10772
55,-15977,-3105
56,-15977,-4344
57,-15977,-15903
58,-15975,13873
59,-15975,7660
60,-15975,-15837
61,-15974,15803
62,-15974,8812
63,-15974,7660
64,-15973,952
65,-15973,-1248
66,-15972,11699
67,-15972,9360
68,-15972,-7859
69,-15972,-10996
70,-15969,-11967
71,-15968,-6781
72,-15968,-12760
73,-15967,7472
74,-15967,7053
75,-15966,6071
76,-15966,-9959
77,-15966,-13983
78,-15965,878
79,-15964,-14808
80,-15963,4929
81,-15963,3343
82,-15962,9560
83,-15962,-10145
84,-15960,8362
85,-15960,6330
86,-15960,-15661
87,-15959,14071
88,-15958,-4156
89,-15957,4678
90,-15957,-4122
91,-15956,2403
92,-15954,1868
93,-15953,-1417
94,-15953,-3156
95,-15952,4980
96,-15952,4137
97,-15952,-8202
98,-15951,161
99,-15951,-2579
100,-15951,-15450
101,-15950,161
102,-15950,-12100
103,-15949,-9230
104,-15948,11085
105,-15947,-893
106,-15947,-2497
107,-15947,-7202
108,-15946,9601
109,-15946,-6091
110,-15944,-9076
111,-15944,-11581
112,-15943,4185
113,-15943,-10443
114,-15942,1038
115,-15942,-12111
116,-15940,12493
117,-15940,-5156
118,-15940,-8329
119,-15939,12025
120,-15939,5740
121,-15939,-13093
122,-15938,9100
123,-15938,-11407
124,-15938,-14697
125,-15937,14146
126,-15937,11107
127,-15936,-9555
128,-15935,11021
129,-15935,10715
130,-15935,8815
131,-15935,974
132,-15934,-13347
133,-15933,11866
134,-15930,-11758
135,-15930,-13823
136,-15929,186
137,-15927,8553
138,-15926,5930
139,-15925,-11982
140,-15921,5260
141,-15921,-8542
142,-15921,-13114
143,-15920,15469
144,-15920,10259
145,-15920,8250
146,-15920,2092
147,-15919,-3498
148,-15918,13195
149,-15918,-11797
150,-15918,-15860
151,-15917,4259
152,-15917,-14846
153,-15915,-476
154,-15914,2559
155,-15914,284
156,-15912,8404
157,-15912,4056
158,-15911,15738
159,-15911,4433
160,-15911,1485
161,-15911,-10091
162,-15910,-2801
163,-15909,6584
164,-15909,-11865
165,-15908,875
166,-15907,10547
167,-15907,7074
168,-15907,-7079
169,-15906,-6132
170,-15906,-9984
171,-15906,-10467
172,-15906,-10466
173,-15906,-11881
174,-15905,15361
175,-15904,8282
176,-15904,4329
177,-15903,-14399
178,-15902,10831
179,-15902,-1521
180,-15902,-10448
181,-15901,14061
182,-15900,-10446
183,-15899,13300
184,-15897,-8887
185,-15897,-15866
186,-15896,15737
187,-15896,10244
188,-15896,-7589
189,-15896,-15425
190,-15895,11143
191,-15895,10244
192,-15895,-15854
193,-15894,-2345
194,-15893,-15442
195,-15892,3180
196,-15891,221
197,-15890,-5687
198,-15890,-14606
199,-15889,-1415
200,-15889,-10839
201,-15889,-12602
202,-15888,6155
203,-15888,5252
204,-15888,-7059
205,-15888,-7058
206,-15887,13930
207,-15887,7687
208,-15886,-10190
209,-15886,-12656
210,-15885,12168
211,-15885,-1294
212,-15885,-14454
213,-15885,-15786
214,-15884,-15388
215,-15883,13233
216,-15883,-3625
217,-15883,-11856
218,-15882,13789
219,-15882,-8113
220,-15882,-11856
221,-15881,-15605
222,-15880,15722
223,-15880,11018
224,-15880,7706
225,-15879,6992
226,-15878,-1039
227,-15878,-3608
228,-15877,-2444
229,-15877,-3147
230,-15877,-7553
231,-15877,-8395
232,-15876,-12785
233,-15875,6665
234,-15875,-9414
235,-15874,14687
236,-15874,9494
237,-15874,3192
238,-15872,5772
239,-15872,-5106
240,-15870,7331
241,-15870,-5140
242,-15868,10758
243,-15866,-13103
244,-15865,11580
245,-15863,13441
246,-15863,3822
247,-15863,746
248,-15863,-13626
249,-15861,14139
250,-15861,10831
251,-15861,5047
252,-15861,217
253,-15861,15922
254,-15860,6568
255,-15859,3731
256,-15858,6156
257,-15857,14777
258,-15857,12550
259,-15856,10029
260,-15856,-6056
261,-15856,-10795
262,-15855,10425
263,-15855,3778
264,-15855,-14212
265,-15853,-10558
266,-15852,3526
267,-15851,12942
268,-15851,11738
269,-15851,2106
270,-15851,-9741
271,-15851,-14279
272,-15850,-824
273,-15849,2696
274,-15849,-15570
275,-15847,14205
276,-15845,7213
277,-15844,6375
278,-15844,6376
279,-15844,-2361
280,-15843,-2844
281,-15843,-15237
282,-15842,-5001
283,-15842,-7211
284,-15842,-7976
285,-15842,-11485
286,-15841,11462
287,-15841,8021
288,-15840,-1829
289,-15839,11108
290,-15839,8158
291,-15839,200
292,-15838,7744
293,-15838,-178
294,-15838,-177
295,-15838,-2665
296,-15838,-12097
297,-15838,-13794
298,-15838,-14173
299,-15836,11295
300,-15836,1513
301,-15836,-1024
302,-15836,-3346
303,-15836,-5317
304,-15835,10425
305,-15835,4834
306,-15835,-6299
307,-15835,-6764
308,-15834,7203
309,-15833,-15871
310,-15832,13972
311,-15832,13844
312,-15832,1959
313,-15832,-3161
314,-15832,-7844
315,-15831,9529
316,-15831,793
317,-15830,4704
318,-15830,-5906
319,-15830,-6449
320,-15830,-13624
321,-15829,-9260
322,-15827,12459
323,-15827,-4148
324,-15826,-4221
325,-15825,7505
326,-15824,7086
327,-15824,4005
328,-15824,-10607
329,-15823,-1163
330,-15823,-10756
331,-15822,15661
332,-15819,11160
333,-15818,-7198
334,-15817,12765
335,-15817,9762
336,-15817,9233
337,-15817,3608
338,-15817,-7545
339,-15816,13847
340,-15816,12031
341,-15816,9735
342,-15815,13686
343,-15815,390
344,-15813,8089
345,-15813,3049
346,-15813,15907
347,-15811,-8690
348,-15810,14751
349,-15810,10946
350,-15810,8083
351,-15808,1225
352,-15807,8492
353,-15806,10707
354,-15806,5003
355,-15806,-9347
356,-15806,-13197
357,-15805,10706
358,-15805,3060
359,-15804,-14424
360,-15803,10572
361,-15803,225
362,-15803,-9287
363,-15802,9338
364,-15802,7177
365,-15802,2399
366,-15801,9749
367,-15801,3370
368,-15800,7263
369,-15800,6896
370,-15800,-2614
371,-15799,-10600
372,-15798,-7843
373,-15798,-13555
374,-15797,9058
375,-15796,-1618
376,-15795,6081
377,-15794,4867
378,-15794,-3192
379,-15794,-9034
380,-15793,12562
381,-15793,6520
382,-15791,-8672
383,-15790,5019
384,-15790,-751
385,-15790,-2937
386,-15790,-12071
387,-15790,-15285
388,-15789,7575
389,-15789,-4887
390,-15788,-4960
391,-15788,-10689
392,-15788,-15099
393,-15787,-6682
394,-15786,-2107
395,-15785,4538
396,-15784,7233
397,-15784,3856
398,-15784,-623
399,-15783,4538
400,-15783,-4034
401,-15783,-7101
402,-15782,-16000
403,-15781,12820
404,-15781,7569
405,-15781,-6991
406,-15781,-8211
407,-15780,-8211
408,-15779,15545
409,-15779,10599
410,-15779,3732
411,-15778,-8794
412,-15778,-11923
413,-15777,14898
414,-15776,8667
415,-15776,7874
416,-15776,-812
417,-15774,14416
418,-15774,14290
419,-15774,3236
420,-15771,7848
421,-15770,-1722
422,-15770,-1721
423,-15770,-10508
424,-15770,-14426
425,-15769,10569
426,-15769,9777
427,-15769,8727
428,-15769,-11029
429,-15768,-3772
430,-15766,-5843
431,-15766,-13062
432,-15766,-13241
433,-15764,3828
434,-15763,6925
435,-15763,-571
436,-15762,1875
437,-15762,1064
438,-15762,1051
439,-15762,-5353
440,-15762,-14331
441,-15761,1366
442,-15760,8514
443,-15760,4933
444,-15760,420
445,-15760,-8939
446,-15760,-14459
447,-15759,902
448,-15758,-10738
449,-15758,-11882
450,-15757,-1616
451,-15757,-3411
452,-15756,-12207
453,-15755,13907
454,-15755,-1590
455,-15755,-4667
456,-15754,10890
457,-15753,-9896
458,-15752,1443
459,-15752,-11260
460,-15752,-14756
461,-15752,-15742
462,-15751,14765
463,-15751,4750
464,-15750,14765
465,-15750,-4200
466,-15749,-9007
467,-15748,9668
468,-15748,5701
469,-15747,-7998
470,-15746,9301
471,-15746,2772
472,-15746,-844
473,-15746,-2081
474,-15746,-15708
475,-15745,-15460
476,-15744,6988
477,-15744,4007
478,-15743,-12570
479,-15742,-3145
480,-15742,-8626
481,-15742,-14403
482,-15741,11130
483,-15740,-12556
484,-15735,14245
485,-15735,11865
486,-15735,55
487,-15734,7793
488,-15734,-14116
489,-15733,9018
490,-15733,1772
491,-15733,304
492,-15733,-3002
493,-15733,-14116
494,-15732,14949
495,-15732,5365
496,-15732,608
497,-15732,-7470
498,-15731,14452
499,-15731,12955
500,-15731,2610
501,-15730,9204
502,-15730,-2213
503,-15729,418
504,-15729,-15535
505,-15728,-8506
506,-15727,7806
507,-15726,-970
508,-15725,11107
509,-15725,7257
510,-15724,9916
511,-15724,5107
512,-15723,-8037
513,-15722,-13578
514,-15721,1277
515,-15720,1277
516,-15719,-769
517,-15719,-3259
518,-15719,-5963
519,-15718,-6848
520,-15718,-16000
521,-15717,1258
522,-15717,-4012
523,-15717,-7664
524,-15715,-1808
525,-15714,-10291
526,-15713,11098
527,-15713,5189
528,-15713,4726
529,-15713,-2035
530,-15713,-3066
531,-15713,-11543
532,-15712,-1081
533,-15710,12195
534,-15710,8598
535,-15708,-5547
536,-15707,-8754
537,-15707,-8753
538,-15707,-9038
539,-15706,14811
540,-15706,3508
541,-15706,-4138
542,-15706,-7659
543,-15706,-9705
544,-15705,12234
545,-15705,4722
546,-15705,-7659
547,-15704,-459
548,-15704,-8788
549,-15703,12947
550,-15703,12948
551,-15703,12492
552,-15702,15668
553,-15699,-8604
554,-15699,-10920
555,-15699,-13140
556,-15698,6107
557,-15697,14322
558,-15697,-1014
559,-15697,-5060
560,-15696,-1490
561,-15696,-7432
562,-15695,14304
563,-15695,-6310
564,-15694,11292
565,-15694,652
566,-15694,-3430
567,-15692,-14192
568,-15690,-5504
569,-15690,-9162
570,-15689,9936
571,-15689,844
572,-15688,-10044
573,-15687,9554
574,-15684,-4942
575,-15684,-13770
576,-15683,3120
577,-15683,-1243
578,-15682,6172
579,-15682,5862
580,-15682,834
581,-15681,-3814
582,-15679,10243
583,-15679,4824
584,-15677,15248
585,-15677,14086
586,-15675,4919
587,-15675,4040
588,-15675,-3013
589,-15674,-15452
590,-15673,1542
591,-15673,-8920
592,-15672,5205
593,-15672,148
594,-15671,6339
595,-15671,-11067
596,-15670,14286
597,-15670,7464
598,-15670,-8774
599,-15669,-3503
600,-15669,-15162
601,-15668,14006
602,-15667,11066
603,-15667,3188
604,-15666,12010
605,-15666,11576
606,-15665,9550
607,-15665,-2355
608,-15665,-3844
609,-15665,-4442
610,-15665,-13822
611,-15663,14803
612,-15663,13717
613,-15663,10419
614,-15663,10420
615,-15663,-1459
616,-15661,-7815
617,-15660,15504
618,-15660,-5857
619,-15659,-5349
620,-15658,15285
621,-15658,9804
622,-15657,15285
623,-15656,10541
624,-15656,-6580
625,-15656,-14330
626,-15656,-14965
627,-15655,2401
628,-15655,-4812
629,-15654,-914
630,-15654,-1776
631,-15654,-14540
632,-15653,-11475
633,-15652,15434
634,-15652,12050
635,-15652,-2135
636,-15651,14937
637,-15651,6954
638,-15651,-13355
639,-15650,15144
640,-15650,8533
641,-15650,6954
642,-15650,-7369
643,-15648,7929
644,-15648,3187
645,-15648,-7219
646,-15647,9544
647,-15647,7928
648,-15647,-3790
649,-15646,14409
650,-15646,-14665
651,-15646,-14785
652,-15646,-15558
653,-15645,1685
654,-15644,-7508
655,-15644,-11404
656,-15644,-11843
657,-15644,-13029
658,-15643,12394
659,-15643,8186
660,-15643,8187
661,-15643,-3502
662,-15642,8188
663,-15642,3852
664,-15642,-11265
665,-15641,9010
666,-15639,-554
667,-15639,-3529
668,-15639,-4568
669,-15638,-9371
670,-15638,-14072
671,-15636,10348
672,-15636,-13625
673,-15634,9111
674,-15634,-8065
675,-15634,-8911
676,-15633,10866
677,-15633,10867
678,-15633,10172
679,-15633,2838
680,-15633,-505
681,-15631,8096
682,-15631,-10258
683,-15631,-11965
684,-15631,-13941
685,-15631,-14362
686,-15630,4426
687,-15629,8704
688,-15629,-1444
689,-15629,-3899
690,-15627,4718
691,-15627,4163
692,-15627,-3078
693,-15626,-2489
694,-15625,12717
695,-15625,-9593
696,-15625,-9592
697,-15623,14712
698,-15623,-10157
699,-15623,-14421
700,-15622,-10312
701,-15622,-14695
702,-15620,6181
703,-15620,-15270
704,-15619,12087
705,-15619,-9277
706,-15618,14089
707,-15618,13207
708,-15617,12893
709,-15617,-7110
710,-15616,10738
711,-15616,-7317
712,-15616,-8754
713,-15615,25
714,-15614,12801
715,-15614,-7241
716,-15614,-10986
717,-15613,-3180
718,-15613,-8445
719,-15613,-8444
720,-15613,-8443
721,-15613,-8529
722,-15612,4862
723,-15612,-2319
724,-15611,-1903
725,-15610,1429
726,-15610,-8068
727,-15610,-8443
728,-15609,14645
729,-15609,9329
730,-15609,-5151
731,-15608,-12027
732,-15606,1283
733,-15606,-11241
734,-15605,13648
735,-15605,5039
736,-15605,459
737,-15603,-790
738,-15603,-8428
739,-15603,-13305
740,-15602,1737
741,-15602,191
742,-15601,-12493
743,-15601,-13064
744,-15598,-13654
745,-15597,2195
746,-15597,-5982
747,-15594,-3408
748,-15593,497
749,-15592,9830
750,-15592,5703
751,-15592,3653
752,-15592,1997
753,-15592,-6972
754,-15592,-7970
755,-15591,11497
756,-15591,-3078
757,-15590,14188
758,-15590,14189
759,-15589,14188
760,-15589,-12867
761,-15588,5027
762,-15585,-10604
763,-15584,7283
764,-15584,-8590
765,-15584,-10423
766,-15584,-15636
767,-15583,-6065
768,-15582,9192
769,-15582,7243
770,-15582,-4662
771,-15582,-14349
772,-15580,-690
773,-15579,-11808
774,-15578,-11808
775,-15577,7150
776,-15577,3626
777,-15577,-2636
778,-15577,-8613
779,-15576,14208
780,-15576,1754
781,-15576,-10041
782,-15575,123
783,-15573,4075
784,-15573,-15053
785,-15572,-5687
786,-15571,6666
787,-15570,13690
788,-15570,-928
789,-15570,-12014
790,-15568,2185
791,-15568,-12500
792,-15566,9746
793,-15565,7222
794,-15564,11496
795,-15563,1476
796,-15562,10958
797,-15562,10959
798,-15562,6380
799,-15562,-15100
800,-15561,1985
801,-15561,-4402
802,-15561,-10248
803,-15560,3135
804,-15559,10164
805,-15559,3534
806,-15558,-829
807,-15558,-10501
808,-15557,14227
809,-15557,5951
810,-15557,-7441
811,-15557,-15818
812,-15556,697
813,-15556,-1828
814,-15555,9358
815,-15555,4503
816,-15555,4094
817,-15555,15859
818,-15554,12876
819,-15554,-10466
820,-15553,11032
821,-15553,2348
822,-15552,11160
823,-15551,10333
824,-15551,-5606
825,-15550,10817
826,-15550,3490
827,-15550,-3129
828,-15550,-5953
829,-15549,-4053
830,-15546,7576
831,-15546,2576
832,-15546,2275
833,-15545,14906
834,-15544,11342
835,-15544,9023
836,-15544,4990
837,-15544,4123
838,-15544,-13781
839,-15543,10769
840,-15543,-4635
841,-15542,5983
842,-15542,4465
843,-15542,3335
844,-15541,12084
845,-15541,1343
846,-15541,-6262
847,-15540,3920
848,-15538,-4463
849,-15536,7757
850,-15536,3142
851,-15535,-8840
852,-15534,6752
853,-15534,562
854,-15534,-6936
855,-15533,54
856,-15532,1216
857,-15532,54
858,-15532,55
859,-15531,1943
860,-15530,9967
861,-15529,6773
862,-15528,8342
863,-15528,1674
864,-15528,-1754
865,-15527,-6886
866,-15526,5667
867,-15526,-108
868,-15525,15030
869,-15525,-1207
870,-15524,12525
871,-15524,-11431
872,-15523,3992
873,-15523,-11432
874,-15522,-3565
875,-15521,-8895
876,-15521,-15806
877,-15520,-890
878,-15519,7009
879,-15519,-1973
880,-15518,-3289
881,-15517,11911
882,-15517,-12091
883,-15516,-12113
884,-15513,6279
885,-15513,2661
886,-15512,13628
887,-15512,-13290
888,-15510,11431
889,-15508,11326
890,-15508,5665
891,-15508,-906
892,-15508,-1205
893,-15508,-6442
894,-15507,3423
895,-15507,-2749
896,-15506,-11307
897,-15504,-2868
898,-15504,-5492
899,-15503,5387
900,-15503,3749
901,-15503,-4871
902,-15502,10874
903,-15502,15617
904,-15500,1968
905,-15499,2987
906,-15499,685
907,-15499,-2444
908,-15498,12840
909,-15497,-8771
910,-15497,-13299
911,-15496,15251
912,-15496,13988
913,-15496,1141
914,-15496,768
915,-15496,-2519
916,-15496,-2518
917,-15496,-13332
918,-15495,1746
919,-15494,15113
920,-15493,1331
921,-15493,623
922,-15493,-13343
923,-15492,11393
924,-15492,7225
925,-15491,12766
926,-15490,6499
927,-15490,3624
928,-15490,-626
929,-15490,-8357
930,-15490,-14580
931,-15489,577
932,-15488,6865
933,-15488,-3885
934,-15488,-12919
935,-15487,2114
936,-15487,-12746
937,-15486,-6580
938,-15485,11289
939,-15485,-1135
940,-15484,-11535
941,-15483,15419
942,-15482,14613
943,-15482,12042
944,-15482,10945
945,-15479,2238
946,-15479,-8071
947,-15479,-11232
948,-15478,-1142
949,-15477,9119
950,-15477,-3338
951,-15477,-8071
952,-15476,4341
953,-15476,-12620
954,-15475,-3615
955,-15475,-11850
956,-15475,-12619
957,-15474,4467
958,-15474,-4355
959,-15473,12053
960,-15473,-4355
961,-15473,-10344
962,-15472,-11068
963,-15472,-13909
964,-15472,-13908
965,-15471,-205
966,-15471,-6739
967,-15470,-14287
968,-15469,-5879
969,-15468,5119
970,-15468,2249
971,-15468,-7939
972,-15467,3678
973,-15467,-10146
974,-15467,-11422
975,-15466,-1610
976,-15466,-12504
977,-15465,5325
978,-15465,3662
979,-15465,2688
980,-15464,8196
981,-15464,-10390
982,-15464,-14421
983,-15464,-14662
984,-15463,-14421
985,-15462,1613
986,-15461,-1195
987,-15461,-1477
988,-15460,14880
989,-15460,8144
990,-15460,6445
991,-15460,4959
992,-15459,-2920
993,-15458,766
994,-15457,3447
995,-15455,6125
996,-15455,5451
997,-15455,250
998,-15455,-3321
999,-15455,-12329
1000,-15454,12770
1001,-15453,-7456
1002,-15453,-12470
1003,-15453,-13343
1004,-15451,-15502
1005,-15450,-11282
1006,-15449,13444
1007,-15449,8638
1008,-15449,-3463
1009,-15449,-4077
1010,-15449,-4493
1011,-15449,-10123
1012,-15448,1839
1013,-15448,-158
1014,-15448,-2656
1015,-15448,-3267
1016,-15448,-6704
1017,-15448,-6705
1018,-15447,10793
1019,-15447,2236
1020,-15447,518
1021,-15447,-14128
1022,-15446,-1377
1023,-15445,5970
1024,-15445,3870
1025,-15445,-5048
1026,-15444,13897
1027,-15443,-94
1028,-15443,-10213
1029,-15442,2891
1030,-15441,15241
1031,-15441,12356
1032,-15439,12706
1033,-15439,10601
1034,-15439,4066
1035,-15439,-2028
1036,-15437,9525
1037,-15437,7375
1038,-15437,-5379
1039,-15436,-10578
1040,-15434,2144
1041,-15434,-4489
1042,-15434,-7268
1043,-15434,-12473
1044,-15433,6599
1045,-15433,-3592
1046,-15432,-5653
1047,-15432,-5652
1048,-15431,-7449
1049,-15431,15764
1050,-15430,8789
1051,-15430,-11974
1052,-15429,6767
1053,-15428,-13547
1054,-15426,15264
1055,-15426,14294
1056,-15426,9821
1057,-15426,-13115
1058,-15425,-5660
1059,-15425,-5659
1060,-15425,-9828
1061,-15424,-11476
1062,-15423,13062
1063,-15423,10466
1064,-15423,5258
1065,-15423,-8721
1066,-15422,7520
1067,-15421,3374
1068,-15420,9476
1069,-15420,2411
1070,-15420,-308
1071,-15419,9479
1072,-15419,-6360
1073,-15418,10489
1074,-15418,15452
1075,-15417,742
1076,-15417,-8796
1077,-15415,14829
1078,-15415,12101
1079,-15415,-10949
1080,-15415,-14454
1081,-15414,6894
1082,-15414,5847
1083,-15413,5785
1084,-15413,5786
1085,-15413,-2920
1086,-15412,12390
1087,-15412,3306
1088,-15411,12390
1089,-15411,3306
1090,-15411,1047
1091,-15411,-185
1092,-15410,7884
1093,-15410,-5746
1094,-15409,-333
1095,-15408,2324
1096,-15407,-11032
1097,-15407,-15638
1098,-15406,-7023
1099,-15406,15998
1100,-15405,10819
1101,-15405,10480
1102,-15404,14899
1103,-15404,10479
1104,-15404,6004
1105,-15404,-11910
1106,-15404,-12956
1107,-15403,9725
1108,-15402,15955
1109,-15400,3875
1110,-15400,-1482
1111,-15399,1533
1112,-15397,3254
1113,-15396,8275
1114,-15395,-2922
1115,-15394,3923
1116,-15394,925
1117,-15393,2073
1118,-15393,-9458
1119,-15391,2914
1120,-15390,-10249
1121,-15389,7974
1122,-15389,3582
1123,-15388,-10361
1124,-15387,12373
1125,-15387,-4518
1126,-15386,-12861
1127,-15385,15066
1128,-15385,12015
1129,-15385,4620
1130,-15384,6474
1131,-15383,-9220
1132,-15382,-7652
1133,-15382,15888
1134,-15381,-9783
1135,-15380,7418
1136,-15380,5484
1137,-15379,-2836
1138,-15377,8059
1139,-15376,11606
1140,-15376,4649
1141,-15376,-5412
1142,-15375,11606
1143,-15375,10049
1144,-15375,7914
1145,-15375,7915
1146,-15375,2288
1147,-15374,3699
1148,-15374,-13246
1149,-15373,15690
1150,-15372,-498
1151,-15372,-9210
1152,-15371,10363
1153,-15371,-11383
1154,-15370,13689
1155,-15370,-2158
1156,-15370,-3228
1157,-15369,-10888
1158,-15368,896
1159,-15367,-4887
1160,-15367,-15894
1161,-15366,-10867
1162,-15364,12939
1163,-15364,5006
1164,-15362,-3984
1165,-15362,-13732
1166,-15361,3410
1167,-15360,5813
1168,-15360,2374
1169,-15358,14880
1170,-15358,7941
1171,-15358,15943
1172,-15357,10249
1173,-15357,4546
1174,-15357,-707
1175,-15356,6956
1176,-15356,-9468
1177,-15356,-12366
1178,-15355,-3978
1179,-15354,13296
1180,-15353,15470
1181,-15352,14056
1182,-15352,5031
1183,-15352,1529
1184,-15352,-10382
1185,-15350,-12379
1186,-15349,-3624
1187,-15349,-11506
1188,-15348,15242
1189,-15348,-6771
1190,-15347,12911
1191,-15347,1522
1192,-15346,10763
1193,-15346,-750
1194,-15344,9059
1195,-15344,-2393
1196,-15344,-14612
1197,-15343,14388
1198,-15343,9904
1199,-15343,9301
1200,-15342,14926
1201,-15341,6308
1202,-15340,9436
1203,-15340,-38
1204,-15340,-37
1205,-15340,-10001
1206,-15340,-10257
1207,-15340,-11800
1208,-15339,6843
1209,-15338,10090
1210,-15338,8134
1211,-15338,-7415
1212,-15338,-15463
1213,-15337,12090
1214,-15337,12091
1215,-15336,6493
1216,-15336,15510
1217,-15335,3540
1218,-15335,-5657
1219,-15334,-4562
1220,-15334,-4561
1221,-15332,13481
1222,-15332,13133
1223,-15332,5395
1224,-15332,4813
1225,-15332,1205
1226,-15331,15178
1227,-15331,-7000
1228,-15330,15178
1229,-15330,12868
1230,-15330,-11143
1231,-15329,-898
1232,-15328,14378
1233,-15328,14341
1234,-15327,13318
1235,-15326,4123
1236,-15325,4123
1237,-15325,-13907
1238,-15324,1284
1239,-15324,-15119
1240,-15322,6405
1241,-15322,1655
1242,-15322,-3557
1243,-15321,-14065
1244,-15321,-15245
1245,-15320,-9408
1246,-15318,10883
1247,-15318,8916
1248,-15318,8793
1249,-15318,-3625
1250,-15317,-1108
1251,-15317,-13197
1252,-15317,-15818
1253,-15313,12790
1254,-15312,10234
1255,-15311,4614
1256,-15311,-7713
1257,-15310,11116
1258,-15310,-6970
1259,-15309,-3264
1260,-15308,15115
1261,-15308,15666
1262,-15307,1
1263,-15307,13
1264,-15307,-5607
1265,-15307,-9329
1266,-15307,-10479
1267,-15306,11905
1268,-15306,8695
1269,-15306,-5170
1270,-15306,-5479
1271,-15305,-1294
1272,-15305,-7793
1273,-15304,14917
1274,-15304,14918
1275,-15304,-10892
1276,-15303,7497
1277,-15303,3476
1278,-15302,11754
1279,-15302,6140
1280,-15301,1019
1281,-15300,-4360
1282,-15299,6879
1283,-15299,-11774
1284,-15299,-12502
1285,-15298,-5472
1286,-15298,-8961
1287,-15297,9481
1288,-15296,520
1289,-15294,-1118
1290,-15294,-9581
1291,-15293,-14773
1292,-15293,-15188
1293,-15292,3443
1294,-15292,1851
1295,-15292,632
1296,-15292,-2846
1297,-15289,5461
1298,-15289,4964
1299,-15289,-10884
1300,-15288,8264
1301,-15287,10957
1302,-15285,10105
1303,-15285,-8843
1304,-15284,-3515
1305,-15283,9349
1306,-15282,13042
1307,-15281,2292
1308,-15281,1117
1309,-15281,-3804
1310,-15281,-3963
1311,-15280,8038
1312,-15279,15025
1313,-15279,8230
1314,-15278,12670
1315,-15278,4560
1316,-15277,1156
1317,-15276,14883
1318,-15276,-12613
1319,-15275,3376
1320,-15275,-475
1321,-15275,-9986
1322,-15274,3679
1323,-15274,-9986
1324,-15273,2090
1325,-15273,-8946
1326,-15271,11809
1327,-15271,7911
1328,-15271,-6326
1329,-15270,-786
1330,-15270,-6597
1331,-15269,13461
1332,-15269,11693
1333,-15269,9272
1334,-15269,-1074
1335,-15268,-13681
1336,-15267,-10888
1337,-15266,3890
1338,-15265,-4491
1339,-15265,-12053
1340,-15265,-12052
1341,-15264,5169
1342,-15264,-9401
1343,-15263,11011
1344,-15263,7192
1345,-15263,6733
1346,-15263,-5466
1347,-15263,-6048
1348,-15262,5025
1349,-15262,-13317
1350,-15261,6654
1351,-15261,-6367
1352,-15261,-14814
1353,-15260,2255
1354,-15260,-2592
1355,-15259,-967
1356,-15259,-966
1357,-15258,14485
1358,-15258,3797
1359,-15258,1088
1360,-15258,15649
1361,-15253,10169
1362,-15252,15748
1363,-15251,11764
1364,-15251,-10048
1365,-15250,669
1366,-15248,-13739
1367,-15247,-10611
1368,-15246,10503
1369,-15245,13728
1370,-15245,10917
1371,-15245,1517
1372,-15245,-3636
1373,-15245,-14613
1374,-15244,9621
1375,-15244,4078
1376,-15243,12304
1377,-15242,-1297
1378,-15242,-3469
1379,-15241,702
1380,-15241,-11775
1381,-15240,15110
1382,-15240,7255
1383,-15240,1999
1384,-15239,4893
1385,-15239,258
1386,-15238,-14478
1387,-15237,2863
1388,-15237,-9077
1389,-15236,9988
1390,-15235,6424
1391,-15235,4159
1392,-15234,-3638
1393,-15233,15042
1394,-15233,-5651
1395,-15233,-6090
1396,-15233,-14693
1397,-15232,857
1398,-15231,-10283
1399,-15231,15680
1400,-15230,5198
1401,-15230,-2786
1402,-15230,-5662
1403,-15230,-11505
1404,-15229,10339
1405,-15229,-3905
1406,-15228,13468
1407,-15228,2012
1408,-15228,-6235
1409,-15228,-11939
1410,-15227,2498
1411,-15227,-7120
1412,-15227,-10375
1413,-15227,-13103
1414,-15226,7760
1415,-15226,-3621
1416,-15226,-3915
1417,-15226,-15645
1418,-15225,-3621
1419,-15224,14181
1420,-15224,-555
1421,-15223,-10784
1422,-15223,-11590
1423,-15222,7954
1424,-15222,-5106
1425,-15221,11805
1426,-15220,11877
1427,-15219,-1245
1428,-15219,-13040
1429,-15219,-14432
1430,-15218,13868
1431,-15218,6676
1432,-15218,6467
1433,-15218,-9177
1434,-15217,10806
1435,-15217,-12158
1436,-15216,12474
1437,-15215,13868
1438,-15215,987
1439,-15215,-2526
1440,-15215,-4922
1441,-15214,13044
1442,-15214,6358
1443,-15214,6171
1444,-15214,-7472
1445,-15214,15569
1446,-15214,15568
1447,-15213,13044
1448,-15213,10463
1449,-15213,6018
1450,-15213,15595
1451,-15212,10316
1452,-15212,346
1453,-15211,-11921
1454,-15210,14010
1455,-15210,-7482
1456,-15209,14813
1457,-15209,3211
1458,-15208,-2604
1459,-15208,-14841
1460,-15208,15787
1461,-15207,11784
1462,-15207,8393
1463,-15207,-9125
1464,-15207,-14892
1465,-15205,13950
1466,-15203,11648
1467,-15203,5817
1468,-15202,12944
1469,-15202,-14989
1470,-15201,9308
1471,-15200,11348
1472,-15200,-3910
1473,-15200,-9757
1474,-15199,5271
1475,-15198,5900
1476,-15198,-15537
1477,-15197,13255
1478,-15197,5054
1479,-15196,12317
1480,-15196,8837
1481,-15196,-1996
1482,-15195,-7776
1483,-15195,-13222
1484,-15194,12892
1485,-15194,11682
1486,-15194,11683
1487,-15193,1676
1488,-15192,13392
1489,-15191,9881
1490,-15191,-40
1491,-15189,3600
1492,-15189,2960
1493,-15188,11847
1494,-15188,-14436
1495,-15187,-6855
1496,-15186,14511
1497,-15186,5179
1498,-15186,1957
1499,-15184,9966
1500,-15184,-15045
1501,-15184,-15044
1502,-15182,-6055
1503,-15182,-12743
1504,-15181,-41
1505,-15181,-12854
1506,-15181,-15062
1507,-15180,11859
1508,-15180,-2906
1509,-15179,-8332
1510,-15178,7265
1511,-15177,8799
1512,-15177,-6524
1513,-15176,6139
1514,-15175,-4064
1515,-15174,10816
1516,-15174,-1605
1517,-15174,-2299
1518,-15174,-10836
1519,-15172,-882
1520,-15172,-12143
1521,-15170,2837
1522,-15170,-2427
1523,-15170,-10363
1524,-15169,11030
1525,-15168,13726
1526,-15168,-6651
1527,-15167,7679
1528,-15166,14281
1529,-15165,-14641
1530,-15164,14186
1531,-15164,-12757
1532,-15163,7228
1533,-15163,-1372
1534,-15163,-1371
1535,-15160,13012
1536,-15160,2233
1537,-15160,-14268
1538,-15159,13663
1539,-15159,5038
1540,-15159,-12297
1541,-15158,-13488
1542,-15157,-13084
1543,-15156,-14310
1544,-15155,612
1545,-15155,-8480
1546,-15155,-13020
1547,-15155,-14966
1548,-15153,11027
1549,-15153,4023
1550,-15153,2173
1551,-15152,9240
1552,-15152,8137
1553,-15152,-11816
1554,-15151,-5569
1555,-15150,15345
1556,-15148,12961
1557,-15148,11832
1558,-15147,3156
1559,-15147,3034
1560,-15147,2497
1561,-15147,-11002
1562,-15146,-1659
1563,-15145,1581
1564,-15145,-429
1565,-15145,-3471
1566,-15144,6801
1567,-15144,-7196
1568,-15142,13628
1569,-15142,-978
1570,-15142,-6169
1571,-15141,-13472
1572,-15139,12557
1573,-15139,-323
1574,-15136,4439
1575,-15135,-5472
1576,-15134,1807
1577,-15134,-9753
1578,-15132,14743
1579,-15132,13903
1580,-15132,8051
1581,-15132,4438
1582,-15132,-15055
1583,-15131,12959
1584,-15131,12902
1585,-15131,11975
1586,-15131,5602
1587,-15130,-8
1588,-15130,-3724
1589,-15129,2160
1590,-15128,-14783
1591,-15126,-9176
1592,-15125,6437
1593,-15124,13757
1594,-15124,-15337
1595,-15123,4103
1596,-15123,-13600
1597,-15121,12780
1598,-15121,11299
1599,-15121,10881
1600,-15120,10983
1601,-15119,10768
1602,-15119,6215
1603,-15119,-7594
1604,-15118,12582
1605,-15118,-5189
1606,-15118,-5670
1607,-15117,10380
1608,-15117,4777
1609,-15117,-14477
1610,-15116,7757
1611,-15116,6901
1612,-15116,2342
1613,-15116,-12626
1614,-15114,6138
1615,-15114,-3939
1616,-15111,5288
1617,-15111,-1891
1618,-15111,-10509
1619,-15111,-12973
1620,-15110,-3031
1621,-15109,-2600
1622,-15109,-13743
1623,-15109,15717
1624,-15108,7621
1625,-15107,2933
1626,-15105,11530
1627,-15103,7
1628,-15103,-2416
1629,-15103,-5114
1630,-15102,7584
1631,-15101,2058
1632,-15100,12345
1633,-15100,-7243
1634,-15100,-10214
1635,-15100,-13359
1636,-15099,-7978
1637,-15099,-8001
1638,-15099,-11842
1639,-15098,5414
1640,-15098,5415
1641,-15098,-5157
1642,-15095,15021
1643,-15095,-6621
1644,-15095,-12794
1645,-15093,10027
1646,-15093,3811
1647,-15093,-10387
1648,-15092,3723
1649,-15092,-12906
1650,-15091,9708
1651,-15091,3986
1652,-15091,3320
1653,-15090,10554
1654,-15090,10172
1655,-15089,14595
1656,-15088,9006
1657,-15088,-6452
1658,-15088,-15940
1659,-15087,1013
1660,-15086,9407
1661,-15086,2051
1662,-15086,1980
1663,-15086,-2674
1664,-15086,-9167
1665,-15085,13310
1666,-15085,-11489
1667,-15083,12489
1668,-15083,6873
1669,-15080,14564
1670,-15080,3616
1671,-15079,-4822
1672,-15078,5141
1673,-15078,-8854
1674,-15078,-14635
1675,-15077,-2452
1676,-15076,-1849
1677,-15076,-2707
1678,-15076,-5824
1679,-15076,-7771
1680,-15075,8912
1681,-15075,8911
1682,-15075,6075
1683,-15075,864
1684,-15074,9615
1685,-15074,6942
1686,-15074,6013
1687,-15073,13038
1688,-15072,7603
1689,-15072,-3273
1690,-15071,10415
1691,-15070,9349
1692,-15070,-7004
1693,-15070,-7750
1694,-15070,-13277
1695,-15068,8895
1696,-15068,5011
1697,-15068,-3783
1698,-15067,10730
1699,-15067,9292
1700,-15067,-9243
1701,-15066,11824
1702,-15066,-6238
1703,-15065,11076
1704,-15064,14963
1705,-15064,5828
1706,-15064,711
1707,-15064,-4605
1708,-15063,-11616
1709,-15063,-13984
1710,-15062,12079
1711,-15062,3288
1712,-15060,-15862
1713,-15059,9705
1714,-15059,2920
1715,-15059,-4385
1716,-15058,12541
1717,-15058,-9603
1718,-15057,-4815
1719,-15057,-12436
1720,-15055,11075
1721,-15053,12084
1722,-15053,5103
1723,-15053,687
1724,-15053,-7563
1725,-15053,-14283
1726,-15052,-1772
1727,-15052,-12155
1728,-15051,14631
1729,-15051,-36
1730,-15050,-12615
1731,-15049,11419
1732,-15048,14857
1733,-15048,14858
1734,-15048,-9500
1735,-15047,5311
1736,-15046,1018
1737,-15046,-5157
1738,-15046,-5858
1739,-15045,8470
1740,-15045,1927
1741,-15044,14854
1742,-15044,7815
1743,-15043,14024
1744,-15043,-12812
1745,-15043,-15839
1746,-15042,7023
1747,-15041,11114
1748,-15041,-6585
1749,-15040,1220
1750,-15040,-2686
1751,-15039,9330
1752,-15039,5461
1753,-15039,15312
1754,-15038,3511
1755,-15038,2283
1756,-15037,9152
1757,-15037,3758
1758,-15037,1342
1759,-15036,6926
1760,-15036,2701
1761,-15036,-6352
1762,-15036,-13756
1763,-15035,5756
1764,-15035,1080
1765,-15033,-9704
1766,-15032,5412
1767,-15031,13023
1768,-15031,-3473
1769,-15029,8598
1770,-15029,-9639
1771,-15029,-15381
1772,-15028,-3014
1773,-15028,-9461
1774,-15027,14340
1775,-15027,-9163
1776,-15026,3420
1777,-15025,10618
1778,-15025,3420
1779,-15024,-15848
1780,-15023,14088
1781,-15021,12156
1782,-15021,-4898
1783,-15020,12156
1784,-15016,-4606
1785,-15016,-10324
1786,-15015,14314
1787,-15015,6087
1788,-15013,4806
1789,-15013,-3530
1790,-15013,15642
1791,-15012,15642
1792,-15009,5768
1793,-15008,-7798
1794,-15006,4124
1795,-15006,-3870
1796,-15005,4122
1797,-15005,-11915
1798,-15004,5782
1799,-15004,-9793
1800,-15004,-12735
1801,-15003,13343
1802,-15001,150
1803,-15000,895
1804,-15000,-2027
1805,-15000,-8877
1806,-15000,15026
1807,-14998,-4137
1808,-14998,-13087
1809,-14997,8708
1810,-14996,6734
1811,-14993,11645
1812,-14992,-4036
1813,-14991,8494
1814,-14991,1997
1815,-14991,1440
1816,-14990,-4897
1817,-14989,11938
1818,-14989,-4882
1819,-14988,-7716
1820,-14988,-8624
1821,-14987,7326
1822,-14987,-2333
1823,-14986,13059
1824,-14985,1111
1825,-14985,1112
1826,-14985,-7714
1827,-14985,-15792
1828,-14984,-8859
1829,-14984,-11090
1830,-14983,-8859
1831,-14983,-12899
1832,-14981,-8835
1833,-14980,3533
1834,-14980,-9055
1835,-14979,10268
1836,-14979,9852
1837,-14979,-2746
1838,-14978,6700
1839,-14978,15086
1840,-14977,11047
1841,-14976,-12118
1842,-14975,2155
1843,-14975,-11736
1844,-14975,-14667
1845,-14973,4008
1846,-14972,-9276
1847,-14970,12764
1848,-14969,4152
1849,-14969,2169
1850,-14969,-15256
1851,-14968,14972
1852,-14968,-2955
1853,-14967,11046
1854,-14967,7108
1855,-14967,-8927
1856,-14966,12709
1857,-14965,-9385
1858,-14965,-14286
1859,-14964,-8979
1860,-14963,12554
1861,-14963,12471
1862,-14963,-10591
1863,-14963,-11924
1864,-14962,12071
1865,-14962,5241
1866,-14961,2230
1867,-14960,-6722
1868,-14959,7010
1869,-14958,13993
1870,-14958,11237
1871,-14958,1873
1872,-14957,-4862
1873,-14957,-6981
1874,-14957,-11458
1875,-14956,13184
1876,-14954,-6629
1877,-14954,-12593
1878,-14953,9667
1879,-14953,9489
1880,-14953,8415
1881,-14953,3959
1882,-14952,6226
1883,-14952,-2817
1884,-14952,15730
1885,-14951,6226
1886,-14951,-12987
1887,-14950,5519
1888,-14950,-12518
1889,-14950,-14621
1890,-14949,12131
1891,-14948,12884
1892,-14948,-1116
1893,-14947,13062
1894,-14947,10893
1895,-14947,5488
1896,-14947,-819
1897,-14947,-1375
1898,-14947,-2989
1899,-14947,-14875
1900,-14946,12332
1901,-14946,-3798
1902,-14946,-10006
1903,-14945,13707
1904,-14944,-9223
1905,-14944,-11561
1906,-14942,15498
1907,-14941,-8490
1908,-14938,8085
1909,-14938,4365
1910,-14937,1053
1911,-14937,-8470
1912,-14936,10652
1913,-14936,10653
1914,-14936,1058
1915,-14934,14255
1916,-14933,7673
1917,-14933,-7916
1918,-14933,-9512
1919,-14931,13252
1920,-14931,9027
1921,-14931,-1885
1922,-14931,-8166
1923,-14931,-8905
1924,-14930,-5971
1925,-14929,6538
1926,-14929,5267
1927,-14929,1986
1928,-14928,13242
1929,-14928,-3612
1930,-14928,15163
1931,-14927,12403
1932,-14927,9068
1933,-14927,-10699
1934,-14926,9068
1935,-14926,3418
1936,-14923,7563
1937,-14923,-8935
1938,-14923,-12994
1939,-14922,12812
1940,-14922,9714
1941,-14922,7372
1942,-14922,7373
1943,-14922,4231
1944,-14922,-13702
1945,-14921,14373
1946,-14921,-588
1947,-14921,-3039
1948,-14921,-5818
1949,-14919,12364
1950,-14919,2978
1951,-14916,13918
1952,-14916,5052
1953,-14915,3260
1954,-14914,11390
1955,-14914,11261
1956,-14914,9697
1957,-14914,-10743
1958,-14912,6472
1959,-14912,-14228
1960,-14912,-15655
1961,-14908,-13649
1962,-14908,-15209
1963,-14907,9658
1964,-14906,1099
1965,-14906,-5273
1966,-14905,-2397
1967,-14905,-6356
1968,-14904,-12354
1969,-14904,-14331
1970,-14903,13173
1971,-14903,13034
1972,-14903,-480
1973,-14903,-7259
1974,-14903,-7466
1975,-14902,-7403
1976,-14902,-13220
1977,-14902,-14856
1978,-14901,4530
1979,-14901,-11995
1980,-14900,9072
1981,-14900,-1521
1982,-14898,-4555
1983,-14898,-7455
1984,-14897,2782
1985,-14896,8626
1986,-14896,5000
1987,-14896,-10221
1988,-14895,8835
1989,-14895,2077
1990,-14895,332
1991,-14894,-6093
1992,-14893,-14337
1993,-14892,8077
1994,-14892,2900
1995,-14892,582
1996,-14892,-11978
1997,-14892,-13704
1998,-14890,-9136
1999,-14890,15493
2000,-14889,10204
2001,-14888,13567
2002,-14888,2669
2003,-14887,-13572
2004,-14885,9722
2005,-14885,-9914
2006,-14885,-15454
2007,-14884,3013
2008,-14883,5431
2009,-14883,-11662
2010,-14882,-5111
2011,-14881,-3257
2012,-14880,11592
2013,-14879,-15839
2014,-14878,14166
2015,-14878,464
2016,-14878,-2792
2017,-14878,-15523
2018,-14877,11103
2019,-14877,925
2020,-14876,7136
2021,-14875,-4935
2022,-14873,11632
2023,-14873,8303
2024,-14873,15989
2025,-14872,-4941
2026,-14871,2324
2027,-14871,-253
2028,-14871,-3025
2029,-14871,-4814
2030,-14871,-7827
2031,-14871,-12316
2032,-14870,-13780
2033,-14870,-14527
2034,-14869,-14302
2035,-14868,14813
2036,-14868,5109
2037,-14868,4141
2038,-14867,3566
2039,-14867,15750
2040,-14866,14118
2041,-14866,3557
2042,-14866,-3477
2043,-14864,10949
2044,-14863,4579
2045,-14862,3073
2046,-14862,3074
2047,-14862,-7825
2048,-14861,-5876
2049,-14860,5364
2050,-14859,6532
2051,-14859,5364
2052,-14859,1926
2053,-14858,10115
2054,-14858,7402
2055,-14858,2015
2056,-14857,323
2057,-14856,10614
2058,-14856,958
2059,-14855,1409
2060,-14855,-15931
2061,-14854,-3526
2062,-14854,-9846
2063,-14854,-11734
2064,-14854,-14074
2065,-14853,11473
2066,-14853,3332
2067,-14853,-973
2068,-14852,666
2069,-14852,15237
2070,-14850,13700
2071,-14850,6108
2072,-14850,3602
2073,-14849,-776
2074,-14848,7806
2075,-14848,1735
2076,-14847,-5890
2077,-14847,-6285
2078,-14847,-10609
2079,-14847,-11264
2080,-14846,-3168
2081,-14846,-12340
2082,-14845,10480
2083,-14845,-10199
2084,-14845,-11349
2085,-14844,14568
2086,-14844,-10379
2087,-14842,-6167
2088,-14842,-12161
2089,-14842,15755
2090,-14841,5485
2091,-14840,-10420
2092,-14839,4123
2093,-14839,-10122
2094,-14838,12769
2095,-14837,12769
2096,-14837,12275
2097,-14837,-12399
2098,-14836,1409
2099,-14835,-13211
2100,-14834,2545
2101,-14834,-1007
2102,-14834,-6242
2103,-14833,7938
2104,-14832,14388
2105,-14832,531
2106,-14832,-3557
2107,-14832,-9045
2108,-14832,-14393
2109,-14830,-6461
2110,-14829,-2086
2111,-14829,-2690
2112,-14829,-15016
2113,-14827,10727
2114,-14826,14504
2115,-14826,-12133
2116,-14823,6461
2117,-14823,-1611
2118,-14822,11066
2119,-14822,10991
2120,-14822,-4953
2121,-14822,15939
2122,-14821,7090
2123,-14821,5091
2124,-14821,4804
2125,-14820,2572
2126,-14820,1540
2127,-14820,-5733
2128,-14820,-6917
2129,-14820,-15345
2130,-14819,13590
2131,-14819,7929
2132,-14819,-3653
2133,-14818,4457
2134,-14817,10877
2135,-14817,1625
2136,-14817,-2234
2137,-14815,13001
2138,-14813,-7256
2139,-14812,-13113
2140,-14811,11263
2141,-14811,9766
2142,-14811,-15541
2143,-14810,14801
2144,-14810,-4933
2145,-14810,-12511
2146,-14810,-14713
2147,-14809,2303
2148,-14809,-7475
2149,-14808,1550
2150,-14808,-8255
2151,-14807,6917
2152,-14807,4456
2153,-14806,4119
2154,-14805,5643
2155,-14804,-8241
2156,-14804,15753
2157,-14803,1631
2158,-14802,2664
2159,-14802,-2112
2160,-14802,-11548
2161,-14802,-12736
2162,-14802,-12750
2163,-14801,-13399
2164,-14801,-14660
2165,-14800,4646
2166,-14799,8544
2167,-14799,-2215
2168,-14799,-11808
2169,-14798,-1038
2170,-14798,-10663
2171,-14797,1062
2172,-14797,792
2173,-14796,-4408
2174,-14795,-8266
2175,-14794,15018
2176,-14794,15222
2177,-14793,-11359
2178,-14793,-15342
2179,-14791,-6165
2180,-14789,12571
2181,-14789,1563
2182,-14788,14016
2183,-14788,14015
2184,-14788,1563
2185,-14788,-3636
2186,-14788,-5930
2187,-14786,13360
2188,-14785,-4485
2189,-14784,10231
2190,-14784,9771
2191,-14782,8947
2192,-14780,6653
2193,-14780,-865
2194,-14779,8103
2195,-14779,7306
2196,-14779,3161
2197,-14779,1818
2198,-14779,166
2199,-14779,-10001
2200,-14778,3161
2201,-14778,577
2202,-14778,-4400
2203,-14778,-12572
2204,-14778,-15473
2205,-14777,1635
2206,-14776,12574
2207,-14776,8829
2208,-14776,1922
2209,-14774,-12346
2210,-14773,85
2211,-14773,-4156
2212,-14773,-5856
2213,-14772,-2986
2214,-14771,-3110
2215,-14771,-7238
2216,-14770,2386
2217,-14770,734
2218,-14769,7242
2219,-14769,6910
2220,-14769,-1932
2221,-14768,-435
2222,-14768,-14861
2223,-14767,-3967
2224,-14765,12753
2225,-14765,-5000
2226,-14764,11879
2227,-14764,-1677
2228,-14764,-6812
2229,-14763,11281
2230,-14763,7939
2231,-14763,-991
2232,-14763,-12257
2233,-14762,6753
2234,-14761,4919
2235,-14761,-15048
2236,-14760,-6794
2237,-14760,-10137
2238,-14760,-14883
2239,-14760,-15166
2240,-14759,6978
2241,-14759,3207
2242,-14759,-4898
2243,-14756,9926
2244,-14756,-11753
2245,-14755,4725
2246,-14755,-3407
2247,-14755,-3406
2248,-14755,-6120
2249,-14752,12892
2250,-14752,12893
2251,-14752,12507
2252,-14751,6697
2253,-14750,-4757
2254,-14750,-8736
2255,-14749,6860
2256,-14749,4601
2257,-14749,1776
2258,-14748,-9572
2259,-14748,14963
2260,-14747,10923
2261,-14746,8417
2262,-14746,4406
2263,-14746,-7772
2264,-14746,15020
2265,-14745,10445
2266,-14745,8751
2267,-14745,4379
2268,-14744,13490
2269,-14744,-8589
2270,-14744,-13598
2271,-14743,11576
2272,-14743,7433
2273,-14743,5456
2274,-14743,-793
2275,-14743,-1989
2276,-14742,13044
2277,-14742,12806
2278,-14741,-4787
2279,-14740,-14787
2280,-14735,-1798
2281,-14735,-9346
2282,-14734,1563
2283,-14734,-5548
2284,-14734,-9347
2285,-14734,-11854
2286,-14733,7656
2287,-14733,7275
2288,-14733,-475
2289,-14732,9019
2290,-14732,6661
2291,-14732,-5700
2292,-14731,14726
2293,-14731,3843
2294,-14731,3496
2295,-14731,-14603
2296,-14731,14816
2297,-14730,707
2298,-14728,12930
2299,-14728,2576
2300,-14726,-14306
2301,-14725,-8781
2302,-14724,-4899
2303,-14723,10249
2304,-14723,6345
2305,-14723,-14343
2306,-14723,-14342
2307,-14723,15775
2308,-14722,8287
2309,-14722,4972
2310,-14722,3059
2311,-14722,2155
2312,-14722,-7144
2313,-14721,-10854
2314,-14721,-14372
2315,-14718,2298
2316,-14718,-358
2317,-14718,-7174
2318,-14718,-11326
2319,-14717,12985
2320,-14717,-2222
2321,-14717,15335
2322,-14716,12415
2323,-14716,7856
2324,-14716,7559
2325,-14716,-8717
2326,-14715,5707
2327,-14715,4163
2328,-14715,3401
2329,-14715,-1655
2330,-14714,-6648
2331,-14713,-4711
2332,-14712,4800
2333,-14711,1962
2334,-14711,1408
2335,-14711,-7463
2336,-14711,-13404
2337,-14710,-8686
2338,-14708,11483
2339,-14708,1327
2340,-14707,1715
2341,-14706,-4384
2342,-14705,-1512
2343,-14704,-10886
2344,-14703,3055
2345,-14703,-12081
2346,-14702,7043
2347,-14702,473
2348,-14702,-13326
2349,-14701,12414
2350,-14701,-2235
2351,-14701,-14166
2352,-14700,997
2353,-14700,-1618
2354,-14699,1079
2355,-14698,-6574
2356,-14696,8648
2357,-14696,-8447
2358,-14694,-12799
2359,-14693,-10282
2360,-14691,12336
2361,-14691,10595
2362,-14691,-7774
2363,-14690,6303
2364,-14690,-15037
2365,-14689,12775
2366,-14689,11564
2367,-14689,10025
2368,-14689,15736
2369,-14688,-635
2370,-14687,12012
2371,-14687,7126
2372,-14687,7127
2373,-14687,-8120
2374,-14686,2618
2375,-14686,-1900
2376,-14686,-3422
2377,-14686,-4824
2378,-14685,2618
2379,-14684,-3660
2380,-14683,7385
2381,-14683,3201
2382,-14683,-15382
2383,-14682,6589
2384,-14682,-13107
2385,-14681,7645
2386,-14681,-13855
2387,-14680,14324
2388,-14680,751
2389,-14680,-2471
2390,-14680,15949
2391,-14679,7114
2392,-14679,1778
2393,-14679,-8676
2394,-14678,14414
2395,-14678,-5203
2396,-14677,9436
2397,-14677,6343
2398,-14677,-9361
2399,-14677,-13560
2400,-14676,11722
2401,-14676,2361
2402,-14675,3645
2403,-14674,4411
2404,-14674,-14678
2405,-14673,-8715
2406,-14673,-12066
2407,-14672,-5572
2408,-14672,-13206
2409,-14672,-14559
2410,-14671,-10182
2411,-14670,-2635
2412,-14670,-12524
2413,-14669,-3409
2414,-14669,-5338
2415,-14668,1176
2416,-14668,-11659
2417,-14667,-11971
2418,-14666,9331
2419,-14666,9333
2420,-14666,-6522
2421,-14666,-15060
2422,-14665,5510
2423,-14665,-7239
2424,-14665,-9251
2425,-14664,3531
2426,-14664,319
2427,-14663,3171
2428,-14663,3172
2429,-14663,-11810
2430,-14662,-7427
2431,-14662,-13427
2432,-14661,-1834
2433,-14661,15853
2434,-14660,-3039
2435,-14660,14714
2436,-14659,13072
2437,-14658,9345
2438,-14658,-8503
2439,-14656,10359
2440,-14655,-1041
2441,-14654,14552
2442,-14654,4203
2443,-14653,11591
2444,-14653,1202
2445,-14653,-5585
2446,-14653,-6934
2447,-14653,15306
2448,-14652,9413
2449,-14652,7436
2450,-14652,-6848
2451,-14651,-11603
2452,-14650,14164
2453,-14649,14165
2454,-14649,12218
2455,-14649,9474
2456,-14648,10301
2457,-14648,-14023
2458,-14647,4417
2459,-14647,-7951
2460,-14646,8184
2461,-14646,7420
2462,-14646,-2048
2463,-14646,-10586
2464,-14645,13301
2465,-14645,-8628
2466,-14645,15723
2467,-14644,11703
2468,-14644,-5905
2469,-14643,12400
2470,-14643,7336
2471,-14642,9254
2472,-14642,2242
2473,-14642,-923
2474,-14642,-4132
2475,-14641,14100
2476,-14641,3363
2477,-14640,7801
2478,-14640,6849
2479,-14640,1038
2480,-14639,-128
2481,-14639,-9913
2482,-14638,-7197
2483,-14638,-7312
2484,-14637,-7197
2485,-14637,-12672
2486,-14636,-5522
2487,-14635,-9539
2488,-14634,11929
2489,-14634,-5813
2490,-14634,-6598
2491,-14633,-4486
2492,-14633,-14749
2493,-14633,-14915
2494,-14632,15862
2495,-14631,15795
2496,-14630,12763
2497,-14630,11265
2498,-14630,-15682
2499,-14629,-12527
2500,-14629,-12528
2501,-14628,8318
2502,-14628,4998
2503,-14628,-8407
2504,-14628,-8406
2505,-14628,-9096
2506,-14627,6859
2507,-14626,14303
2508,-14626,7444
2509,-14626,2795
2510,-14626,2796
2511,-14625,8014
2512,-14625,-4725
2513,-14625,-7382
2514,-14624,-7382
2515,-14624,-12722
2516,-14623,4593
2517,-14623,-5584
2518,-14623,-6120
2519,-14622,3591
2520,-14622,-7719
2521,-14621,-10952
2522,-14619,13046
2523,-14619,6995
2524,-14618,13183
2525,-14618,5479
2526,-14618,-12148
2527,-14615,-6869
2528,-14615,-13032
2529,-14613,-10899
2530,-14613,15142
2531,-14612,-6484
2532,-14609,-3250
2533,-14609,-7155
2534,-14609,-11869
2535,-14609,-11890
2536,-14608,7236
2537,-14608,-4939
2538,-14608,-7650
2539,-14607,7112
2540,-14607,5301
2541,-14607,-14439
2542,-14606,-12991
2543,-14605,9861
2544,-14603,4153
2545,-14603,410
2546,-14603,-2694
2547,-14603,-14789
2548,-14602,6922
2549,-14602,-160
2550,-14601,14418
2551,-14601,14419
2552,-14601,11988
2553,-14600,2966
2554,-14600,-1241
2555,-14600,-8201
2556,-14600,15342
2557,-14599,4217
2558,-14599,-5601
2559,-14598,14025
2560,-14594,13979
2561,-14594,11308
2562,-14594,2087
2563,-14593,14748
2564,-14592,9048
2565,-14591,10846
2566,-14591,299
2567,-14591,-11483
2568,-14590,13421
2569,-14590,2422
2570,-14590,820
2571,-14589,-4849
2572,-14588,11951
2573,-14588,-4849
2574,-14588,-11123
2575,-14588,15446
2576,-14587,8714
2577,-14587,-4117
2578,-14586,13294
2579,-14586,10470
2580,-14586,-2624
2581,-14585,-7107
2582,-14585,-12654
2583,-14584,-7177
2584,-14583,10867
2585,-14582,10867
2586,-14581,-5252
2587,-14581,-6110
2588,-14580,-67
2589,-14580,-3944
2590,-14579,-7852
2591,-14578,4983
2592,-14577,13069
2593,-14576,8978
2594,-14575,-11316
2595,-14574,10898
2596,-14574,-9013
2597,-14573,11052
2598,-14573,6792
2599,-14573,-15251
2600,-14572,11168
2601,-14572,11052
2602,-14571,13586
2603,-14571,11556
2604,-14571,10234
2605,-14571,-4475
2606,-14571,-12010
2607,-14570,2949
2608,-14568,14298
2609,-14568,13448
2610,-14568,11332
2611,-14568,-3268
2612,-14568,-11576
2613,-14568,-12830
2614,-14567,9249
2615,-14567,5837
2616,-14567,-2324
2617,-14567,-3176
2618,-14566,2419
2619,-14565,10496
2620,-14565,693
2621,-14565,694
2622,-14565,-3474
2623,-14565,-3615
2624,-14564,10890
2625,-14564,3043
2626,-14564,-12580
2627,-14563,8976
2628,-14563,-982
2629,-14563,14586
2630,-14562,12500
2631,-14562,5981
2632,-14560,11707
2633,-14560,-6809
2634,-14560,-12022
2635,-14559,11722
2636,-14559,8593
2637,-14559,7848
2638,-14559,-1626
2639,-14557,-2134
2640,-14555,-2258
2641,-14554,13946
2642,-14553,10092
2643,-14553,5846
2644,-14553,-371
2645,-14553,-10317
2646,-14553,-10356
2647,-14553,-13373
2648,-14553,14905
2649,-14552,-2161
2650,-14552,-14327
2651,-14551,11129
2652,-14550,13920
2653,-14550,-13145
2654,-14550,15993
2655,-14549,6500
2656,-14547,13768
2657,-14547,-5018
2658,-14547,-13466
2659,-14546,12446
2660,-14546,7630
2661,-14545,8345
2662,-14541,4717
2663,-14541,4718
2664,-14541,-3006
2665,-14540,-7289
2666,-14540,-14479
2667,-14539,3521
2668,-14539,-6176
2669,-14538,14424
2670,-14538,10003
2671,-14538,6197
2672,-14537,3478
2673,-14537,-11753
2674,-14536,-5852
2675,-14536,-6125
2676,-14535,6716
2677,-14534,-680
2678,-14534,-1048
2679,-14534,-7515
2680,-14534,15519
2681,-14532,12777
2682,-14532,-5768
2683,-14532,-5879
2684,-14531,9215
2685,-14531,-3070
2686,-14530,6419
2687,-14530,-13789
2688,-14530,15021
2689,-14529,-15221
2690,-14528,10414
2691,-14528,7971
2692,-14528,4749
2693,-14528,-11359
2694,-14527,13085
2695,-14527,4089
2696,-14526,512
2697,-14526,-5592
2698,-14526,-9345
2699,-14526,-13052
2700,-14526,-13895
2701,-14525,15545
2702,-14524,5728
2703,-14524,3406
2704,-14523,8938
2705,-14523,8111
2706,-14523,3374
2707,-14523,-13027
2708,-14522,6201
2709,-14522,-747
2710,-14522,-8058
2711,-14521,-210
2712,-14520,-2881
2713,-14519,8293
2714,-14519,2007
2715,-14518,-9614
2716,-14517,6653
2717,-14517,-5739
2718,-14516,2476
2719,-14516,1323
2720,-14516,-1531
2721,-14515,7439
2722,-14515,-15547
2723,-14514,4475
2724,-14513,13831
2725,-14513,-8025
2726,-14513,-9000
2727,-14512,9526
2728,-14511,10302
2729,-14511,4063
2730,-14510,-257
2731,-14509,5856
2732,-14509,3865
2733,-14508,-2757
2734,-14508,-5544
2735,-14508,-9443
2736,-14507,4356
2737,-14507,-5544
2738,-14506,6665
2739,-14506,-10175
2740,-14505,-3866
2741,-14505,-10437
2742,-14505,-15759
2743,-14503,7685
2744,-14503,1115
2745,-14503,-4359
2746,-14503,-7201
2747,-14502,-4477
2748,-14502,15375
2749,-14501,-15674
2750,-14500,-150
2751,-14499,-4925
2752,-14497,8622
2753,-14497,-9858
2754,-14496,-1215
2755,-14495,12097
2756,-14495,4076
2757,-14493,13425
2758,-14492,9731
2759,-14492,-10953
2760,-14491,10352
2761,-14491,-15951
2762,-14490,6705
2763,-14490,-11193
2764,-14488,-8106
2765,-14488,-12566
2766,-14488,-13008
2767,-14487,-1988
2768,-14487,-1987
2769,-14487,-4009
2770,-14487,-7778
2771,-14486,14411
2772,-14485,-7860
2773,-14485,-10288
2774,-14484,1794
2775,-14481,-15661
2776,-14478,2195
2777,-14478,-1317
2778,-14478,-4253
2779,-14477,-5520
2780,-14476,-10657
2781,-14475,-372
2782,-14474,9217
2783,-14474,-11934
2784,-14473,-8912
2785,-14471,10722
2786,-14471,-4642
2787,-14470,-6753
2788,-14469,13835
2789,-14469,-7263
2790,-14469,-11599
2791,-14468,-9916
2792,-14467,11190
2793,-14467,10809
2794,-14466,4914
2795,-14465,-5629
2796,-14465,-5628
2797,-14464,-2743
2798,-14463,-10850
2799,-14462,9166
2800,-14462,4535
2801,-14461,9941
2802,-14461,378
2803,-14461,379
2804,-14461,-9168
2805,-14461,14556
2806,-14460,3263
2807,-14460,3049
2808,-14459,5744
2809,-14459,4721
2810,-14458,15030
2811,-14457,11101
2812,-14457,8483
2813,-14456,-14629
2814,-14455,10351
2815,-14455,-4228
2816,-14453,3079
2817,-14453,15725
2818,-14452,12874
2819,-14452,2242
2820,-14452,-12305
2821,-14451,6667
2822,-14451,5647
2823,-14451,-7234
2824,-14451,-15139
2825,-14450,171
2826,-14450,14612
2827,-14449,-13693
2828,-14448,5565
2829,-14447,7395
2830,-14447,-4238
2831,-14444,8863
2832,-14444,7956
2833,-14444,14709
2834,-14443,8647
2835,-14441,3430
2836,-14441,3050
2837,-14441,-10327
2838,-14440,-2372
2839,-14440,-3421
2840,-14440,-4360
2841,-14440,-4737
2842,-14440,-10840
2843,-14440,-14914
2844,-14439,10589
2845,-14439,-10031
2846,-14438,-3330
2847,-14438,-7275
2848,-14437,-13589
2849,-14436,-5137
2850,-14435,-1568
2851,-14435,-1814
2852,-14435,-6017
2853,-14435,-12906
2854,-14435,15199
2855,-14433,-8101
2856,-14432,5701
2857,-14431,-13299
2858,-14430,-416
2859,-14429,3896
2860,-14429,-2321
2861,-14429,-15017
2862,-14429,15432
2863,-14428,-12103
2864,-14428,15732
2865,-14427,10493
2866,-14427,9707
2867,-14427,-8602
2868,-14427,-9207
2869,-14427,-13048
2870,-14426,-760
2871,-14425,-8520
2872,-14423,13048
2873,-14423,-5601
2874,-14423,-14375
2875,-14422,12099
2876,-14422,7124
2877,-14422,930
2878,-14420,-9867
2879,-14418,10745
2880,-14418,-1934
2881,-14418,-8785
2882,-14417,10044
2883,-14417,6250
2884,-14415,4520
2885,-14415,3289
2886,-14414,12743
2887,-14411,15209
2888,-14410,-2342
2889,-14409,-4943
2890,-14409,-7130
2891,-14409,-8167
2892,-14408,132
2893,-14408,-3668
2894,-14407,7382
2895,-14407,1865
2896,-14407,-1950
2897,-14405,-13429
2898,-14404,-1316
2899,-14403,1981
2900,-14403,14678
2901,-14402,8653
2902,-14401,-8798
2903,-14399,-4268
2904,-14399,-6295
2905,-14398,7647
2906,-14397,10042
2907,-14397,6484
2908,-14397,4585
2909,-14397,-680
2910,-14396,-13713
2911,-14396,15320
2912,-14395,13722
2913,-14395,13131
2914,-14395,-3343
2915,-14394,1949
2916,-14394,-956
2917,-14393,-7514
2918,-14393,-15098
2919,-14391,5291
2920,-14391,379
2921,-14391,-14824
2922,-14391,-15097
2923,-14390,-294
2924,-14390,-10966
2925,-14389,-1380
2926,-14388,8611
2927,-14388,15921
2928,-14387,-10722
2929,-14387,-11895
2930,-14386,-8464
2931,-14386,-12162
2932,-14386,15188
2933,-14385,1993
2934,-14385,-1908
2935,-14384,11685
2936,-14384,10652
2937,-14383,10652
2938,-14383,10653
2939,-14383,10446
2940,-14383,-1534
2941,-14383,-9424
2942,-14383,-10012
2943,-14382,11037
2944,-14381,6900
2945,-14380,10094
2946,-14379,-7943
2947,-14377,3229
2948,-14377,-2814
2949,-14377,-3843
2950,-14376,-3843
2951,-14376,-4131
2952,-14375,6721
2953,-14375,2492
2954,-14373,2674
2955,-14373,2675
2956,-14373,367
2957,-14373,-13105
2958,-14372,13977
2959,-14372,12365
2960,-14372,4835
2961,-14372,-4027
2962,-14371,-5648
2963,-14371,-8446
2964,-14371,-14961
2965,-14369,13332
2966,-14369,10902
2967,-14369,14520
2968,-14368,12340
2969,-14367,9118
2970,-14367,9119
2971,-14367,7781
2972,-14367,6267
2973,-14367,-3675
2974,-14367,-10891
2975,-14366,8998
2976,-14366,988
2977,-14366,-15888
2978,-14365,-5246
2979,-14364,10605
2980,-14364,6601
2981,-14364,4383
2982,-14364,-12259
2983,-14363,1366
2984,-14362,-8307
2985,-14360,-2149
2986,-14360,-14774
2987,-14360,-14773
2988,-14360,-14853
2989,-14359,11616
2990,-14359,-10559
2991,-14359,-15712
2992,-14357,-1502
2993,-14357,-10422
2994,-14356,-8394
2995,-14355,5800
2996,-14355,2565
2997,-14354,13215
2998,-14354,6653
2999,-14353,6044
3000,-14352,3078
3001,-14352,-4329
3002,-14352,15238
3003,-14351,3420
3004,-14351,-5220
3005,-14350,8611
3006,-14350,-6782
3007,-14349,4692
3008,-14349,15194
3009,-14348,13085
3010,-14346,-15661
3011,-14345,12783
3012,-14344,9295
3013,-14344,14823
3014,-14344,-15060
3015,-14343,5181
3016,-14343,-6015
3017,-14342,13982
3018,-14342,3212
3019,-14340,4707
3020,-14338,12998
3021,-14338,12261
3022,-14338,-12571
3023,-14337,-13050
3024,-14337,-13642
3025,-14337,-13641
3026,-14337,-15141
3027,-14336,1702
3028,-14335,10016
3029,-14335,4517
3030,-14335,-11274
3031,-14334,-6493
3032,-14334,-11901
3033,-14333,5066
3034,-14333,-2678
3035,-14333,-3896
3036,-14333,-6493
3037,-14332,10944
3038,-14332,-9970
3039,-14331,11233
3040,-14331,6654
3041,-14331,-5571
3042,-14329,8836
3043,-14329,1213
3044,-14329,15158
3045,-14328,-6576
3046,-14328,-15021
3047,-14327,-1333
3048,-14327,-9717
3049,-14327,-13759
3050,-14326,5237
3051,-14326,-5843
3052,-14326,-6488
3053,-14326,-7127
3054,-14325,10264
3055,-14325,9433
3056,-14324,-3178
3057,-14323,-9432
3058,-14323,-12131
3059,-14323,-12130
3060,-14323,15802
3061,-14322,-5759
3062,-14322,-13747
3063,-14322,-14983
3064,-14321,-1106
3065,-14320,-1129
3066,-14319,14200
3067,-14319,6198
3068,-14319,6020
3069,-14319,-1129
3070,-14318,11136
3071,-14318,2847
3072,-14318,2644
3073,-14317,-14778
3074,-14316,12848
3075,-14316,1894
3076,-14315,-5075
3077,-14315,-5151
3078,-14315,-7362
3079,-14315,-9929
3080,-14314,-892
3081,-14314,-13739
3082,-14313,7438
3083,-14311,13714
3084,-14311,-2749
3085,-14311,-4007
3086,-14311,-14332
3087,-14311,-15417
3088,-14311,-15496
3089,-14310,13674
3090,-14310,7818
3091,-14310,-6037
3092,-14309,-14473
3093,-14306,9678
3094,-14306,1103
3095,-14305,13147
3096,-14304,7405
3097,-14304,2969
3098,-14304,-2527
3099,-14303,13449
3100,-14302,-11745
3101,-14301,-1106
3102,-14300,4453
3103,-14299,-4141
3104,-14298,-9276
3105,-14298,-14281
3106,-14297,4711
3107,-14296,13207
3108,-14296,7884
3109,-14296,1748
3110,-14296,-2249
3111,-14295,8275
3112,-14294,7828
3113,-14294,-3682
3114,-14294,-8733
3115,-14293,11548
3116,-14292,7598
3117,-14291,11243
3118,-14290,8827
3119,-14290,-10365
3120,-14289,10057
3121,-14289,8121
3122,-14289,-8959
3123,-14288,9397
3124,-14288,-2204
3125,-14288,-2616
3126,-14288,14929
3127,-14287,11372
3128,-14287,4139
3129,-14287,-1586
3130,-14287,-12473
3131,-14287,14671
3132,-14286,855
3133,-14286,-3971
3134,-14285,13835
3135,-14285,15726
3136,-14284,10786
3137,-14284,-456
3138,-14284,-13795
3139,-14283,38
3140,-14283,-9799
3141,-14283,14354
3142,-14281,860