-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOGLE-transients-2015-transients.html
5512 lines (5353 loc) · 269 KB
/
OGLE-transients-2015-transients.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<HEAD>
<TITLE>OGLE-IV transients</TITLE>
</HEAD>
<body>
<BR>
<p>
<div style="font-size:40px; font-weight:bold; color:rgb(0,0,0);
text-indent:280px;">
OGLE-IV Transient Detection System
</div>
<div style="font-size:20px; font-weight:normal; color:rgb(0,0,0);
text-indent:200px;">
by Łukasz <B>Wyrzykowski</B>, Zuzanna <B>Kostrzewa-Rutkowska</B>, Szymon <B>Kozłowski</B> and
Andrzej <B>Udalski</B>
</div>
<div style="font-size:16px; font-weight:normal;
color:rgb(0,0,0);text-indent:550px;">
on behalf of the OGLE Survey Team
</div>
</p>
<BR>
<table width=1424 border=0 cellpadding=0 cellspacing=10>
<tr><td>
<div style="font-size:16px; font-weight:normal; color:rgb(0,0,0);
text-align:justify;">
We present our near-real-time discoveries of ongoing transients (mainly
supernovae, SNe) in the ~700 sq. deg. footprint of the OGLE-IV survey
of the Magellanic System. With the average cadence of 3 days in the
I-band filter, we discover annually 150 high quality SN candidates
inside approximately 23.5h < RA < 6.3h and -80 deg < Decl. < -62 deg.
All the transients are brighter than I<20.5 mag.
</div>
</td></tr>
<table width=1424 border=0 cellpadding=0 cellspacing=10>
<tr><td>
<div style="font-size:16px; font-weight:normal; color:rgb(0,0,0);
text-align:justify;">
For archival transients from previous seasons see here:<br>
<a href="http://ogle.astrouw.edu.pl/ogle4/transients/2012/transients.html">2012</a><br>
<a href="http://ogle.astrouw.edu.pl/ogle4/transients/2013/transients.html">2013</a><br>
<a
href="http://ogle.astrouw.edu.pl/ogle4/transients/2014/transients.html">2014a</a><br>
<a
href="http://ogle.astrouw.edu.pl/ogle4/transients/2014b/transients.html">2014b</a><br>
</div>
</td></tr>
<!--
<tr><td>
<div style="font-size:16px; font-weight:bold; color:rgb(255,100,0);">
As of February 26, 2014 we discovered 225 SNe candidates in real time,
of which 79 have been confirmed by our collaborators.
</div>
</td></tr>
-->
<tr><td>
<div style="font-size:16px; font-weight:normal; color:rgb(178,34,34);
text-align:justify;">
If you point to our discoveries in your publications (papers, ATels,
CBATs, posters), we would highly appreciate acknowledging the OGLE-IV
Transient Detection System (OTDS) by citing <B>Wyrzykowski et al. ATEL
#4495</B>, <B>Kozłowski et al. 2013, Acta Astronomica, 63,
1</B> and <b>Wyrzykowski et al. 2014</b>.
Pointer to
our transient website http://ogle.astrouw.edu.pl/ogle4/transients/
would be also greatly appreciated.
The technical details and results from the first two seasons are
presented in the paper <a
href="http://arxiv.org/abs/1409.1095">Wyrzykowski et al. 2014 (AcA,64,197)</a>.
</div>
</td></tr>
<tr><td>
For each candidate below, the panels show (from left to right):<br>
1) its light curve in I-band (upper limits marked with arrows),<BR>
Green V letters mark epochs with existing V-band images, however, the
V-band photometry will be produced somewhat later.<BR>
2) its reference image (160''x160'', N is up, E is to the left), <BR>
3) maximum brightness image (or last available), and<BR>
4) the difference image between 2) and 3).
</td></tr>
<tr><td>
For each transient below there is: the transient's full designation
(allowed shortening: SN OGLEyy-nnn),
coordinates (J2000.0),
date and time of maximum brightness, internal OGLE DB ID (N suffix
indicates the object was new, no suffix means an outburst on an old object), discovery HJD,
discovery I mag, spectral classification (if available) with the hyperlink.<BR>
The light curve is shown from -50 days from the maximum
brightness to the current date.
The light curve plot (<B>click for photometry</B>) links to all available
photometric data containing
columns: JD, I-band mag, error mag, seeing, background. Note, the data
are only roughly calibrated to about 0.2 mag.
Machine readable information on all transients is stored in the ASCII
file <a href="transients.txt">transients.txt</a>. Columns: id, OGLE
DBid, ra, dec (hex), ra, dec (deg), HJDmax, magmax, date max, HJD of the
last
frame, last magnitude, date of last frame, discovery channel (N/O), x,y
on full ref.image.
<br>
The false-color template cutout (2x2 arcmin) is produced from I and V.
<br>
<br>
<i>From 25.Oct 2013 all photometry shows a net flux measured on
subtracted
images, i.e. it does not contain the background flux.
For some transients detected on top of galaxies their observed
magnitude will be brighter than stated here.
</i>
<p>
<b>DISCLAIMER: All data are provided here for informative purposes only.
Any scientific and publication use of the OGLE data (provided light
curves) should be consulted
with us.
</b>
</td></tr>
</table>
<hr>
<br><a name="OGLE16bbt"> </a>
<a href="imagesSELECTED/OGLE16bbt.dat">
<img src=imagesSELECTED/plotLMC625.27.I.1776.96.1287.65.png height=320>
</a>
<a href="imagesSELECTED/chartLMC625.27.I.1776.96.1287.65.fts">
<img src=imagesSELECTED/chartLMC625.27.I.1776.96.1287.65.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC625.27.I.1776.96.1287.65.7437.59674.fts">
<img src=imagesSELECTED/frameLMC625.27.I.1776.96.1287.65.7437.59674.gif height="320"> </a>
<a href="imagesSELECTED/subLMC625.27.I.1776.96.1287.65.7437.59674.fts">
<img src=imagesSELECTED/subLMC625.27.I.1776.96.1287.65.7437.59674.gif height="320"> </a>
<br>OGLE16bbt Ra,Dec=
4:31:19.69 -78:06:52.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=67.83203&lat=-78.11456&radius=0.5"> NED </a>
HJD_max= 7437.59674 2016-02-19.097 LMC625.27.1776.96.1287.65
Disc_HJD= 2457437.59674 Disc_Imag= 20.265
Offset= 2.69637
Phot.class= -
<br><hr>
<br><a name="OGLE16azt"> </a>
<a href="imagesSELECTED/OGLE16azt.dat">
<img src=imagesSELECTED/plotLMC606.19.I.1575.88.3087.69.png height=320>
</a>
<a href="imagesSELECTED/chartLMC606.19.I.1575.88.3087.69.fts">
<img src=imagesSELECTED/chartLMC606.19.I.1575.88.3087.69.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC606.19.I.1575.88.3087.69.7432.66358.fts">
<img src=imagesSELECTED/frameLMC606.19.I.1575.88.3087.69.7432.66358.gif height="320"> </a>
<a href="imagesSELECTED/subLMC606.19.I.1575.88.3087.69.7432.66358.fts">
<img src=imagesSELECTED/subLMC606.19.I.1575.88.3087.69.7432.66358.gif height="320"> </a>
<br>OGLE16azt Ra,Dec=
6:13:35.45 -63:33:26.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=93.39772&lat=-63.55733&radius=0.5"> NED </a>
HJD_max= 7432.66358 2016-02-14.164 LMC606.19.1575.88.3087.69
Disc_HJD= 2457432.66358 Disc_Imag= 19.919
Offset= 1.64949
Phot.class= -
<br><hr>
<br><a name="OGLE16ayz"> </a>
<a href="imagesSELECTED/OGLE16ayz.dat">
<img src=imagesSELECTED/plotMBR199.27.I.308.png height=320>
</a>
<a href="imagesSELECTED/chartMBR199.27.I.308.fts">
<img src=imagesSELECTED/chartMBR199.27.I.308.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR199.27.I.308.7410.64290.fts">
<img src=imagesSELECTED/frameMBR199.27.I.308.7410.64290.gif height="320"> </a>
<a href="imagesSELECTED/subMBR199.27.I.308.7410.64290.fts">
<img src=imagesSELECTED/subMBR199.27.I.308.7410.64290.gif height="320"> </a>
<br>OGLE16ayz Ra,Dec=
2:52:30.08 -64:43:35.0
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=43.12535&lat=-64.72638&radius=0.5"> NED </a>
HJD_max= 7410.64290 2016-01-23.143 MBR199.27.308N <a href="imagesSELECTED/colorOGLE16ayz.png">color template </a>
Disc_HJD= 2457429.58321 Disc_Imag= 19.896
Offset= 1.16785
Phot.class= -
<br><hr>
<br><a name="OGLE16ayy"> </a>
<a href="imagesSELECTED/OGLE16ayy.dat">
<img src=imagesSELECTED/plotLMC587.10.I.383.png height=320>
</a>
<a href="imagesSELECTED/chartLMC587.10.I.383.fts">
<img src=imagesSELECTED/chartLMC587.10.I.383.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC587.10.I.383.7434.63715.fts">
<img src=imagesSELECTED/frameLMC587.10.I.383.7434.63715.gif height="320"> </a>
<a href="imagesSELECTED/subLMC587.10.I.383.7434.63715.fts">
<img src=imagesSELECTED/subLMC587.10.I.383.7434.63715.gif height="320"> </a>
<br>OGLE16ayy Ra,Dec=
4:50:58.14 -62:39:12.6
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=72.74223&lat=-62.65351&radius=0.5"> NED </a>
HJD_max= 7434.63715 2016-02-16.137 LMC587.10.383N <a href="imagesSELECTED/colorOGLE16ayy.png">color template </a>
Disc_HJD= 2457427.69257 Disc_Imag= 20.490
Offset= 2.72941
Phot.class= -
<br><hr>
<br><a name="OGLE16avr"> </a>
<a href="imagesSELECTED/OGLE16avr.dat">
<img src=imagesSELECTED/plotLMC617.10.I.735.03.3792.98.png height=320>
</a>
<a href="imagesSELECTED/chartLMC617.10.I.735.03.3792.98.fts">
<img src=imagesSELECTED/chartLMC617.10.I.735.03.3792.98.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC617.10.I.735.03.3792.98.7434.61284.fts">
<img src=imagesSELECTED/frameLMC617.10.I.735.03.3792.98.7434.61284.gif height="320"> </a>
<a href="imagesSELECTED/subLMC617.10.I.735.03.3792.98.7434.61284.fts">
<img src=imagesSELECTED/subLMC617.10.I.735.03.3792.98.7434.61284.gif height="320"> </a>
<br>OGLE16avr Ra,Dec=
4:21:32.00 -67:38:36.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=65.38332&lat=-67.64344&radius=0.5"> NED </a>
HJD_max= 7434.61284 2016-02-16.113 LMC617.10.735.03.3792.98
Disc_HJD= 2457428.63703 Disc_Imag= 20.561
Offset= 1.37233
Phot.class= -
<br><hr>
<br><a name="OGLE16auy"> </a>
<a href="imagesSELECTED/OGLE16auy.dat">
<img src=imagesSELECTED/plotMBR204.19.I.1266.06.2411.08.png height=320>
</a>
<a href="imagesSELECTED/chartMBR204.19.I.1266.06.2411.08.fts">
<img src=imagesSELECTED/chartMBR204.19.I.1266.06.2411.08.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR204.19.I.1266.06.2411.08.7440.58489.fts">
<img src=imagesSELECTED/frameMBR204.19.I.1266.06.2411.08.7440.58489.gif height="320"> </a>
<a href="imagesSELECTED/subMBR204.19.I.1266.06.2411.08.7440.58489.fts">
<img src=imagesSELECTED/subMBR204.19.I.1266.06.2411.08.7440.58489.gif height="320"> </a>
<br>OGLE16auy Ra,Dec=
3:07:49.10 -65:34:08.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=46.95460&lat=-65.56901&radius=0.5"> NED </a>
HJD_max= 7440.58489 2016-02-22.085 MBR204.19.1266.06.2411.08
Disc_HJD= 2457427.60096 Disc_Imag= 20.559
Offset= 2.59183
Phot.class= -
<br><hr>
<br><a name="OGLE16avf"> </a>
<a href="imagesSELECTED/OGLE16avf.dat">
<img src=imagesSELECTED/plotLMC554.01.I.1783.75.2023.25.png height=320>
</a>
<a href="imagesSELECTED/chartLMC554.01.I.1783.75.2023.25.fts">
<img src=imagesSELECTED/chartLMC554.01.I.1783.75.2023.25.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC554.01.I.1783.75.2023.25.7427.67783.fts">
<img src=imagesSELECTED/frameLMC554.01.I.1783.75.2023.25.7427.67783.gif height="320"> </a>
<a href="imagesSELECTED/subLMC554.01.I.1783.75.2023.25.7427.67783.fts">
<img src=imagesSELECTED/subLMC554.01.I.1783.75.2023.25.7427.67783.gif height="320"> </a>
<br>OGLE16avf Ra,Dec=
5:48:48.19 -68:33:33.7
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=87.20079&lat=-68.55937&radius=0.5"> NED </a>
HJD_max= 7427.67783 2016-02-09.178 LMC554.01.1783.75.2023.25
Disc_HJD= 2457427.67783 Disc_Imag= 17.170
Offset= 1.82889
Phot.class= -
<br><hr>
<br><a name="OGLE16ash"> </a>
<a href="imagesSELECTED/OGLE16ash.dat">
<img src=imagesSELECTED/plotMBR126.21.I.1595.87.595.13.png height=320>
</a>
<a href="imagesSELECTED/chartMBR126.21.I.1595.87.595.13.fts">
<img src=imagesSELECTED/chartMBR126.21.I.1595.87.595.13.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR126.21.I.1595.87.595.13.7425.56981.fts">
<img src=imagesSELECTED/frameMBR126.21.I.1595.87.595.13.7425.56981.gif height="320"> </a>
<a href="imagesSELECTED/subMBR126.21.I.1595.87.595.13.7425.56981.fts">
<img src=imagesSELECTED/subMBR126.21.I.1595.87.595.13.7425.56981.gif height="320"> </a>
<br>OGLE16ash Ra,Dec=
3:05:07.34 -70:38:41.5
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=46.28058&lat=-70.64486&radius=0.5"> NED </a>
HJD_max= 7425.56981 2016-02-07.070 MBR126.21.1595.87.595.13
Disc_HJD= 2457412.59771 Disc_Imag= 20.799
Offset= 1.18624
Phot.class= -
<br><hr>
<br><a name="OGLE16asb"> </a>
<a href="imagesSELECTED/OGLE16asb.dat">
<img src=imagesSELECTED/plotSMC805.29.I.1345.png height=320>
</a>
<a href="imagesSELECTED/chartSMC805.29.I.1345.fts">
<img src=imagesSELECTED/chartSMC805.29.I.1345.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC805.29.I.1345.7408.57344.fts">
<img src=imagesSELECTED/frameSMC805.29.I.1345.7408.57344.gif height="320"> </a>
<a href="imagesSELECTED/subSMC805.29.I.1345.7408.57344.fts">
<img src=imagesSELECTED/subSMC805.29.I.1345.7408.57344.gif height="320"> </a>
<br>OGLE16asb Ra,Dec=
1:07:49.75 -65:09:17.9
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=16.95729&lat=-65.15499&radius=0.5"> NED </a>
HJD_max= 7408.57344 2016-01-21.073 SMC805.29.1345N <a href="imagesSELECTED/colorOGLE16asb.png">color template </a>
Disc_HJD= 2457408.57344 Disc_Imag= 19.174
Offset= hostless
Phot.class= -
<br><hr>
<br><a name="OGLE16asa"> </a>
<a href="imagesSELECTED/OGLE16asa.dat">
<img src=imagesSELECTED/plotSMC716.05.I.703.png height=320>
</a>
<a href="imagesSELECTED/chartSMC716.05.I.703.fts">
<img src=imagesSELECTED/chartSMC716.05.I.703.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC716.05.I.703.7407.56829.fts">
<img src=imagesSELECTED/frameSMC716.05.I.703.7407.56829.gif height="320"> </a>
<a href="imagesSELECTED/subSMC716.05.I.703.7407.56829.fts">
<img src=imagesSELECTED/subSMC716.05.I.703.7407.56829.gif height="320"> </a>
<br>OGLE16asa Ra,Dec=
0:55:07.59 -69:21:34.6
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=13.78163&lat=-69.35960&radius=0.5"> NED </a>
HJD_max= 7407.56829 2016-01-20.068 SMC716.05.703N <a href="imagesSELECTED/colorOGLE16asa.png">color template </a>
Disc_HJD= 2457407.56829 Disc_Imag= 19.544
Offset= hostless
Phot.class= -
<br><hr>
<br><a name="OGLE16arz"> </a>
<a href="imagesSELECTED/OGLE16arz.dat">
<img src=imagesSELECTED/plotMBR228.12.I.418.png height=320>
</a>
<a href="imagesSELECTED/chartMBR228.12.I.418.fts">
<img src=imagesSELECTED/chartMBR228.12.I.418.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR228.12.I.418.7410.67873.fts">
<img src=imagesSELECTED/frameMBR228.12.I.418.7410.67873.gif height="320"> </a>
<a href="imagesSELECTED/subMBR228.12.I.418.7410.67873.fts">
<img src=imagesSELECTED/subMBR228.12.I.418.7410.67873.gif height="320"> </a>
<br>OGLE16arz Ra,Dec=
4:04:36.65 -67:09:05.5
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=61.15273&lat=-67.15152&radius=0.5"> NED </a>
HJD_max= 7410.67873 2016-01-23.179 MBR228.12.418N <a href="imagesSELECTED/colorOGLE16arz.png">color template </a>
Disc_HJD= 2457410.67873 Disc_Imag= 19.665
Offset= 0.172252
Phot.class= -
<br><hr>
<br><a name="OGLE16ary"> </a>
<a href="imagesSELECTED/OGLE16ary.dat">
<img src=imagesSELECTED/plotMBR204.27.I.289.png height=320>
</a>
<a href="imagesSELECTED/chartMBR204.27.I.289.fts">
<img src=imagesSELECTED/chartMBR204.27.I.289.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR204.27.I.289.7396.64226.fts">
<img src=imagesSELECTED/frameMBR204.27.I.289.7396.64226.gif height="320"> </a>
<a href="imagesSELECTED/subMBR204.27.I.289.7396.64226.fts">
<img src=imagesSELECTED/subMBR204.27.I.289.7396.64226.gif height="320"> </a>
<br>OGLE16ary Ra,Dec=
3:08:02.94 -65:13:13.8
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=47.01225&lat=-65.22049&radius=0.5"> NED </a>
HJD_max= 7396.64226 2016-01-09.142 MBR204.27.289N <a href="imagesSELECTED/colorOGLE16ary.png">color template </a>
Disc_HJD= 2457415.54747 Disc_Imag= 20.723
Offset= 3.75977
Phot.class= -
<br><hr>
<br><a name="OGLE16arx"> </a>
<a href="imagesSELECTED/OGLE16arx.dat">
<img src=imagesSELECTED/plotLMC538.31.I.4296.png height=320>
</a>
<a href="imagesSELECTED/chartLMC538.31.I.4296.fts">
<img src=imagesSELECTED/chartLMC538.31.I.4296.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC538.31.I.4296.7399.72955.fts">
<img src=imagesSELECTED/frameLMC538.31.I.4296.7399.72955.gif height="320"> </a>
<a href="imagesSELECTED/subLMC538.31.I.4296.7399.72955.fts">
<img src=imagesSELECTED/subLMC538.31.I.4296.7399.72955.gif height="320"> </a>
<br>OGLE16arx Ra,Dec=
4:35:13.67 -69:23:29.2
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=68.80698&lat=-69.39143&radius=0.5"> NED </a>
HJD_max= 7399.72955 2016-01-12.230 LMC538.31.4296N <a href="imagesSELECTED/colorOGLE16arx.png">color template </a>
Disc_HJD= 2457410.69374 Disc_Imag= 18.496
Offset= 1.3945
Phot.class= -
<br><hr>
<br><a name="OGLE16arw"> </a>
<a href="imagesSELECTED/OGLE16arw.dat">
<img src=imagesSELECTED/plotLMC524.18.I.187.png height=320>
</a>
<a href="imagesSELECTED/chartLMC524.18.I.187.fts">
<img src=imagesSELECTED/chartLMC524.18.I.187.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC524.18.I.187.7440.61526.fts">
<img src=imagesSELECTED/frameLMC524.18.I.187.7440.61526.gif height="320"> </a>
<a href="imagesSELECTED/subLMC524.18.I.187.7440.61526.fts">
<img src=imagesSELECTED/subLMC524.18.I.187.7440.61526.gif height="320"> </a>
<br>OGLE16arw Ra,Dec=
5:09:31.64 -73:22:51.7
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=77.38184&lat=-73.38103&radius=0.5"> NED </a>
HJD_max= 7440.61526 2016-02-22.115 LMC524.18.187N <a href="imagesSELECTED/colorOGLE16arw.png">color template </a>
Disc_HJD= 2457410.65674 Disc_Imag= 20.143
Offset= 8.89172
Phot.class= -
<br><hr>
<br><a name="OGLE16aqe"> </a>
<a href="imagesSELECTED/OGLE16aqe.dat">
<img src=imagesSELECTED/plotLMC637.12.I.777.19.338.31.png height=320>
</a>
<a href="imagesSELECTED/chartLMC637.12.I.777.19.338.31.fts">
<img src=imagesSELECTED/chartLMC637.12.I.777.19.338.31.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC637.12.I.777.19.338.31.7415.61560.fts">
<img src=imagesSELECTED/frameLMC637.12.I.777.19.338.31.7415.61560.gif height="320"> </a>
<a href="imagesSELECTED/subLMC637.12.I.777.19.338.31.7415.61560.fts">
<img src=imagesSELECTED/subLMC637.12.I.777.19.338.31.7415.61560.gif height="320"> </a>
<br>OGLE16aqe Ra,Dec=
5:20:44.72 -79:25:31.9
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=80.18632&lat=-79.42553&radius=0.5"> NED </a>
HJD_max= 7415.61560 2016-01-28.116 LMC637.12.777.19.338.31
Disc_HJD= 2457415.61560 Disc_Imag= 19.955
Offset= 0.212786
Phot.class= -
<br><hr>
<br><a name="OGLE16app"> </a>
<a href="imagesSELECTED/OGLE16app.dat">
<img src=imagesSELECTED/plotLMC554.24.I.841.09.1320.91.png height=320>
</a>
<a href="imagesSELECTED/chartLMC554.24.I.841.09.1320.91.fts">
<img src=imagesSELECTED/chartLMC554.24.I.841.09.1320.91.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC554.24.I.841.09.1320.91.7413.69697.fts">
<img src=imagesSELECTED/frameLMC554.24.I.841.09.1320.91.7413.69697.gif height="320"> </a>
<a href="imagesSELECTED/subLMC554.24.I.841.09.1320.91.7413.69697.fts">
<img src=imagesSELECTED/subLMC554.24.I.841.09.1320.91.7413.69697.gif height="320"> </a>
<br>OGLE16app Ra,Dec=
5:39:28.44 -67:59:20.2
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=84.86851&lat=-67.98894&radius=0.5"> NED </a>
HJD_max= 7413.69697 2016-01-26.197 LMC554.24.841.09.1320.91
Disc_HJD= 2457413.69697 Disc_Imag= 17.423
Offset= 5.82825
Phot.class= -
<br><hr>
<br><a name="OGLE16anr"> </a>
<a href="imagesSELECTED/OGLE16anr.dat">
<img src=imagesSELECTED/plotLMC555.06.I.1182.66.1418.51.png height=320>
</a>
<a href="imagesSELECTED/chartLMC555.06.I.1182.66.1418.51.fts">
<img src=imagesSELECTED/chartLMC555.06.I.1182.66.1418.51.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC555.06.I.1182.66.1418.51.7408.73502.fts">
<img src=imagesSELECTED/frameLMC555.06.I.1182.66.1418.51.7408.73502.gif height="320"> </a>
<a href="imagesSELECTED/subLMC555.06.I.1182.66.1418.51.7408.73502.fts">
<img src=imagesSELECTED/subLMC555.06.I.1182.66.1418.51.7408.73502.gif height="320"> </a>
<br>OGLE16anr Ra,Dec=
5:39:45.57 -67:22:39.0
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=84.93988&lat=-67.37750&radius=0.5"> NED </a>
HJD_max= 7408.73502 2016-01-21.235 LMC555.06.1182.66.1418.51
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457408.73502
Disc_Imag= 17.48
not classified
Offset= 1.80397
Phot.class= -
<br><hr>
<br><a name="OGLE16anh"> </a>
<a href="imagesSELECTED/OGLE16anh.dat">
<img src=imagesSELECTED/plotSMC790.13.I.958.00.1515.86.png height=320>
</a>
<a href="imagesSELECTED/chartSMC790.13.I.958.00.1515.86.fts">
<img src=imagesSELECTED/chartSMC790.13.I.958.00.1515.86.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC790.13.I.958.00.1515.86.7403.54771.fts">
<img src=imagesSELECTED/frameSMC790.13.I.958.00.1515.86.7403.54771.gif height="320"> </a>
<a href="imagesSELECTED/subSMC790.13.I.958.00.1515.86.7403.54771.fts">
<img src=imagesSELECTED/subSMC790.13.I.958.00.1515.86.7403.54771.gif height="320"> </a>
<br>OGLE16anh Ra,Dec=
0:29:14.56 -67:48:08.6
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=7.31065&lat=-67.80240&radius=0.5"> NED </a>
HJD_max= 7403.54771 2016-01-16.048 SMC790.13.958.00.1515.86
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457408.54047
Disc_Imag= 19.93
not classified
Offset= 2.90256
Phot.class= -
<br><hr>
<br><a name="OGLE16amx"> </a>
<a href="imagesSELECTED/OGLE16amx.dat">
<img src=imagesSELECTED/plotLMC572.28.I.1525.78.2098.10.png height=320>
</a>
<a href="imagesSELECTED/chartLMC572.28.I.1525.78.2098.10.fts">
<img src=imagesSELECTED/chartLMC572.28.I.1525.78.2098.10.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC572.28.I.1525.78.2098.10.7403.70769.fts">
<img src=imagesSELECTED/frameLMC572.28.I.1525.78.2098.10.7403.70769.gif height="320"> </a>
<a href="imagesSELECTED/subLMC572.28.I.1525.78.2098.10.7403.70769.fts">
<img src=imagesSELECTED/subLMC572.28.I.1525.78.2098.10.7403.70769.gif height="320"> </a>
<br>OGLE16amx Ra,Dec=
6:12:58.92 -74:22:50.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=93.24548&lat=-74.38058&radius=0.5"> NED </a>
HJD_max= 7403.70769 2016-01-16.208 LMC572.28.1525.78.2098.10
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457407.69524
Disc_Imag= 20.36
not classified
Offset= 2.70096
Phot.class= -
<br><hr>
<br><a name="OGLE16amc"> </a>
<a href="imagesSELECTED/OGLE16amc.dat">
<img src=imagesSELECTED/plotMBR231.30.I.439.80.3287.50.png height=320>
</a>
<a href="imagesSELECTED/chartMBR231.30.I.439.80.3287.50.fts">
<img src=imagesSELECTED/chartMBR231.30.I.439.80.3287.50.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR231.30.I.439.80.3287.50.7401.64750.fts">
<img src=imagesSELECTED/frameMBR231.30.I.439.80.3287.50.7401.64750.gif height="320"> </a>
<a href="imagesSELECTED/subMBR231.30.I.439.80.3287.50.7401.64750.fts">
<img src=imagesSELECTED/subMBR231.30.I.439.80.3287.50.7401.64750.gif height="320"> </a>
<br>OGLE16amc Ra,Dec=
4:04:02.35 -62:45:26.3
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=61.00981&lat=-62.75730&radius=0.5"> NED </a>
HJD_max= 7401.64750 2016-01-14.148 MBR231.30.439.80.3287.50
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457405.65343
Disc_Imag= 19.06
not classified
Offset= 8.27917
Phot.class= -
<br><hr>
<br><a name="OGLE16alt"> </a>
<a href="imagesSELECTED/OGLE16alt.dat">
<img src=imagesSELECTED/plotLMC605.07.I.342.82.4052.64.png height=320>
</a>
<a href="imagesSELECTED/chartLMC605.07.I.342.82.4052.64.fts">
<img src=imagesSELECTED/chartLMC605.07.I.342.82.4052.64.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC605.07.I.342.82.4052.64.7439.70102.fts">
<img src=imagesSELECTED/frameLMC605.07.I.342.82.4052.64.7439.70102.gif height="320"> </a>
<a href="imagesSELECTED/subLMC605.07.I.342.82.4052.64.7439.70102.fts">
<img src=imagesSELECTED/subLMC605.07.I.342.82.4052.64.7439.70102.gif height="320"> </a>
<br>OGLE16alt Ra,Dec=
5:55:10.83 -62:15:59.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=88.79511&lat=-62.26642&radius=0.5"> NED </a>
HJD_max= 7439.70102 2016-02-21.201 LMC605.07.342.82.4052.64
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457404.79591
Disc_Imag= 19.40
not classified
Offset= 3.72669
Phot.class= -
<br><hr>
<br><a name="OGLE16akk"> </a>
<a href="imagesSELECTED/OGLE16akk.dat">
<img src=imagesSELECTED/plotMBR136.14.I.1055.04.2976.83.png height=320>
</a>
<a href="imagesSELECTED/chartMBR136.14.I.1055.04.2976.83.fts">
<img src=imagesSELECTED/chartMBR136.14.I.1055.04.2976.83.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR136.14.I.1055.04.2976.83.7404.62941.fts">
<img src=imagesSELECTED/frameMBR136.14.I.1055.04.2976.83.7404.62941.gif height="320"> </a>
<a href="imagesSELECTED/subMBR136.14.I.1055.04.2976.83.7404.62941.fts">
<img src=imagesSELECTED/subMBR136.14.I.1055.04.2976.83.7404.62941.gif height="320"> </a>
<br>OGLE16akk Ra,Dec=
3:31:37.71 -70:46:30.6
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=52.90713&lat=-70.77515&radius=0.5"> NED </a>
HJD_max= 7404.62941 2016-01-17.129 MBR136.14.1055.04.2976.83
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457404.62941
Disc_Imag= 20.48
not classified
Offset= 7.08289
Phot.class= -
<br><hr>
<br><a name="OGLE16ajk"> </a>
<a href="imagesSELECTED/OGLE16ajk.dat">
<img src=imagesSELECTED/plotSMC812.27.I.921.87.1363.33.png height=320>
</a>
<a href="imagesSELECTED/chartSMC812.27.I.921.87.1363.33.fts">
<img src=imagesSELECTED/chartSMC812.27.I.921.87.1363.33.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC812.27.I.921.87.1363.33.7404.57412.fts">
<img src=imagesSELECTED/frameSMC812.27.I.921.87.1363.33.7404.57412.gif height="320"> </a>
<a href="imagesSELECTED/subSMC812.27.I.921.87.1363.33.7404.57412.fts">
<img src=imagesSELECTED/subSMC812.27.I.921.87.1363.33.7404.57412.gif height="320"> </a>
<br>OGLE16ajk Ra,Dec=
1:41:24.05 -69:02:43.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=25.35021&lat=-69.04529&radius=0.5"> NED </a>
HJD_max= 7404.57412 2016-01-17.074 SMC812.27.921.87.1363.33
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457404.57412
Disc_Imag= 20.09
not classified
Offset= 0.318507
Phot.class= -
<br><hr>
<br><a name="OGLE16ahz"> </a>
<a href="imagesSELECTED/OGLE16ahz.dat">
<img src=imagesSELECTED/plotLMC607.28.I.557.60.2607.13.png height=320>
</a>
<a href="imagesSELECTED/chartLMC607.28.I.557.60.2607.13.fts">
<img src=imagesSELECTED/chartLMC607.28.I.557.60.2607.13.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC607.28.I.557.60.2607.13.7410.75820.fts">
<img src=imagesSELECTED/frameLMC607.28.I.557.60.2607.13.7410.75820.gif height="320"> </a>
<a href="imagesSELECTED/subLMC607.28.I.557.60.2607.13.7410.75820.fts">
<img src=imagesSELECTED/subLMC607.28.I.557.60.2607.13.7410.75820.gif height="320"> </a>
<br>OGLE16ahz Ra,Dec=
6:15:07.11 -64:30:04.7
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=93.77962&lat=-64.50131&radius=0.5"> NED </a>
HJD_max= 7410.75820 2016-01-23.258 LMC607.28.557.60.2607.13
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457402.80368
Disc_Imag= 19.62
not classified
Offset= 1.5108
Phot.class= -
<br><hr>
<br><a name="OGLE16ahk"> </a>
<a href="imagesSELECTED/OGLE16ahk.dat">
<img src=imagesSELECTED/plotLMC520.11.I.938.84.2925.98.png height=320>
</a>
<a href="imagesSELECTED/chartLMC520.11.I.938.84.2925.98.fts">
<img src=imagesSELECTED/chartLMC520.11.I.938.84.2925.98.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC520.11.I.938.84.2925.98.7415.67833.fts">
<img src=imagesSELECTED/frameLMC520.11.I.938.84.2925.98.7415.67833.gif height="320"> </a>
<a href="imagesSELECTED/subLMC520.11.I.938.84.2925.98.7415.67833.fts">
<img src=imagesSELECTED/subLMC520.11.I.938.84.2925.98.7415.67833.gif height="320"> </a>
<br>OGLE16ahk Ra,Dec=
5:31:57.25 -65:06:07.9
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=82.98855&lat=-65.10221&radius=0.5"> NED </a>
HJD_max= 7415.67833 2016-01-28.178 LMC520.11.938.84.2925.98
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457402.74487
Disc_Imag= 20.53
not classified
Offset= 7.4299
Phot.class= -
<br><hr>
<br><a name="OGLE16afl"> </a>
<a href="imagesSELECTED/OGLE16afl.dat">
<img src=imagesSELECTED/plotMBR125.06.I.642.47.3488.29.png height=320>
</a>
<a href="imagesSELECTED/chartMBR125.06.I.642.47.3488.29.fts">
<img src=imagesSELECTED/chartMBR125.06.I.642.47.3488.29.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR125.06.I.642.47.3488.29.7405.60209.fts">
<img src=imagesSELECTED/frameMBR125.06.I.642.47.3488.29.7405.60209.gif height="320"> </a>
<a href="imagesSELECTED/subMBR125.06.I.642.47.3488.29.7405.60209.fts">
<img src=imagesSELECTED/subMBR125.06.I.642.47.3488.29.7405.60209.gif height="320"> </a>
<br>OGLE16afl Ra,Dec=
2:58:36.85 -76:35:56.5
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=44.65355&lat=-76.59902&radius=0.5"> NED </a>
HJD_max= 7405.60209 2016-01-18.102 MBR125.06.642.47.3488.29
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457401.59495
Disc_Imag= 20.03
not classified
Offset= 4.55995
Phot.class= -
<br><hr>
<br><a name="OGLE16agc"> </a>
<a href="imagesSELECTED/OGLE16agc.dat">
<img src=imagesSELECTED/plotLMC558.27.I.1624.31.2134.90.png height=320>
</a>
<a href="imagesSELECTED/chartLMC558.27.I.1624.31.2134.90.fts">
<img src=imagesSELECTED/chartLMC558.27.I.1624.31.2134.90.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC558.27.I.1624.31.2134.90.7401.75930.fts">
<img src=imagesSELECTED/frameLMC558.27.I.1624.31.2134.90.7401.75930.gif height="320"> </a>
<a href="imagesSELECTED/subLMC558.27.I.1624.31.2134.90.7401.75930.fts">
<img src=imagesSELECTED/subLMC558.27.I.1624.31.2134.90.7401.75930.gif height="320"> </a>
<br>OGLE16agc Ra,Dec=
6:08:03.49 -71:54:49.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=92.01453&lat=-71.91364&radius=0.5"> NED </a>
HJD_max= 7401.75930 2016-01-14.259 LMC558.27.1624.31.2134.90
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457401.75930
Disc_Imag= 20.27
not classified
Offset= 0.521766
Phot.class= -
<br><hr>
<br><a name="OGLE16afb"> </a>
<a href="imagesSELECTED/OGLE16afb.dat">
<img src=imagesSELECTED/plotMBR132.11.I.431.17.2430.12.png height=320>
</a>
<a href="imagesSELECTED/chartMBR132.11.I.431.17.2430.12.fts">
<img src=imagesSELECTED/chartMBR132.11.I.431.17.2430.12.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR132.11.I.431.17.2430.12.7408.61062.fts">
<img src=imagesSELECTED/frameMBR132.11.I.431.17.2430.12.7408.61062.gif height="320"> </a>
<a href="imagesSELECTED/subMBR132.11.I.431.17.2430.12.7408.61062.fts">
<img src=imagesSELECTED/subMBR132.11.I.431.17.2430.12.7408.61062.gif height="320"> </a>
<br>OGLE16afb Ra,Dec=
3:24:47.85 -72:39:42.0
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=51.19939&lat=-72.66167&radius=0.5"> NED </a>
HJD_max= 7408.61062 2016-01-21.111 MBR132.11.431.17.2430.12
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457399.62089
Disc_Imag= 19.95
not classified
Offset= 1.97683
Phot.class= -
<br><hr>
<br><a name="OGLE16aak"> </a>
<a href="imagesSELECTED/OGLE16aak.dat">
<img src=imagesSELECTED/plotMBR199.12.I.43.png height=320>
</a>
<a href="imagesSELECTED/chartMBR199.12.I.43.fts">
<img src=imagesSELECTED/chartMBR199.12.I.43.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR199.12.I.43.7429.58321.fts">
<img src=imagesSELECTED/frameMBR199.12.I.43.7429.58321.gif height="320"> </a>
<a href="imagesSELECTED/subMBR199.12.I.43.7429.58321.fts">
<img src=imagesSELECTED/subMBR199.12.I.43.7429.58321.gif height="320"> </a>
<br>OGLE16aak Ra,Dec=
2:49:16.50 -65:13:56.5
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=42.31874&lat=-65.23237&radius=0.5"> NED </a>
HJD_max= 7429.58321 2016-02-11.083 MBR199.12.43N <a href="imagesSELECTED/colorOGLE16aak.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457387.67346
Disc_Imag= 19.43
not classified
Offset= 0.400736
Phot.class= -
<br><hr>
<br><a name="OGLE16aaj"> </a>
<a href="imagesSELECTED/OGLE16aaj.dat">
<img src=imagesSELECTED/plotMBR142.04.I.273.png height=320>
</a>
<a href="imagesSELECTED/chartMBR142.04.I.273.fts">
<img src=imagesSELECTED/chartMBR142.04.I.273.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR142.04.I.273.7385.62371.fts">
<img src=imagesSELECTED/frameMBR142.04.I.273.7385.62371.gif height="320"> </a>
<a href="imagesSELECTED/subMBR142.04.I.273.7385.62371.fts">
<img src=imagesSELECTED/subMBR142.04.I.273.7385.62371.gif height="320"> </a>
<br>OGLE16aaj Ra,Dec=
3:52:21.19 -72:56:31.6
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=58.08829&lat=-72.94212&radius=0.5"> NED </a>
HJD_max= 7385.62371 2015-12-29.124 MBR142.04.273N <a href="imagesSELECTED/colorOGLE16aaj.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457385.62371
Disc_Imag= 18.91
not classified
Offset= 1.65138
Phot.class= -
<br><hr>
<br><a name="OGLE16aai"> </a>
<a href="imagesSELECTED/OGLE16aai.dat">
<img src=imagesSELECTED/plotSMC716.04.I.235.png height=320>
</a>
<a href="imagesSELECTED/chartSMC716.04.I.235.fts">
<img src=imagesSELECTED/chartSMC716.04.I.235.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC716.04.I.235.7374.58545.fts">
<img src=imagesSELECTED/frameSMC716.04.I.235.7374.58545.gif height="320"> </a>
<a href="imagesSELECTED/subSMC716.04.I.235.7374.58545.fts">
<img src=imagesSELECTED/subSMC716.04.I.235.7374.58545.gif height="320"> </a>
<br>OGLE16aai Ra,Dec=
0:55:35.63 -69:11:45.9
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=13.89847&lat=-69.19609&radius=0.5"> NED </a>
HJD_max= 7374.58545 2015-12-18.085 SMC716.04.235N <a href="imagesSELECTED/colorOGLE16aai.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457390.54086
Disc_Imag= 20.14
not classified
Offset= hostless
Phot.class= -
<br><hr>
<br><a name="OGLE16aah"> </a>
<a href="imagesSELECTED/OGLE16aah.dat">
<img src=imagesSELECTED/plotSMC809.22.I.1927.png height=320>
</a>
<a href="imagesSELECTED/chartSMC809.22.I.1927.fts">
<img src=imagesSELECTED/chartSMC809.22.I.1927.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC809.22.I.1927.7377.58712.fts">
<img src=imagesSELECTED/frameSMC809.22.I.1927.7377.58712.gif height="320"> </a>
<a href="imagesSELECTED/subSMC809.22.I.1927.7377.58712.fts">
<img src=imagesSELECTED/subSMC809.22.I.1927.7377.58712.gif height="320"> </a>
<br>OGLE16aah Ra,Dec=
1:18:57.11 -66:10:18.8
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=19.73796&lat=-66.17189&radius=0.5"> NED </a>
HJD_max= 7377.58712 2015-12-21.087 SMC809.22.1927N <a href="imagesSELECTED/colorOGLE16aah.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457389.56459
Disc_Imag= 21.16
not classified
Offset= 1.9095
Phot.class= -
<br><hr>
<br><a name="OGLE16aad"> </a>
<a href="imagesSELECTED/OGLE16aad.dat">
<img src=imagesSELECTED/plotSMC789.27.I.1861.64.3428.38.png height=320>
</a>
<a href="imagesSELECTED/chartSMC789.27.I.1861.64.3428.38.fts">
<img src=imagesSELECTED/chartSMC789.27.I.1861.64.3428.38.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC789.27.I.1861.64.3428.38.7390.57910.fts">
<img src=imagesSELECTED/frameSMC789.27.I.1861.64.3428.38.7390.57910.gif height="320"> </a>
<a href="imagesSELECTED/subSMC789.27.I.1861.64.3428.38.7390.57910.fts">
<img src=imagesSELECTED/subSMC789.27.I.1861.64.3428.38.7390.57910.gif height="320"> </a>
<br>OGLE16aad Ra,Dec=
0:25:44.25 -62:43:06.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=6.43437&lat=-62.71837&radius=0.5"> NED </a>
HJD_max= 7390.57910 2016-01-03.079 SMC789.27.1861.64.3428.38
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457390.57910
Disc_Imag= 19.44
not classified
Offset= 0.300619
Phot.class= -
<br><hr>
<br><a name="OGLE16aac"> </a>
<a href="imagesSELECTED/OGLE16aac.dat">
<img src=imagesSELECTED/plotLMC593.15.I.1145.27.3989.58.png height=320>
</a>
<a href="imagesSELECTED/chartLMC593.15.I.1145.27.3989.58.fts">
<img src=imagesSELECTED/chartLMC593.15.I.1145.27.3989.58.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC593.15.I.1145.27.3989.58.7397.75959.fts">
<img src=imagesSELECTED/frameLMC593.15.I.1145.27.3989.58.7397.75959.gif height="320"> </a>
<a href="imagesSELECTED/subLMC593.15.I.1145.27.3989.58.7397.75959.fts">
<img src=imagesSELECTED/subLMC593.15.I.1145.27.3989.58.7397.75959.gif height="320"> </a>
<br>OGLE16aac Ra,Dec=
5:25:24.20 -62:33:35.0
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=81.35082&lat=-62.55974&radius=0.5"> NED </a>
HJD_max= 7397.75959 2016-01-10.260 LMC593.15.1145.27.3989.58
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457388.77872
Disc_Imag= 19.46
not classified
Offset= 2.45086
Phot.class= -
<br><hr>
<br><a name="OGLE16aab"> </a>
<a href="imagesSELECTED/OGLE16aab.dat">
<img src=imagesSELECTED/plotMBR102.30.I.629.10.1335.01.png height=320>
</a>
<a href="imagesSELECTED/chartMBR102.30.I.629.10.1335.01.fts">
<img src=imagesSELECTED/chartMBR102.30.I.629.10.1335.01.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR102.30.I.629.10.1335.01.7389.59105.fts">
<img src=imagesSELECTED/frameMBR102.30.I.629.10.1335.01.7389.59105.gif height="320"> </a>
<a href="imagesSELECTED/subMBR102.30.I.629.10.1335.01.7389.59105.fts">
<img src=imagesSELECTED/subMBR102.30.I.629.10.1335.01.7389.59105.gif height="320"> </a>
<br>OGLE16aab Ra,Dec=
1:48:31.43 -72:06:35.9
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=27.13097&lat=-72.10996&radius=0.5"> NED </a>
HJD_max= 7389.59105 2016-01-02.091 MBR102.30.629.10.1335.01
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457389.59105
Disc_Imag= 19.46
not classified
Offset= 5.25367
Phot.class= -
<br><hr>
<br><a name="OGLE16aaa"> </a>
<a href="imagesSELECTED/OGLE16aaa.dat">
<img src=imagesSELECTED/plotSMC806.21.I.1075.09.3313.48.png height=320>
</a>
<a href="imagesSELECTED/chartSMC806.21.I.1075.09.3313.48.fts">
<img src=imagesSELECTED/chartSMC806.21.I.1075.09.3313.48.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC806.21.I.1075.09.3313.48.7407.53784.fts">
<img src=imagesSELECTED/frameSMC806.21.I.1075.09.3313.48.7407.53784.gif height="320"> </a>
<a href="imagesSELECTED/subSMC806.21.I.1075.09.3313.48.7407.53784.fts">
<img src=imagesSELECTED/subSMC806.21.I.1075.09.3313.48.7407.53784.gif height="320"> </a>
<br>OGLE16aaa Ra,Dec=
1:07:20.88 -64:16:20.7
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=16.83699&lat=-64.27241&radius=0.5"> NED </a>
HJD_max= 7407.53784 2016-01-20.038 SMC806.21.1075.09.3313.48
<a href='http://www.astronomerstelegram.org/?read=8577'>ATel#8577 </a>
Disc_HJD= 2457389.55822
Disc_Imag= 20.03
<a href='http://www.astronomerstelegram.org/?read=8577'> class= TDE 0.167 </a>
Offset= 0.482066
Phot.class= -
<br><hr>
<br><a name="OGLE15yb"> </a>
<a href="imagesSELECTED/OGLE15yb.dat">
<img src=imagesSELECTED/plotMBR200.07.I.650.77.2856.97.png height=320>
</a>
<a href="imagesSELECTED/chartMBR200.07.I.650.77.2856.97.fts">
<img src=imagesSELECTED/chartMBR200.07.I.650.77.2856.97.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR200.07.I.650.77.2856.97.7387.67562.fts">
<img src=imagesSELECTED/frameMBR200.07.I.650.77.2856.97.7387.67562.gif height="320"> </a>
<a href="imagesSELECTED/subMBR200.07.I.650.77.2856.97.7387.67562.fts">
<img src=imagesSELECTED/subMBR200.07.I.650.77.2856.97.7387.67562.gif height="320"> </a>
<br>OGLE15yb Ra,Dec=
2:46:01.16 -64:19:05.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=41.50482&lat=-64.31815&radius=0.5"> NED </a>
HJD_max= 7387.67562 2015-12-31.176 MBR200.07.650.77.2856.97
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457387.67562
Disc_Imag= 20.03
not classified
Offset= 0.888239
Phot.class= -
<br><hr>
<br><a name="OGLE15ya"> </a>
<a href="imagesSELECTED/OGLE15ya.dat">
<img src=imagesSELECTED/plotLMC557.12.I.1303.44.4144.24.png height=320>
</a>
<a href="imagesSELECTED/chartLMC557.12.I.1303.44.4144.24.fts">
<img src=imagesSELECTED/chartLMC557.12.I.1303.44.4144.24.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC557.12.I.1303.44.4144.24.7387.74959.fts">
<img src=imagesSELECTED/frameLMC557.12.I.1303.44.4144.24.7387.74959.gif height="320"> </a>
<a href="imagesSELECTED/subLMC557.12.I.1303.44.4144.24.7387.74959.fts">
<img src=imagesSELECTED/subLMC557.12.I.1303.44.4144.24.7387.74959.gif height="320"> </a>
<br>OGLE15ya Ra,Dec=
6:07:25.68 -73:37:24.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=91.85698&lat=-73.62344&radius=0.5"> NED </a>
HJD_max= 7387.74959 2015-12-31.250 LMC557.12.1303.44.4144.24
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457387.74959
Disc_Imag= 19.93
not classified
Offset= 1.4313
Phot.class= -
<br><hr>
<br><a name="OGLE15xz"> </a>
<a href="imagesSELECTED/OGLE15xz.dat">
<img src=imagesSELECTED/plotLMC569.23.I.1528.25.391.43.png height=320>
</a>
<a href="imagesSELECTED/chartLMC569.23.I.1528.25.391.43.fts">
<img src=imagesSELECTED/chartLMC569.23.I.1528.25.391.43.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC569.23.I.1528.25.391.43.7387.77558.fts">
<img src=imagesSELECTED/frameLMC569.23.I.1528.25.391.43.7387.77558.gif height="320"> </a>
<a href="imagesSELECTED/subLMC569.23.I.1528.25.391.43.7387.77558.fts">
<img src=imagesSELECTED/subLMC569.23.I.1528.25.391.43.7387.77558.gif height="320"> </a>
<br>OGLE15xz Ra,Dec=
6:04:36.82 -68:03:35.3
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=91.15343&lat=-68.05980&radius=0.5"> NED </a>
HJD_max= 7387.77558 2015-12-31.276 LMC569.23.1528.25.391.43
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457387.77558
Disc_Imag= 19.34
not classified
Offset= 1.75385
Phot.class= -
<br><hr>
<br><a name="OGLE15xy"> </a>
<a href="imagesSELECTED/OGLE15xy.dat">
<img src=imagesSELECTED/plotMBR143.24.I.1683.18.3048.81.png height=320>
</a>
<a href="imagesSELECTED/chartMBR143.24.I.1683.18.3048.81.fts">
<img src=imagesSELECTED/chartMBR143.24.I.1683.18.3048.81.gif height="320"> </a>
<a href="imagesSELECTED/frameMBR143.24.I.1683.18.3048.81.7385.62573.fts">
<img src=imagesSELECTED/frameMBR143.24.I.1683.18.3048.81.7385.62573.gif height="320"> </a>
<a href="imagesSELECTED/subMBR143.24.I.1683.18.3048.81.7385.62573.fts">
<img src=imagesSELECTED/subMBR143.24.I.1683.18.3048.81.7385.62573.gif height="320"> </a>
<br>OGLE15xy Ra,Dec=
3:48:24.26 -73:32:47.4
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=57.10108&lat=-73.54650&radius=0.5"> NED </a>
HJD_max= 7385.62573 2015-12-29.126 MBR143.24.1683.18.3048.81
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457385.62573
Disc_Imag= 19.51
not classified
Offset= 4.26443
Phot.class= -
<br><hr>
<br><a name="OGLE15xx"> </a>
<a href="imagesSELECTED/OGLE15xx.dat">
<img src=imagesSELECTED/plotLMC519.09.I.888.78.2674.92.png height=320>
</a>
<a href="imagesSELECTED/chartLMC519.09.I.888.78.2674.92.fts">
<img src=imagesSELECTED/chartLMC519.09.I.888.78.2674.92.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC519.09.I.888.78.2674.92.7410.73219.fts">
<img src=imagesSELECTED/frameLMC519.09.I.888.78.2674.92.7410.73219.gif height="320"> </a>
<a href="imagesSELECTED/subLMC519.09.I.888.78.2674.92.7410.73219.fts">
<img src=imagesSELECTED/subLMC519.09.I.888.78.2674.92.7410.73219.gif height="320"> </a>
<br>OGLE15xx Ra,Dec=
5:35:40.35 -66:20:48.5
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=83.91812&lat=-66.34681&radius=0.5"> NED </a>
HJD_max= 7410.73219 2016-01-23.232 LMC519.09.888.78.2674.92
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457385.74174
Disc_Imag= 19.50
not classified
Offset= 5.51638
Phot.class= -
<br><hr>
<br><a name="OGLE15xw"> </a>
<a href="imagesSELECTED/OGLE15xw.dat">
<img src=imagesSELECTED/plotSMC767.24.I.295.png height=320>
</a>
<a href="imagesSELECTED/chartSMC767.24.I.295.fts">
<img src=imagesSELECTED/chartSMC767.24.I.295.gif height="320"> </a>
<a href="imagesSELECTED/frameSMC767.24.I.295.7322.62295.fts">
<img src=imagesSELECTED/frameSMC767.24.I.295.7322.62295.gif height="320"> </a>
<a href="imagesSELECTED/subSMC767.24.I.295.7322.62295.fts">
<img src=imagesSELECTED/subSMC767.24.I.295.7322.62295.gif height="320"> </a>
<br>OGLE15xw Ra,Dec=
23:44:31.11 -65:06:02.1
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=356.12963&lat=-65.10058&radius=0.5"> NED </a>
HJD_max= 7322.62295 2015-10-27.123 SMC767.24.295N <a href="imagesSELECTED/colorOGLE15xw.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457380.55230
Disc_Imag= 20.95
not classified
Offset= 5.30533
Phot.class= -
<br><hr>
<br><a name="OGLE15xv"> </a>
<a href="imagesSELECTED/OGLE15xv.dat">
<img src=imagesSELECTED/plotLMC513.31.I.4241.png height=320>
</a>
<a href="imagesSELECTED/chartLMC513.31.I.4241.fts">
<img src=imagesSELECTED/chartLMC513.31.I.4241.gif height="320"> </a>
<a href="imagesSELECTED/frameLMC513.31.I.4241.7367.80856.fts">
<img src=imagesSELECTED/frameLMC513.31.I.4241.7367.80856.gif height="320"> </a>
<a href="imagesSELECTED/subLMC513.31.I.4241.7367.80856.fts">
<img src=imagesSELECTED/subLMC513.31.I.4241.7367.80856.gif height="320"> </a>
<br>OGLE15xv Ra,Dec=
5:04:30.31 -64:29:20.0
<a alt="NED search" href="http://ned.ipac.caltech.edu/cgi-bin/objsearch?search_type=Near+Position+Search&in_csys=Equatorial&in_equinox=J2000.0&lon=76.12631&lat=-64.48888&radius=0.5"> NED </a>
HJD_max= 7367.80856 2015-12-11.309 LMC513.31.4241N <a href="imagesSELECTED/colorOGLE15xv.png">color template </a>
<a href='http://www.astronomerstelegram.org/?read=8484'>ATel#8484 </a>
Disc_HJD= 2457378.80462
Disc_Imag= 19.94
not classified
Offset= 5.43204
Phot.class= -
<br><hr>
<br><a name="OGLE15xu"> </a>