Index: trunk/doc/release.2015/Makefile.Common
===================================================================
--- trunk/doc/release.2015/Makefile.Common	(revision 39865)
+++ trunk/doc/release.2015/Makefile.Common	(revision 39866)
@@ -3,4 +3,5 @@
 PDFLATEX = env TEXINPUTS=.:..:inputs:../inputs:LaTeX:$(TEXINPUTS): pdflatex
 PSLATEX  = env TEXINPUTS=.:..:inputs:../inputs:LaTeX:$(TEXINPUTS): latex
+BIBTEX   = env BIBINPUTS=.:..:inputs:../inputs BSTINPUTS=.:..:inputs:../inputs bibtex
 
 PS2PDF_OPTS = "-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode"
@@ -8,4 +9,5 @@
 %.pdf: %.tex
 	$(PSLATEX) $*.tex 
+	$(BIBTEX) $*
 	$(PSLATEX) $*.tex 
 #	thumbpdf --modes=dvips $*.pdf
Index: trunk/doc/release.2015/inputs/apj.bst
===================================================================
--- trunk/doc/release.2015/inputs/apj.bst	(revision 39866)
+++ trunk/doc/release.2015/inputs/apj.bst	(revision 39866)
@@ -0,0 +1,1618 @@
+
+%% 1998/08/12  J Baker
+%% Tweaked by hand to get correct results for ApJ.  Added functions from
+%% astrobib.
+
+%% $Log: apj.bst,v $
+%% Revision 1.1  2016/12/14 03:18:02  watersc1
+%% Fuck bibtex
+%%
+%% Revision 1.3  2000/04/20 22:17:50  jbaker
+%% Fixed INBOOK bug, now works essentially like BOOK.
+%%
+%% Revision 1.2  1998/08/30 22:35:45  jbaker
+%% Added RCS keywords.
+%%
+
+%%
+%% This is file `apj.bst',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% merlin.mbs  (with options: `,ay,nat,nm-rev,nmdash,dt-beg,yr-per,note-yr,atit-u,jtit-x,jttl-rm,thtit-a,vnum-x,volp-com,jpg-1,pp-last,btit-rm,add-pub,pub-par,pre-edn,edby,edbyx,blk-com,fin-bare,ppx,ed,abr,ord,jabr,amper,em-x')
+%% ----------------------------------------
+%% *** Bibliographic Style for ApJ ***
+%% 
+ %-------------------------------------------------------------------
+ % The original source file contains the following version information:
+ % \ProvidesFile{merlin.mbs}[1998/02/25 3.85a (PWD)]
+ %
+ % NOTICE:
+ % This file may be used for non-profit purposes.
+ % It may not be distributed in exchange for money,
+ %   other than distribution costs.
+ %
+ % The author provides it `as is' and does not guarantee it in any way.
+ %
+ % Copyright (C) 1994-98 Patrick W. Daly
+ %-------------------------------------------------------------------
+ %   For use with BibTeX version 0.99a or later
+ %-------------------------------------------------------------------
+ % This bibliography style file is intended for texts in ENGLISH
+ % This is an author-year citation style bibliography. As such, it is
+ % non-standard LaTeX, and requires a special package file to function properly.
+ % Such a package is    natbib.sty   by Patrick W. Daly
+ % The form of the \bibitem entries is
+ %   \bibitem[Jones et al.(1990)]{key}...
+ %   \bibitem[Jones et al.(1990)Jones, Baker, and Smith]{key}...
+ % The essential feature is that the label (the part in brackets) consists
+ % of the author names, as they should appear in the citation, with the year
+ % in parentheses following. There must be no space before the opening
+ % parenthesis!
+ % With natbib v5.3, a full list of authors may also follow the year.
+ % In natbib.sty, it is possible to define the type of enclosures that is
+ % really wanted (brackets or parentheses), but in either case, there must
+ % be parentheses in the label.
+ % The \cite command functions as follows:
+ %   \citet{key} ==>>                Jones et al. (1990)
+ %   \citet*{key} ==>>               Jones, Baker, and Smith (1990)
+ %   \citep{key} ==>>                (Jones et al., 1990)
+ %   \citep*{key} ==>>               (Jones, Baker, and Smith, 1990)
+ %   \citep[chap. 2]{key} ==>>       (Jones et al., 1990, chap. 2)
+ %   \citep[e.g.][]{key} ==>>        (e.g. Jones et al., 1990)
+ %   \citep[e.g.][p. 32]{key} ==>>   (e.g. Jones et al., p. 32)
+ %   \citeauthor{key} ==>>           Jones et al.
+ %   \citeauthor*{key} ==>>          Jones, Baker, and Smith
+ %   \citeyear{key} ==>>             1990
+ %---------------------------------------------------------------------
+
+ENTRY
+  { address
+    author
+    booktitle
+    chapter
+    edition
+    editor
+    howpublished
+    institution
+    journal
+    key
+    month
+    note
+    number
+    organization
+    pages
+    publisher
+    school
+    series
+    title
+    type
+    volume
+    year
+  }
+  {}
+  { label extra.label sort.label short.list }
+
+INTEGERS { output.state before.all mid.sentence after.sentence after.block }
+
+FUNCTION {init.state.consts}
+{ #0 'before.all :=
+  #1 'mid.sentence :=
+  #2 'after.sentence :=
+  #3 'after.block :=
+}
+
+STRINGS { s t }
+
+FUNCTION {output.nonnull}
+{ 's :=
+  output.state mid.sentence =
+    { ", " * write$ }
+    { output.state after.block =
+        { add.period$ write$
+          newline$
+          "\newblock " write$
+        }
+        { output.state before.all =
+            'write$
+            { add.period$ " " * write$ }
+          if$
+        }
+      if$
+      mid.sentence 'output.state :=
+    }
+  if$
+  s
+}
+
+FUNCTION {output}
+{ duplicate$ empty$
+    'pop$
+    'output.nonnull
+  if$
+}
+
+FUNCTION {output.check}
+{ 't :=
+  duplicate$ empty$
+    { pop$ "empty " t * " in " * cite$ * warning$ }
+    'output.nonnull
+  if$
+}
+
+FUNCTION {fin.entry}
+{ duplicate$ empty$
+    'pop$
+    'write$
+  if$
+  newline$
+}
+
+FUNCTION {new.block}
+{ output.state before.all =
+    'skip$
+    { after.block 'output.state := }
+  if$
+}
+
+FUNCTION {new.sentence}
+{ output.state after.block =
+    'skip$
+    { output.state before.all =
+        'skip$
+        { after.sentence 'output.state := }
+      if$
+    }
+  if$
+}
+
+FUNCTION {add.blank}
+{  " " * before.all 'output.state :=
+}
+
+FUNCTION {date.block}
+{
+  skip$
+}
+
+FUNCTION {not}
+{   { #0 }
+    { #1 }
+  if$
+}
+
+FUNCTION {and}
+{   'skip$
+    { pop$ #0 }
+  if$
+}
+
+FUNCTION {or}
+{   { pop$ #1 }
+    'skip$
+  if$
+}
+
+FUNCTION {new.block.checkb}
+{ empty$
+  swap$ empty$
+  and
+    'skip$
+    'new.block
+  if$
+}
+
+FUNCTION {field.or.null}
+{ duplicate$ empty$
+    { pop$ "" }
+    'skip$
+  if$
+}
+
+FUNCTION {emphasize}
+{ skip$ }
+
+FUNCTION {capitalize}
+{ "u" change.case$ "t" change.case$ }
+
+FUNCTION {space.word}
+{ " " swap$ * " " * }
+
+ % Here are the language-specific definitions for explicit words.
+ % Each function has a name bbl.xxx where xxx is the English word.
+ % The language selected here is ENGLISH
+FUNCTION {bbl.and}
+{ "and"}
+
+FUNCTION {bbl.editors}
+{ "eds." }
+
+FUNCTION {bbl.editor}
+{ "ed." }
+
+FUNCTION {bbl.edby}
+{ "edited by" }
+
+FUNCTION {bbl.edition}
+{ "edn." }
+
+FUNCTION {bbl.volume}
+{ "Vol." }
+
+FUNCTION {bbl.of}
+{ "of" }
+
+FUNCTION {bbl.number}
+{ "no." }
+
+FUNCTION {bbl.nr}
+{ "no." }
+
+FUNCTION {bbl.in}
+{ "in" }
+
+FUNCTION {bbl.pages}
+{ "" }
+
+FUNCTION {bbl.page}
+{ "" }
+
+FUNCTION {bbl.chapter}
+{ "Ch." }
+%{ "chap." }
+
+FUNCTION {bbl.techrep}
+{ "Tech. Rep." }
+
+FUNCTION {bbl.mthesis}
+{ "Master's thesis" }
+
+FUNCTION {bbl.phdthesis}
+{ "PhD thesis" }
+
+FUNCTION {bbl.first}
+{ "1st" }
+
+FUNCTION {bbl.second}
+{ "2nd" }
+
+FUNCTION {bbl.third}
+{ "3rd" }
+
+FUNCTION {bbl.fourth}
+{ "4th" }
+
+FUNCTION {bbl.fifth}
+{ "5th" }
+
+FUNCTION {bbl.st}
+{ "st" }
+
+FUNCTION {bbl.nd}
+{ "nd" }
+
+FUNCTION {bbl.rd}
+{ "rd" }
+
+FUNCTION {bbl.th}
+{ "th" }
+
+MACRO {jan} {"Jan."}
+
+MACRO {feb} {"Feb."}
+
+MACRO {mar} {"Mar."}
+
+MACRO {apr} {"Apr."}
+
+MACRO {may} {"May"}
+
+MACRO {jun} {"Jun."}
+
+MACRO {jul} {"Jul."}
+
+MACRO {aug} {"Aug."}
+
+MACRO {sep} {"Sep."}
+
+MACRO {oct} {"Oct."}
+
+MACRO {nov} {"Nov."}
+
+MACRO {dec} {"Dec."}
+
+FUNCTION {eng.ord}
+{ duplicate$ "1" swap$ *
+  #-2 #1 substring$ "1" =
+     { bbl.th * }
+     { duplicate$ #-1 #1 substring$
+       duplicate$ "1" =
+         { pop$ bbl.st * }
+         { duplicate$ "2" =
+             { pop$ bbl.nd * }
+             { "3" =
+                 { bbl.rd * }
+                 { bbl.th * }
+               if$
+             }
+           if$
+          }
+       if$
+     }
+   if$
+}
+
+MACRO {acmcs} {"ACM Comput. Surv."}
+
+MACRO {acta} {"Acta Inf."}
+
+MACRO {cacm} {"Commun. ACM"}
+
+MACRO {ibmjrd} {"IBM J. Res. Dev."}
+
+MACRO {ibmsj} {"IBM Syst.~J."}
+
+MACRO {ieeese} {"IEEE Trans. Softw. Eng."}
+
+MACRO {ieeetc} {"IEEE Trans. Comput."}
+
+MACRO {ieeetcad}
+ {"IEEE Trans. Comput.-Aided Design Integrated Circuits"}
+
+MACRO {ipl} {"Inf. Process. Lett."}
+
+MACRO {jacm} {"J.~ACM"}
+
+MACRO {jcss} {"J.~Comput. Syst. Sci."}
+
+MACRO {scp} {"Sci. Comput. Programming"}
+
+MACRO {sicomp} {"SIAM J. Comput."}
+
+MACRO {tocs} {"ACM Trans. Comput. Syst."}
+
+MACRO {tods} {"ACM Trans. Database Syst."}
+
+MACRO {tog} {"ACM Trans. Gr."}
+
+MACRO {toms} {"ACM Trans. Math. Softw."}
+
+MACRO {toois} {"ACM Trans. Office Inf. Syst."}
+
+MACRO {toplas} {"ACM Trans. Prog. Lang. Syst."}
+
+MACRO {tcs} {"Theoretical Comput. Sci."}
+
+INTEGERS { nameptr namesleft numnames }
+
+FUNCTION {format.names}
+{ 's :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{vv~}{ll}{, jj}{, f.}" format.name$
+    't :=
+      nameptr #1 >
+        {
+          namesleft #1 >
+            { ", " * t * }
+            {
+              numnames #2 >
+                { "," * }
+                'skip$
+              if$
+              s nameptr "{ll}" format.name$ duplicate$ "others" =
+                { 't := }
+                { pop$ }
+              if$
+              t "others" =
+                {
+                  " {et~al.}" *
+                }
+                { " \& " * t * }
+              if$
+            }
+          if$
+        }
+        't
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {format.names.ed}
+{ 's :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{f.~}{vv~}{ll}{, jj}"
+      format.name$
+      't :=
+      nameptr #1 >
+        {
+          namesleft #1 >
+            { ", " * t * }
+            {
+              numnames #2 >
+                { "," * }
+                'skip$
+              if$
+              s nameptr "{ll}" format.name$ duplicate$ "others" =
+                { 't := }
+                { pop$ }
+              if$
+              t "others" =
+                {
+                  " {et~al.}" *
+                }
+                { " \& " * t * }
+              if$
+            }
+          if$
+        }
+        't
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {format.key}
+{ empty$
+    { key field.or.null }
+    { "" }
+  if$
+}
+
+FUNCTION {format.authors}
+{ author empty$
+    { "" }
+    { author format.names }
+  if$
+}
+
+FUNCTION {format.editors}
+{ editor empty$
+    { "" }
+    { editor format.names
+      editor num.names$ #1 >
+        { ", " * bbl.editors * }
+        { ", " * bbl.editor * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.in.editors}
+{ editor empty$
+    { "" }
+    { editor format.names.ed
+    }
+  if$
+}
+
+FUNCTION {format.note}
+{ note empty$
+    { "" }
+    { note #1 #1 substring$
+      duplicate$ "{" =
+        'skip$
+        { output.state mid.sentence =
+          { "l" }
+          { "u" }
+        if$
+        change.case$
+        }
+      if$
+      note #2 global.max$ substring$ *
+    }
+  if$
+}
+
+FUNCTION {format.title}
+{ title empty$
+    { "" }
+    { title
+    }
+  if$
+}
+
+FUNCTION {format.full.names}
+{'s :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{vv~}{ll}" format.name$
+      't :=
+      nameptr #1 >
+        {
+          namesleft #1 >
+            { ", " * t * }
+            {
+              numnames #2 >
+                { "," * }
+                'skip$
+              if$
+              s nameptr "{ll}" format.name$ duplicate$ "others" =
+                { 't := }
+                { pop$ }
+              if$
+              t "others" =
+                {
+                  " {et~al.}" *
+                }
+                { " \& " * t * }
+              if$
+            }
+          if$
+        }
+        't
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {author.editor.key.full}
+{ author empty$
+    { editor empty$
+        { key empty$
+            { cite$ #1 #3 substring$ }
+            'key
+          if$
+        }
+        { editor format.full.names }
+      if$
+    }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {author.key.full}
+{ author empty$
+    { key empty$
+         { cite$ #1 #3 substring$ }
+          'key
+      if$
+    }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {editor.key.full}
+{ editor empty$
+    { key empty$
+         { cite$ #1 #3 substring$ }
+          'key
+      if$
+    }
+    { editor format.full.names }
+  if$
+}
+
+FUNCTION {make.full.names}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.key.full
+    { type$ "proceedings" =
+        'editor.key.full
+        'author.key.full
+      if$
+    }
+  if$
+}
+
+FUNCTION {output.bibitem}
+{ newline$
+  "\bibitem[{" write$
+  label write$
+  ")" make.full.names duplicate$ short.list =
+     { pop$ }
+     { * }
+   if$
+  "}]{" * write$
+  cite$ write$
+  "}" write$
+  newline$
+  ""
+  before.all 'output.state :=
+}
+
+FUNCTION {n.dashify}
+{
+  't :=
+  ""
+    { t empty$ not }
+    { t #1 #1 substring$ "-" =
+        { t #1 #2 substring$ "--" = not
+            { "--" *
+              t #2 global.max$ substring$ 't :=
+            }
+            {   { t #1 #1 substring$ "-" = }
+                { "-" *
+                  t #2 global.max$ substring$ 't :=
+                }
+              while$
+            }
+          if$
+        }
+        { t #1 #1 substring$ *
+          t #2 global.max$ substring$ 't :=
+        }
+      if$
+    }
+  while$
+}
+
+FUNCTION {word.in}
+{ bbl.in
+  " " * }
+
+FUNCTION {format.date}
+{ year duplicate$ empty$
+    { "empty year in " cite$ * "; set to ????" * warning$
+       pop$ "????" }
+    'skip$
+  if$
+  extra.label *
+  before.all 'output.state :=
+  after.sentence 'output.state :=
+}
+
+FUNCTION {format.btitle}
+{ title
+}
+
+FUNCTION {tie.or.space.connect}
+{ duplicate$ text.length$ #3 <
+    { "~" }
+    { " " }
+  if$
+  swap$ * *
+}
+
+FUNCTION {either.or.check}
+{ empty$
+    'pop$
+    { "can't use both " swap$ * " fields in " * cite$ * warning$ }
+  if$
+}
+
+FUNCTION {format.bvolume}
+{ volume empty$
+    { "" }
+    { bbl.volume volume tie.or.space.connect
+      series empty$
+        'skip$
+        { bbl.of space.word * series emphasize * }
+      if$
+      "volume and number" number either.or.check
+    }
+  if$
+}
+
+FUNCTION {format.number.series}
+{ volume empty$
+    { number empty$
+        { series field.or.null }
+        { output.state mid.sentence =
+            { bbl.number }
+            { bbl.number capitalize }
+          if$
+          number tie.or.space.connect
+          series empty$
+            { "there's a number but no series in " cite$ * warning$ }
+            { bbl.in space.word * series * }
+          if$
+        }
+      if$
+    }
+    { "" }
+  if$
+}
+
+FUNCTION {is.num}
+{ chr.to.int$
+  duplicate$ "0" chr.to.int$ < not
+  swap$ "9" chr.to.int$ > not and
+}
+
+FUNCTION {extract.num}
+{ duplicate$ 't :=
+  "" 's :=
+  { t empty$ not }
+  { t #1 #1 substring$
+    t #2 global.max$ substring$ 't :=
+    duplicate$ is.num
+      { s swap$ * 's := }
+      { pop$ "" 't := }
+    if$
+  }
+  while$
+  s empty$
+    'skip$
+    { pop$ s }
+  if$
+}
+
+FUNCTION {convert.edition}
+{ edition extract.num "l" change.case$ 's :=
+  s "first" = s "1" = or
+    { bbl.first 't := }
+    { s "second" = s "2" = or
+        { bbl.second 't := }
+        { s "third" = s "3" = or
+            { bbl.third 't := }
+            { s "fourth" = s "4" = or
+                { bbl.fourth 't := }
+                { s "fifth" = s "5" = or
+                    { bbl.fifth 't := }
+                    { s #1 #1 substring$ is.num
+                        { s eng.ord 't := }
+                        { edition 't := }
+                      if$
+                    }
+                  if$
+                }
+              if$
+            }
+          if$
+        }
+      if$
+    }
+  if$
+  t
+}
+
+FUNCTION {format.edition}
+{ edition empty$
+    { "" }
+    { output.state mid.sentence =
+        { convert.edition "l" change.case$ " " * bbl.edition * }
+        { convert.edition "t" change.case$ " " * bbl.edition * }
+      if$
+    }
+  if$
+}
+
+INTEGERS { multiresult }
+
+FUNCTION {multi.page.check}
+{ 't :=
+  #0 'multiresult :=
+    { multiresult not
+      t empty$ not
+      and
+    }
+    { t #1 #1 substring$
+      duplicate$ "-" =
+      swap$ duplicate$ "," =
+      swap$ "+" =
+      or or
+        { #1 'multiresult := }
+        { t #2 global.max$ substring$ 't := }
+      if$
+    }
+  while$
+  multiresult
+}
+
+FUNCTION {format.pages}
+{ pages empty$
+    { "" }
+    { pages multi.page.check
+%        { bbl.pages pages n.dashify tie.or.space.connect }
+%        { bbl.page pages tie.or.space.connect }
+        { pages n.dashify }
+        { pages }
+      if$
+    }
+  if$
+}
+
+FUNCTION {first.page}
+{ 't :=
+  ""
+    {  t empty$ not t #1 #1 substring$ "-" = not and }
+    { t #1 #1 substring$ *
+      t #2 global.max$ substring$ 't :=
+    }
+  while$
+}
+
+FUNCTION {format.journal.pages}
+{ pages empty$
+    'skip$
+    { duplicate$ empty$
+        { pop$ format.pages }
+        {
+          ", " *
+          pages first.page *
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.vol.num.pages}
+{ volume field.or.null
+}
+
+FUNCTION {format.chapter.pages}
+{ chapter empty$
+    { "" }
+    { type empty$
+        { bbl.chapter }
+        { type "l" change.case$ }
+      if$
+      chapter tie.or.space.connect
+    }
+  if$
+}
+
+FUNCTION {format.in.ed.booktitle}
+{ booktitle empty$
+    { "" }
+    { editor empty$
+        { word.in booktitle emphasize * }
+        { word.in booktitle emphasize *
+          ", " *
+          editor num.names$ #1 >
+            { bbl.editors }
+            { bbl.editor }
+          if$
+          * " " *
+          format.in.editors *
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.thesis.type}
+{ type empty$
+    'skip$
+    { pop$
+      type "t" change.case$
+    }
+  if$
+}
+
+FUNCTION {format.tr.number}
+{ type empty$
+    { bbl.techrep }
+    'type
+  if$
+  number empty$
+    { "t" change.case$ }
+    { number tie.or.space.connect }
+  if$
+}
+
+FUNCTION {format.article.crossref}
+{
+  word.in
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.book.crossref}
+{ volume empty$
+    { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
+      word.in
+    }
+    { bbl.volume volume tie.or.space.connect
+      bbl.of space.word *
+    }
+  if$
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.incoll.inproc.crossref}
+{
+  word.in
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.publisher}
+{ publisher empty$
+    { "empty publisher in " cite$ * warning$ }
+    'skip$
+  if$
+  ""
+  address empty$ publisher empty$ and
+    'skip$
+    {
+      add.blank "(" *
+      address empty$
+        'skip$
+        { address * }
+      if$
+      publisher empty$
+        'skip$
+        { address empty$
+            'skip$
+            { ": " * }
+          if$
+          publisher *
+        }
+      if$
+      ")" *
+    }
+  if$
+  output
+}
+
+STRINGS {oldname}
+
+FUNCTION {name.or.dash}
+{ 's :=
+   oldname empty$
+     { s 'oldname := s }
+     { s oldname =
+         { "---" }
+         { s 'oldname := s }
+       if$
+     }
+   if$
+}
+
+%%%%%%%%  Functions added from astrobib
+
+FUNCTION {format.edn.btitle} % Title should be on stack.
+{ duplicate$ empty$ edition empty$ or
+    'skip$
+    { ", " * format.edition * }
+  if$
+}
+
+FUNCTION {format.ed.booktitle} % The title should be on the stack.
+{ duplicate$ empty$
+  { "no book title in " cite$ * warning$ "" pop$ }
+  { editor empty$
+    author empty$ or  % Empty author means editor already given.
+      'format.edn.btitle
+      { format.edn.btitle ", " * bbl.editor * " " * format.in.editors * }
+      if$
+  }
+  if$
+}
+
+FUNCTION {format.full.book.spec} % The title should be on the stack.
+{ series empty$
+    { format.ed.booktitle
+      volume empty$
+	{ number empty$
+	    'skip$
+	    { " there's a number but no series in " cite$ * warning$
+	      " No." number tie.or.space.connect * }
+	    if$
+	}
+	{ ", Vol." volume tie.or.space.connect *
+	  number empty$
+	    'skip$
+	    {"Both volume and number fields in " * cite$ * warning$ }
+	    if$
+	}
+	if$
+    }
+    { volume empty$
+	{ format.ed.booktitle ", " * series *
+	  number empty$
+	    'skip$
+	    { " No." number tie.or.space.connect * }
+	    if$
+	}
+	{ series ", Vol." volume tie.or.space.connect *  
+          ", " * swap$ format.ed.booktitle *
+	  number empty$
+	    'skip$
+	    {"Both volume and number fields in " * cite$ * warning$ }
+	    if$
+	}
+        if$
+    }
+    if$
+}
+
+%%%%%%%  End of functions from astrobib
+
+FUNCTION {article}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  crossref missing$
+    { journal
+      "journal" output.check
+      format.vol.num.pages output
+    }
+    { format.article.crossref output.nonnull
+      format.pages output
+    }
+  if$
+  format.journal.pages
+  format.note output
+  fin.entry
+}
+
+FUNCTION {book}
+{ output.bibitem
+  author empty$
+    { format.editors "author and editor" output.check
+      editor format.key output
+      name.or.dash
+    }
+    { format.authors output.nonnull
+      name.or.dash
+      crossref missing$
+        { "author and editor" editor either.or.check }
+        'skip$
+      if$
+    }
+  if$
+  format.date "year" output.check
+  date.block
+  title format.full.book.spec output
+%  format.btitle "title" output.check
+%  crossref missing$
+%    { format.bvolume output
+%      format.number.series output
+%      format.edition output
+   format.publisher
+%    }
+%    {
+%      format.book.crossref output.nonnull
+%    }
+%  if$
+  format.pages output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {booklet}
+{ output.bibitem
+  format.authors output
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  format.title "title" output.check
+  howpublished output
+  address output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {inbook}
+{ output.bibitem
+  author empty$
+    { format.editors "author and editor" output.check
+      editor format.key output
+      name.or.dash
+    }
+    { format.authors output.nonnull
+      name.or.dash
+      crossref missing$
+        { "author and editor" editor either.or.check }
+        'skip$
+      if$
+    }
+  if$
+  format.date "year" output.check
+  date.block
+  title format.full.book.spec output
+%  format.btitle "title" output.check
+%  crossref missing$
+%    {
+%      format.bvolume output
+%      format.chapter.pages "chapter and pages" output.check
+%      format.number.series output
+%      format.edition output
+   format.publisher
+%    }
+%    {
+%      format.chapter.pages "chapter and pages" output.check
+%      format.book.crossref output.nonnull
+%    }
+%  if$
+  format.pages "pages" output.check
+  format.note output
+  fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  bbl.in " " * booktitle format.full.book.spec * output
+%  crossref missing$
+%    { format.in.ed.booktitle "booktitle" output.check
+%      format.bvolume output
+%      format.number.series output
+%      format.edition output
+%      format.chapter.pages output
+  format.publisher
+%    }
+%    { format.incoll.inproc.crossref output.nonnull
+%      format.chapter.pages output
+%    }
+%  if$
+  format.pages "pages" output.check
+  format.note output
+  fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output            % added
+  format.date "year" output.check
+  date.block
+  bbl.in " " * booktitle format.full.book.spec * output
+%  crossref missing$
+%    { format.in.ed.booktitle "booktitle" output.check
+%      format.bvolume output
+%      format.number.series output
+  publisher empty$
+    { organization output
+      address output
+    }
+    { organization output
+      format.publisher
+    }
+  if$
+%    }
+%    { format.incoll.inproc.crossref output.nonnull
+%    }
+%  if$
+  format.pages output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {conference} { inproceedings }
+
+FUNCTION {manual}
+{ output.bibitem
+  format.authors output
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  format.btitle "title" output.check
+  format.edition output
+  organization output
+  address output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {mastersthesis}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+%  format.title "title" output.check
+  bbl.mthesis format.thesis.type output.nonnull
+  school "school" output.check
+  address output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {misc}
+{ output.bibitem
+  format.authors output
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  format.title output
+  howpublished output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {phdthesis}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+%  format.title "title" output.check
+  bbl.phdthesis format.thesis.type output.nonnull
+  school "school" output.check
+  address output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+  editor empty$
+    { organization output
+      organization format.key output }
+    { format.editors output }
+  if$
+%  format.editors output
+%  editor format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  title format.full.book.spec output
+%  format.btitle "title" output.check
+%  format.bvolume output
+%  format.number.series output
+  publisher empty$ not      % No need for warning if no pub.
+    { format.publisher }
+    { editor empty$         % For empty editor, organization was already given.
+        'skip$
+        { organization output }
+      if$
+      address output
+    }
+  if$
+%  address output
+%  organization output
+%  publisher output
+  format.pages output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {techreport}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+  format.title "title" output.check
+  format.tr.number output.nonnull
+  institution "institution" output.check
+  address output
+  format.note output
+  fin.entry
+}
+
+FUNCTION {unpublished}
+{ output.bibitem
+  format.authors "author" output.check
+  author format.key output
+  name.or.dash
+  format.date "year" output.check
+  date.block
+%  format.title "title" output.check
+  format.note "note" output.check
+  fin.entry
+}
+
+FUNCTION {default.type} { misc }
+
+READ
+
+FUNCTION {sortify}
+{ purify$
+  "l" change.case$
+}
+
+INTEGERS { len }
+
+FUNCTION {chop.word}
+{ 's :=
+  'len :=
+  s #1 len substring$ =
+    { s len #1 + global.max$ substring$ }
+    's
+  if$
+}
+
+FUNCTION {format.lab.names}
+{ 's :=
+  s #1 "{vv~}{ll}" format.name$
+  s num.names$ duplicate$
+  #2 >
+    { pop$
+      " {et~al.}" *
+    }
+    { #2 <
+        'skip$
+        { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+            {
+              " {et~al.}" *
+            }
+            { " \& " * s #2 "{vv~}{ll}" format.name$
+              * }
+          if$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {author.key.label}
+{ author empty$
+    { key empty$
+        { cite$ #1 #3 substring$ }
+        'key
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {author.editor.key.label}
+{ author empty$
+    { editor empty$
+        { key empty$
+            { cite$ #1 #3 substring$ }
+            'key
+          if$
+        }
+        { editor format.lab.names }
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {editor.key.label}
+{ editor empty$
+    { key empty$
+        { cite$ #1 #3 substring$ }
+        'key
+      if$
+    }
+    { editor format.lab.names }
+  if$
+}
+
+FUNCTION {calc.short.authors}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.key.label
+    { type$ "proceedings" =
+        'editor.key.label
+        'author.key.label
+      if$
+    }
+  if$
+  'short.list :=
+}
+
+FUNCTION {calc.label}
+{ calc.short.authors
+  short.list
+  "("
+  *
+  year duplicate$ empty$
+     { pop$ "????" }
+     'skip$
+  if$
+  *
+  'label :=
+}
+
+FUNCTION {sort.format.names}
+{ 's :=
+  #1 'nameptr :=
+  ""
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{vv{ } }{ll{ }}{  f{ }}{  jj{ }}"
+      format.name$ 't :=
+      nameptr #1 >
+        {
+          "   "  *
+          namesleft #1 = t "others" = and
+            { "zzzzz" * }
+            { t sortify * }
+          if$
+        }
+        { t sortify * }
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {sort.format.title}
+{ 't :=
+  "A " #2
+    "An " #3
+      "The " #4 t chop.word
+    chop.word
+  chop.word
+  sortify
+  #1 global.max$ substring$
+}
+
+FUNCTION {author.sort}
+{ author empty$
+    { key empty$
+        { "to sort, need author or key in " cite$ * warning$
+          ""
+        }
+        { key sortify }
+      if$
+    }
+    { author sort.format.names }
+  if$
+}
+
+FUNCTION {author.editor.sort}
+{ author empty$
+    { editor empty$
+        { key empty$
+            { "to sort, need author, editor, or key in " cite$ * warning$
+              ""
+            }
+            { key sortify }
+          if$
+        }
+        { editor sort.format.names }
+      if$
+    }
+    { author sort.format.names }
+  if$
+}
+
+FUNCTION {editor.sort}
+{ editor empty$
+    { key empty$
+        { "to sort, need editor or key in " cite$ * warning$
+          ""
+        }
+        { key sortify }
+      if$
+    }
+    { editor sort.format.names }
+  if$
+}
+
+FUNCTION {presort}
+{ calc.label
+  label sortify
+  "    "
+  *
+  type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.sort
+    { type$ "proceedings" =
+        'editor.sort
+        'author.sort
+      if$
+    }
+  if$
+  #1 entry.max$ substring$
+  'sort.label :=
+  sort.label
+  *
+  "    "
+  *
+  title field.or.null
+  sort.format.title
+  *
+  #1 entry.max$ substring$
+  'sort.key$ :=
+}
+
+ITERATE {presort}
+
+SORT
+
+STRINGS { last.label next.extra }
+
+INTEGERS { last.extra.num number.label }
+
+FUNCTION {initialize.extra.label.stuff}
+{ #0 int.to.chr$ 'last.label :=
+  "" 'next.extra :=
+  #0 'last.extra.num :=
+  #0 'number.label :=
+}
+
+FUNCTION {forward.pass}
+{ last.label label =
+    { last.extra.num #1 + 'last.extra.num :=
+      last.extra.num int.to.chr$ 'extra.label :=
+    }
+    { "a" chr.to.int$ 'last.extra.num :=
+      "" 'extra.label :=
+      label 'last.label :=
+    }
+  if$
+  number.label #1 + 'number.label :=
+}
+
+FUNCTION {reverse.pass}
+{ next.extra "b" =
+    { "a" 'extra.label := }
+    'skip$
+  if$
+  extra.label 'next.extra :=
+  extra.label
+  duplicate$ empty$
+    'skip$
+    { "{\natexlab{" swap$ * "}}" * }
+  if$
+  'extra.label :=
+  label extra.label * 'label :=
+}
+
+EXECUTE {initialize.extra.label.stuff}
+
+ITERATE {forward.pass}
+
+REVERSE {reverse.pass}
+
+FUNCTION {bib.sort.order}
+{ sort.label
+  "    "
+  *
+  year field.or.null sortify
+  *
+  "    "
+  *
+  title field.or.null
+  sort.format.title
+  *
+  #1 entry.max$ substring$
+  'sort.key$ :=
+}
+
+ITERATE {bib.sort.order}
+
+SORT
+
+FUNCTION {begin.bib}
+{ preamble$ empty$
+    'skip$
+    { preamble$ write$ newline$ }
+  if$
+  "\begin{thebibliography}{" number.label int.to.str$ * "}" *
+  write$ newline$
+  "\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi"
+  write$ newline$
+}
+
+EXECUTE {begin.bib}
+
+EXECUTE {init.state.consts}
+
+ITERATE {call.type$}
+
+FUNCTION {end.bib}
+{ newline$
+  "\end{thebibliography}" write$ newline$
+}
+
+EXECUTE {end.bib}
+%% End of customized bst file
+%%
+%% End of file `apj.bst'.
Index: trunk/doc/release.2015/inputs/lib.bib
===================================================================
--- trunk/doc/release.2015/inputs/lib.bib	(revision 39866)
+++ trunk/doc/release.2015/inputs/lib.bib	(revision 39866)
@@ -0,0 +1,15929 @@
+@ARTICLE{magnier2017a,
+   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{price2017,
+   author = {{Price}, P.~A. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{chambers2017,
+   author = {{Chambers}, K.~C. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{waters2017,
+   author = {{Waters}, C. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{magnier2017b,
+   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{magnier2017c,
+   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{flewelling2017,
+   author = {{Flewelling}, H. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{huber2017,
+   author = {{Huber}, M. and {TBD}, A. and {TBD}, B. and et al.},
+    title = "{IPP}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint ={YYYY.XXXXX},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics},
+     year = 2017,
+    month = jan,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@manual{chambers_k_c_2006_199843,
+  title        = {Mission Concept Statement for PS1},
+  author       = {Chambers, K. C.},
+  month        = sep,
+  year         = 2006,
+  doi          = {10.5281/zenodo.199843},
+  url          = {https://doi.org/10.5281/zenodo.199843}
+}
+
+
+@manual{chambers_k_c_2007_199832,
+  title        = {PS1 Science Goals Statement},
+  author       = {Chambers, K. C.},
+  month        = feb,
+  year         = 2007,
+  doi          = {10.5281/zenodo.199832},
+  url          = {https://doi.org/10.5281/zenodo.199832}
+}
+
+
+
+@manual{chambers_k_c_2008_199860,
+  title        = {PS1 Design Reference Mission},
+  author       = {Chambers, K. C. and
+                  Denneau, Larry Jr.},
+  month        = apr,
+  year         = 2008,
+  doi          = {10.5281/zenodo.199860},
+  url          = {https://doi.org/10.5281/zenodo.199860}
+}
+
+@ARTICLE{1997PASP..109.1154T,
+   author = {{Tonry}, J. and {Burke}, B.~E. and {Schechter}, P.~L.},
+    title = "{The Orthogonal Transfer CCD}",
+  journal = {\pasp},
+ keywords = {INSTRUMENTATION: CAMERAS},
+     year = 1997,
+    month = oct,
+   volume = 109,
+    pages = {1154-1164},
+      doi = {10.1086/133989},
+   adsurl = {http://adsabs.harvard.edu/abs/1997PASP..109.1154T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2002SPIE.4836..206T,
+   author = {{Tonry}, J.~L. and {Luppino}, G.~A. and {Kaiser}, N. and {Burke}, B.~E. and 
+	{Jacoby}, G.~H.},
+    title = "{Rubber Focal Plane for Sky Surveys}",
+booktitle = {Survey and Other Telescope Technologies and Discoveries},
+     year = 2002,
+   series = {\procspie},
+   volume = 4836,
+   editor = {{Tyson}, J.~A. and {Wolff}, S.},
+    month = dec,
+    pages = {206-216},
+      doi = {10.1117/12.461350},
+   adsurl = {http://adsabs.harvard.edu/abs/2002SPIE.4836..206T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000PASP..112..768K,
+   author = {{Kaiser}, N. and {Tonry}, J.~L. and {Luppino}, G.~A.},
+    title = "{A New Strategy for Deep Wide-Field High-Resolution Optical Imaging}",
+  journal = {\pasp},
+   eprint = {astro-ph/9912181},
+ keywords = {Atmospheric Effects, Instrumentation: Adaptive Optics, Instrumentation: Detectors, Telescopes},
+     year = 2000,
+    month = jun,
+   volume = 112,
+    pages = {768-800},
+      doi = {10.1086/316578},
+   adsurl = {http://adsabs.harvard.edu/abs/2000PASP..112..768K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2008SPIE.7014E..0DO,
+   author = {{Onaka}, P. and {Tonry}, J.~L. and {Isani}, S. and {Lee}, A. and 
+	{Uyeshiro}, R. and {Rae}, C. and {Robertson}, L. and {Ching}, G.
+	},
+    title = "{The Pan-STARRS Gigapixel Camera \#1 and STARGRASP controller results and performance}",
+booktitle = {Ground-based and Airborne Instrumentation for Astronomy II},
+     year = 2008,
+   series = {\procspie},
+   volume = 7014,
+    month = jul,
+      eid = {70140D},
+    pages = {70140D},
+      doi = {10.1117/12.788093},
+   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7014E..0DO},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJS..191..376S,
+   author = {{Stubbs}, C.~W. and {Doherty}, P. and {Cramer}, C. and {Narayan}, G. and 
+	{Brown}, Y.~J. and {Lykke}, K.~R. and {Woodward}, J.~T. and 
+	{Tonry}, J.~L.},
+    title = "{Precise Throughput Determination of the PanSTARRS Telescope and the Gigapixel Imager Using a Calibrated Silicon Photodiode and a Tunable Laser: Initial Results}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1003.3465},
+ primaryClass = "astro-ph.IM",
+ keywords = {instrumentation: detectors, instrumentation: photometers, surveys, techniques: photometric},
+     year = 2010,
+    month = dec,
+   volume = 191,
+    pages = {376-388},
+      doi = {10.1088/0067-0049/191/2/376},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJS..191..376S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2007PASP..119.1163S,
+   author = {{Stubbs}, C.~W. and {High}, F.~W. and {George}, M.~R. and {DeRose}, K.~L. and 
+	{Blondin}, S. and {Tonry}, J.~L. and {Chambers}, K.~C. and {Granett}, B.~R. and 
+	{Burke}, D.~L. and {Smith}, R.~C.},
+    title = "{Toward More Precise Survey Photometry for PanSTARRS and LSST: Measuring Directly the Optical Transmission Spectrum of the Atmosphere}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {0708.1364},
+ keywords = {Astronomical Phenomena and Seeing},
+     year = 2007,
+    month = oct,
+   volume = 119,
+    pages = {1163-1178},
+      doi = {10.1086/522208},
+   adsurl = {http://adsabs.harvard.edu/abs/2007PASP..119.1163S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1983ApJ...266..713O,
+   author = {{Oke}, J.~B. and {Gunn}, J.~E.},
+    title = "{Secondary standard stars for absolute spectrophotometry}",
+  journal = {\apj},
+ keywords = {Reference Stars, Spectral Energy Distribution, Stellar Spectrophotometry, Subdwarf Stars, Calibrating, Line Spectra},
+     year = 1983,
+    month = mar,
+   volume = 266,
+    pages = {713-717},
+      doi = {10.1086/160817},
+   adsurl = {http://adsabs.harvard.edu/abs/1983ApJ...266..713O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...815..117S,
+   author = {{Scolnic}, D. and {Casertano}, S. and {Riess}, A. and {Rest}, A. and 
+	{Schlafly}, E. and {Foley}, R.~J. and {Finkbeiner}, D. and {Tang}, C. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Draper}, P.~W. and 
+	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M.~E. and 
+	{Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Stubbs}, C.~W.},
+    title = "{Supercal: Cross-calibration of Multiple Photometric Systems to Improve Cosmological Measurements with Type Ia Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1508.05361},
+ primaryClass = "astro-ph.IM",
+ keywords = {dark energy, supernovae: general, surveys},
+     year = 2015,
+    month = dec,
+   volume = 815,
+      eid = {117},
+    pages = {117},
+      doi = {10.1088/0004-637X/815/2/117},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...815..117S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015IAUGA..2251124W,
+   author = {{Wainscoat}, R. and {Weryk}, R. and {Schunova}, E. and {Carter Chambers}, K.
+	},
+    title = "{The Pan-STARRS search for Near Earth Objects}",
+  journal = {IAU General Assembly},
+     year = 2015,
+    month = aug,
+   volume = 22,
+      eid = {2251124},
+    pages = {2251124},
+   adsurl = {http://adsabs.harvard.edu/abs/2015IAUGA..2251124W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...797...22L,
+   author = {{Lee}, C.-H. and {Koppenhoefer}, J. and {Seitz}, S. and {Bender}, R. and 
+	{Riffeser}, A. and {Kodric}, M. and {Hopp}, U. and {Snigula}, J. and 
+	{G{\"o}ssl}, C. and {Kudritzki}, R.-P. and {Burgett}, W. and 
+	{Chambers}, K. and {Hodapp}, K. and {Kaiser}, N. and {Waters}, C.
+	},
+    title = "{Properties of M31. V. 298 Eclipsing Binaries from PAndromeda}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1411.1115},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: eclipsing, galaxies: individual: M31, stars: distances, stars: fundamental parameters},
+     year = 2014,
+    month = dec,
+   volume = 797,
+      eid = {22},
+    pages = {22},
+      doi = {10.1088/0004-637X/797/1/22},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...797...22L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...785...11L,
+   author = {{Lee}, C.-H. and {Seitz}, S. and {Kodric}, M. and {Riffeser}, A. and 
+	{Koppenhoefer}, J. and {Bender}, R. and {Snigula}, J. and {Hopp}, U. and 
+	{G{\"o}ssl}, C. and {Bianchi}, L. and {Price}, P.~A. and {Fraser}, M. and 
+	{Burgett}, W. and {Chambers}, K.~C. and {Draper}, P.~W. and 
+	{Flewelling}, H. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Magnier}, E.~A.},
+    title = "{Properties of M31. IV. Candidate Luminous Blue Variables from PAndromeda}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1403.6859},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: M31, stars: early-type, stars: evolution, stars: massive},
+     year = 2014,
+    month = apr,
+   volume = 785,
+      eid = {11},
+    pages = {11},
+      doi = {10.1088/0004-637X/785/1/11},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...11L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...777...35L,
+   author = {{Lee}, C.-H. and {Kodric}, M. and {Seitz}, S. and {Riffeser}, A. and 
+	{Koppenhoefer}, J. and {Bender}, R. and {Hopp}, U. and {G{\"o}ssl}, C. and 
+	{Snigula}, J. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
+    title = "{Properties of M31. III. Candidate Beat Cepheids from PS1 PAndromeda Data and Their Implication on Metallicity Gradient}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1308.6576},
+ primaryClass = "astro-ph.GA",
+ keywords = {galaxies: individual: M31, stars: variables: Cepheids },
+     year = 2013,
+    month = nov,
+   volume = 777,
+      eid = {35},
+    pages = {35},
+      doi = {10.1088/0004-637X/777/1/35},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777...35L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013AJ....145..106K,
+   author = {{Kodric}, M. and {Riffeser}, A. and {Hopp}, U. and {Seitz}, S. and 
+	{Koppenhoefer}, J. and {Bender}, R. and {Goessl}, C. and {Snigula}, J. and 
+	{Lee}, C.-H. and {Ngeow}, C.-C. and {Chambers}, K.~C. and {Magnier}, E.~A. and 
+	{Price}, P.~A. and {Burgett}, W.~S. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P.},
+    title = "{Properties of M31. II. A Cepheid Disk Sample Derived from the First Year of PS1 PAndromeda Data}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1301.6170},
+ primaryClass = "astro-ph.CO",
+ keywords = {catalogs, distance scale, galaxies: individual: M31 NGC 224, galaxies: star formation, Local Group, stars: variables: Cepheids},
+     year = 2013,
+    month = apr,
+   volume = 145,
+      eid = {106},
+    pages = {106},
+      doi = {10.1088/0004-6256/145/4/106},
+   adsurl = {http://adsabs.harvard.edu/abs/2013AJ....145..106K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012AJ....143...89L,
+   author = {{Lee}, C.-H. and {Riffeser}, A. and {Koppenhoefer}, J. and {Seitz}, S. and 
+	{Bender}, R. and {Hopp}, U. and {G{\"o}ssl}, C. and {Saglia}, R.~P. and 
+	{Snigula}, J. and {Sweeney}, W.~E. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
+	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
+    title = "{PAndromeda{\mdash}First Results from the High-cadence Monitoring of M31 with Pan-STARRS 1}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1109.6320},
+ primaryClass = "astro-ph.GA",
+ keywords = {galaxies: individual: M31, gravitational lensing: micro, stars: variables: Cepheids},
+     year = 2012,
+    month = apr,
+   volume = 143,
+      eid = {89},
+    pages = {89},
+      doi = {10.1088/0004-6256/143/4/89},
+   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143...89L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...777L..20L,
+   author = {{Liu}, M.~C. and {Magnier}, E.~A. and {Deacon}, N.~R. and {Allers}, K.~N. and 
+	{Dupuy}, T.~J. and {Kotson}, M.~C. and {Aller}, K.~M. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Draper}, P.~W. and {Hodapp}, K.~W. and 
+	{Jedicke}, R. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Metcalfe}, N. and 
+	{Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J.
+	},
+    title = "{The Extremely Red, Young L Dwarf PSO J318.5338-22.8603: A Free-floating Planetary-mass Analog to Directly Imaged Young Gas-giant Planets}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1310.0457},
+ primaryClass = "astro-ph.EP",
+ keywords = {brown dwarfs, parallaxes, planets and satellites: atmospheres, proper motions, solar neighborhood, surveys},
+     year = 2013,
+    month = nov,
+   volume = 777,
+      eid = {L20},
+    pages = {L20},
+      doi = {10.1088/2041-8205/777/2/L20},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777L..20L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011AJ....142...77D,
+   author = {{Deacon}, N.~R. and {Liu}, M.~C. and {Magnier}, E.~A. and {Bowler}, B.~P. and 
+	{Goldman}, B. and {Redstone}, J.~A. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Flewelling}, H. and {Kaiser}, N. and 
+	{Lupton}, R.~H. and {Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W.~E. and 
+	{Tonry}, J.~L. and {Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Four New T Dwarfs Identified in Pan-STARRS 1 Commissioning Data}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1106.3105},
+ primaryClass = "astro-ph.SR",
+ keywords = {brown dwarfs, stars: low-mass, surveys},
+     year = 2011,
+    month = sep,
+   volume = 142,
+      eid = {77},
+    pages = {77},
+      doi = {10.1088/0004-6256/142/3/77},
+   adsurl = {http://adsabs.harvard.edu/abs/2011AJ....142...77D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2008SPIE.7021E..05T,
+   author = {{Tonry}, J.~L. and {Burke}, B.~E. and {Isani}, S. and {Onaka}, P.~M. and 
+	{Cooper}, M.~J.},
+    title = "{Results from the Pan-STARRS Orthogonal Transfer Array (OTA)}",
+booktitle = {High Energy, Optical, and Infrared Detectors for Astronomy III},
+     year = 2008,
+   series = {\procspie},
+   volume = 7021,
+    month = jul,
+      eid = {702105},
+    pages = {702105},
+      doi = {10.1117/12.789617},
+   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7021E..05T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2006amos.confE..47T,
+   author = {{Tonry}, J. and {Onaka}, P. and {Luppino}, G. and {Isani}, S.
+	},
+    title = "{The Pan-STARRS Gigapixel Camera}",
+booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
+     year = 2006,
+    pages = {E47},
+   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..47T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2007AAS...210.6206C,
+   author = {{Chambers}, K. and {Pan-STARRS Telescope No.~1} and {PS1 Science Consortium}
+	},
+    title = "{The PS1 Sky Surveys and Science Mission}",
+booktitle = {American Astronomical Society Meeting Abstracts \#210},
+     year = 2007,
+   series = {Bulletin of the American Astronomical Society},
+   volume = 39,
+    month = may,
+      eid = {62.06},
+    pages = {171},
+   adsurl = {http://adsabs.harvard.edu/abs/2007AAS...210.6206C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2006amos.confE..39C,
+   author = {{Chambers}, K.},
+    title = "{PS1 and the PS1 Science Mission}",
+booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
+     year = 2006,
+    pages = {E39},
+   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..39C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2012SPIE.8444E..0HM,
+   author = {{Morgan}, J.~S. and {Kaiser}, N. and {Moreau}, V. and {Anderson}, D. and 
+	{Burgett}, W.},
+    title = "{Design differences between the Pan-STARRS PS1 and PS2 telescopes}",
+booktitle = {Ground-based and Airborne Telescopes IV},
+     year = 2012,
+   series = {\procspie},
+   volume = 8444,
+archivePrefix = "arXiv",
+   eprint = {1207.2513},
+ primaryClass = "astro-ph.IM",
+    month = sep,
+      eid = {84440H},
+    pages = {84440H},
+      doi = {10.1117/12.926646},
+   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8444E..0HM},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2008AIPC.1082..352H,
+   author = {{Heasley}, J.~N.},
+    title = "{The Pan-STARRS Data Processing and Science Analysis Software Systems}",
+ keywords = {X- and gamma-ray telescopes and instrumentation, Astronomical catalogs atlases sky surveys databases retrieval systems archives etc., Cosmology},
+booktitle = {American Institute of Physics Conference Series},
+     year = 2008,
+   series = {American Institute of Physics Conference Series},
+   volume = 1082,
+   editor = {{Bailer-Jones}, C.~A.~L.},
+    month = dec,
+    pages = {352-358},
+      doi = {10.1063/1.3059075},
+   adsurl = {http://adsabs.harvard.edu/abs/2008AIPC.1082..352H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2006amos.confE..50M,
+   author = {{Magnier}, E.},
+    title = "{The Pan-STARRS PS1 Image Processing Pipeline}",
+booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
+     year = 2006,
+    pages = {E50},
+   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..50M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{1973egfs.conf..433C,
+   author = {{Carter}, W.~E. and {Williams}, J.~D.},
+    title = "{University of Hawaii LURE Observatory}",
+booktitle = {The Earth's Gravitational Field and Secular Variations in Position},
+     year = 1973,
+   editor = {{Angus-Leppan}, P.~V. and {Bomford}, A.~G. and {Dooley}, J.~C. and 
+	{Mather}, R.~S.},
+    pages = {433},
+   adsurl = {http://adsabs.harvard.edu/abs/1973egfs.conf..433C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004AN....325..636H,
+   author = {{Hodapp}, K.~W. and {Kaiser}, N. and {Aussel}, H. and {Burgett}, W. and 
+	{Chambers}, K.~C. and {Chun}, M. and {Dombeck}, T. and {Douglas}, A. and 
+	{Hafner}, D. and {Heasley}, J. and {Hoblitt}, J. and {Hude}, C. and 
+	{Isani}, S. and {Jedicke}, R. and {Jewitt}, D. and {Laux}, U. and 
+	{Luppino}, G.~A. and {Lupton}, R. and {Maberry}, M. and {Magnier}, E. and 
+	{Mannery}, E. and {Monet}, D. and {Morgan}, J. and {Onaka}, P. and 
+	{Price}, P. and {Ryan}, A. and {Siegmund}, W. and {Szapudi}, I. and 
+	{Tonry}, J. and {Wainscoat}, R. and {Waterson}, M.},
+    title = "{Design of the Pan-STARRS telescopes}",
+  journal = {Astronomische Nachrichten},
+ keywords = {survey telescope, optical design},
+     year = 2004,
+    month = oct,
+   volume = 325,
+    pages = {636-642},
+      doi = {10.1002/asna.200410300},
+   adsurl = {http://adsabs.harvard.edu/abs/2004AN....325..636H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2004SPIE.5489..667H,
+   author = {{Hodapp}, K.~W. and {Siegmund}, W.~A. and {Kaiser}, N. and {Chambers}, K.~C. and 
+	{Laux}, U. and {Morgan}, J. and {Mannery}, E.},
+    title = "{Optical design of the Pan-STARRS telescopes}",
+booktitle = {Ground-based Telescopes},
+     year = 2004,
+   series = {\procspie},
+   volume = 5489,
+   editor = {{Oschmann}, Jr., J.~M.},
+    month = oct,
+    pages = {667-678},
+      doi = {10.1117/12.550179},
+   adsurl = {http://adsabs.harvard.edu/abs/2004SPIE.5489..667H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2008SPIE.7012E..1KM,
+   author = {{Morgan}, J.~S. and {Kaiser}, N.},
+    title = "{Alignment of the Pan-STARRS PS1 prototype telescope optics}",
+booktitle = {Ground-based and Airborne Telescopes II},
+     year = 2008,
+   series = {\procspie},
+   volume = 7012,
+    month = jul,
+      eid = {70121K},
+    pages = {70121K},
+      doi = {10.1117/12.788426},
+   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7012E..1KM},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ApJS..185..124S,
+   author = {{Stalder}, B. and {Chambers}, K.~C. and {Vacca}, W.~D.},
+    title = "{58 Radio Sources Near Bright Natural Guide Stars}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {0909.1566},
+ keywords = {galaxies: evolution, galaxies: formation, galaxies: fundamental parameters, galaxies: high-redshift},
+     year = 2009,
+    month = nov,
+   volume = 185,
+    pages = {124-155},
+      doi = {10.1088/0067-0049/185/1/124},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJS..185..124S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2012SPIE.8453E..0KO,
+   author = {{Onaka}, P. and {Rae}, C. and {Isani}, S. and {Tonry}, J.~L. and 
+	{Lee}, A. and {Uyeshiro}, R. and {Robertson}, L. and {Ching}, G.
+	},
+    title = "{GPC1 and GPC2: the Pan-STARRS 1.4 gigapixel mosaic focal plane CCD cameras with an on-sky on-CCD tip-tilt image compensation}",
+booktitle = {High Energy, Optical, and Infrared Detectors for Astronomy V},
+     year = 2012,
+   series = {\procspie},
+   volume = 8453,
+    month = jul,
+      eid = {84530K},
+    pages = {84530K},
+      doi = {10.1117/12.925830},
+   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8453E..0KO},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999AJ....118.1406L,
+   author = {{Lupton}, R.~H. and {Gunn}, J.~E. and {Szalay}, A.~S.},
+    title = "{A Modified Magnitude System that Produces Well-Behaved Magnitudes, Colors, and Errors Even for Low Signal-to-Noise Ratio Measurements}",
+  journal = {\aj},
+   eprint = {astro-ph/9903081},
+ keywords = {CATALOGS, METHODS: STATISTICAL, TECHNIQUES: PHOTOMETRIC},
+     year = 1999,
+    month = sep,
+   volume = 118,
+    pages = {1406-1410},
+      doi = {10.1086/301004},
+   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....118.1406L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2016arXiv160203842A,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{The Rate of Binary Black Hole Mergers Inferred from Advanced LIGO Observations Surrounding GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.03842},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{amos2006,
+   author = {{Chambers}, K.},
+    title = "{PS1 and the PS1 Science Mission}",
+booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
+     year = 2006,
+    pages = {E39},
+   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..39C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2009AAS...21330107C,
+   author = {{Chambers}, K.~C.},
+    title = "{Pan-STARRS Telescope \#1 Status and Science Mission}",
+booktitle = {American Astronomical Society Meeting Abstracts \#213},
+     year = 2009,
+   series = {Bulletin of the American Astronomical Society},
+   volume = 41,
+    month = jan,
+      eid = {301.07},
+    pages = {270},
+   adsurl = {http://adsabs.harvard.edu/abs/2009AAS...21330107C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@INPROCEEDINGS{2007AAS...21114206C,
+   author = {{Chambers}, K.~C.},
+    title = "{The PS1 System and Science Mission}",
+booktitle = {American Astronomical Society Meeting Abstracts},
+     year = 2007,
+   series = {Bulletin of the American Astronomical Society},
+   volume = 39,
+    month = dec,
+      eid = {142.06},
+    pages = {995},
+   adsurl = {http://adsabs.harvard.edu/abs/2007AAS...21114206C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+
+@INPROCEEDINGS{2002SPIE.4836..154K,
+   author = {{Kaiser}, N. and {Aussel}, H. and {Burke}, B.~E. and {Boesgaard}, H. and 
+	{Chambers}, K. and {Chun}, M.~R. and {Heasley}, J.~N. and {Hodapp}, K.-W. and 
+	{Hunt}, B. and {Jedicke}, R. and {Jewitt}, D. and {Kudritzki}, R. and 
+	{Luppino}, G.~A. and {Maberry}, M. and {Magnier}, E. and {Monet}, D.~G. and 
+	{Onaka}, P.~M. and {Pickles}, A.~J. and {Rhoads}, P.~H.~H. and 
+	{Simon}, T. and {Szalay}, A. and {Szapudi}, I. and {Tholen}, D.~J. and 
+	{Tonry}, J.~L. and {Waterson}, M. and {Wick}, J.},
+    title = "{Pan-STARRS: A Large Synoptic Survey Telescope Array}",
+booktitle = {Survey and Other Telescope Technologies and Discoveries},
+     year = 2002,
+   series = {\procspie},
+   volume = 4836,
+   editor = {{Tyson}, J.~A. and {Wolff}, S.},
+    month = dec,
+    pages = {154-164},
+      doi = {10.1117/12.457365},
+   adsurl = {http://adsabs.harvard.edu/abs/2002SPIE.4836..154K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+
+@INPROCEEDINGS{kaiser2010,
+   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
+	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
+	{Onaka}, P. and {Tonry}, J.},
+    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
+booktitle = {Ground-based and Airborne Telescopes III},
+     year = 2010,
+   series = {\procspie},
+   volume = 7733,
+    month = jul,
+      eid = {77330E},
+    pages = {77330E},
+      doi = {10.1117/12.859188},
+   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..0EK},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@INPROCEEDINGS{{2010SPIE.7733E..0EK},
+   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
+	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
+	{Onaka}, P. and {Tonry}, J.},
+    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
+booktitle = {Ground-based and Airborne Telescopes III},
+     year = 2010,
+   series = {\procspie},
+   volume = 7733,
+    month = jul,
+      eid = {77330E},
+    pages = {77330E},
+      doi = {10.1117/12.859188},
+   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..0EK},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1980ApJS...43..305K,
+   author = {{Kron}, R.~G.},
+    title = "{Photometry of a complete sample of faint galaxies}",
+  journal = {\apjs},
+ keywords = {Astronomical Photometry, Galactic Radiation, Galaxies, Star Distribution, Calibrating, Colorimetry, Distribution Functions, Galactic Evolution, Luminous Intensity, Tables (Data)},
+     year = 1980,
+    month = jun,
+   volume = 43,
+    pages = {305-325},
+      doi = {10.1086/190669},
+   adsurl = {http://adsabs.harvard.edu/abs/1980ApJS...43..305K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2002AJ....123..485S,
+   author = {{Stoughton}, C. and {Lupton}, R.~H. and {Bernardi}, M. and {Blanton}, M.~R. and 
+	{Burles}, S. and {Castander}, F.~J. and {Connolly}, A.~J. and 
+	{Eisenstein}, D.~J. and {Frieman}, J.~A. and {Hennessy}, G.~S. and 
+	{Hindsley}, R.~B. and {Ivezi{\'c}}, {\v Z}. and {Kent}, S. and 
+	{Kunszt}, P.~Z. and {Lee}, B.~C. and {Meiksin}, A. and {Munn}, J.~A. and 
+	{Newberg}, H.~J. and {Nichol}, R.~C. and {Nicinski}, T. and 
+	{Pier}, J.~R. and {Richards}, G.~T. and {Richmond}, M.~W. and 
+	{Schlegel}, D.~J. and {Smith}, J.~A. and {Strauss}, M.~A. and 
+	{SubbaRao}, M. and {Szalay}, A.~S. and {Thakar}, A.~R. and {Tucker}, D.~L. and 
+	{Vanden Berk}, D.~E. and {Yanny}, B. and {Adelman}, J.~K. and 
+	{Anderson}, Jr., J.~E. and {Anderson}, S.~F. and {Annis}, J. and 
+	{Bahcall}, N.~A. and {Bakken}, J.~A. and {Bartelmann}, M. and 
+	{Bastian}, S. and {Bauer}, A. and {Berman}, E. and {B{\"o}hringer}, H. and 
+	{Boroski}, W.~N. and {Bracker}, S. and {Briegel}, C. and {Briggs}, J.~W. and 
+	{Brinkmann}, J. and {Brunner}, R. and {Carey}, L. and {Carr}, M.~A. and 
+	{Chen}, B. and {Christian}, D. and {Colestock}, P.~L. and {Crocker}, J.~H. and 
+	{Csabai}, I. and {Czarapata}, P.~C. and {Dalcanton}, J. and 
+	{Davidsen}, A.~F. and {Davis}, J.~E. and {Dehnen}, W. and {Dodelson}, S. and 
+	{Doi}, M. and {Dombeck}, T. and {Donahue}, M. and {Ellman}, N. and 
+	{Elms}, B.~R. and {Evans}, M.~L. and {Eyer}, L. and {Fan}, X. and 
+	{Federwitz}, G.~R. and {Friedman}, S. and {Fukugita}, M. and 
+	{Gal}, R. and {Gillespie}, B. and {Glazebrook}, K. and {Gray}, J. and 
+	{Grebel}, E.~K. and {Greenawalt}, B. and {Greene}, G. and {Gunn}, J.~E. and 
+	{de Haas}, E. and {Haiman}, Z. and {Haldeman}, M. and {Hall}, P.~B. and 
+	{Hamabe}, M. and {Hansen}, B. and {Harris}, F.~H. and {Harris}, H. and 
+	{Harvanek}, M. and {Hawley}, S.~L. and {Hayes}, J.~J.~E. and 
+	{Heckman}, T.~M. and {Helmi}, A. and {Henden}, A. and {Hogan}, C.~J. and 
+	{Hogg}, D.~W. and {Holmgren}, D.~J. and {Holtzman}, J. and {Huang}, C.-H. and 
+	{Hull}, C. and {Ichikawa}, S.-I. and {Ichikawa}, T. and {Johnston}, D.~E. and 
+	{Kauffmann}, G. and {Kim}, R.~S.~J. and {Kimball}, T. and {Kinney}, E. and 
+	{Klaene}, M. and {Kleinman}, S.~J. and {Klypin}, A. and {Knapp}, G.~R. and 
+	{Korienek}, J. and {Krolik}, J. and {Kron}, R.~G. and {Krzesi{\'n}ski}, J. and 
+	{Lamb}, D.~Q. and {Leger}, R.~F. and {Limmongkol}, S. and {Lindenmeyer}, C. and 
+	{Long}, D.~C. and {Loomis}, C. and {Loveday}, J. and {MacKinnon}, B. and 
+	{Mannery}, E.~J. and {Mantsch}, P.~M. and {Margon}, B. and {McGehee}, P. and 
+	{McKay}, T.~A. and {McLean}, B. and {Menou}, K. and {Merelli}, A. and 
+	{Mo}, H.~J. and {Monet}, D.~G. and {Nakamura}, O. and {Narayanan}, V.~K. and 
+	{Nash}, T. and {Neilsen}, Jr., E.~H. and {Newman}, P.~R. and 
+	{Nitta}, A. and {Odenkirchen}, M. and {Okada}, N. and {Okamura}, S. and 
+	{Ostriker}, J.~P. and {Owen}, R. and {Pauls}, A.~G. and {Peoples}, J. and 
+	{Peterson}, R.~S. and {Petravick}, D. and {Pope}, A. and {Pordes}, R. and 
+	{Postman}, M. and {Prosapio}, A. and {Quinn}, T.~R. and {Rechenmacher}, R. and 
+	{Rivetta}, C.~H. and {Rix}, H.-W. and {Rockosi}, C.~M. and {Rosner}, R. and 
+	{Ruthmansdorfer}, K. and {Sandford}, D. and {Schneider}, D.~P. and 
+	{Scranton}, R. and {Sekiguchi}, M. and {Sergey}, G. and {Sheth}, R. and 
+	{Shimasaku}, K. and {Smee}, S. and {Snedden}, S.~A. and {Stebbins}, A. and 
+	{Stubbs}, C. and {Szapudi}, I. and {Szkody}, P. and {Szokoly}, G.~P. and 
+	{Tabachnik}, S. and {Tsvetanov}, Z. and {Uomoto}, A. and {Vogeley}, M.~S. and 
+	{Voges}, W. and {Waddell}, P. and {Walterbos}, R. and {Wang}, S.-i. and 
+	{Watanabe}, M. and {Weinberg}, D.~H. and {White}, R.~L. and 
+	{White}, S.~D.~M. and {Wilhite}, B. and {Wolfe}, D. and {Yasuda}, N. and 
+	{York}, D.~G. and {Zehavi}, I. and {Zheng}, W.},
+    title = "{Sloan Digital Sky Survey: Early Data Release}",
+  journal = {\aj},
+ keywords = {Atlases, Catalogs, Surveys},
+     year = 2002,
+    month = jan,
+   volume = 123,
+    pages = {485-548},
+      doi = {10.1086/324741},
+   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....123..485S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1995ApJ...449..460K,
+   author = {{Kaiser}, N. and {Squires}, G. and {Broadhurst}, T.},
+    title = "{A Method for Weak Lensing Observations}",
+  journal = {\apj},
+   eprint = {astro-ph/9411005},
+ keywords = {COSMOLOGY: OBSERVATIONS, COSMOLOGY: DARK MATTER, GALAXIES: FORMATION, COSMOLOGY: GRAVITATIONAL LENSING, COSMOLOGY: LARGE-SCALE STRUCTURE OF UNIVERSE},
+     year = 1995,
+    month = aug,
+   volume = 449,
+    pages = {460},
+      doi = {10.1086/176071},
+   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...449..460K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2017Icar..284..114S,
+   author = {{Schunov{\'a}-Lilly}, E. and {Jedicke}, R. and {Vere{\v s}}, P. and
+        {Denneau}, L. and {Wainscoat}, R.~J.},
+    title = "{The size-frequency distribution of H $\gt$ 13 NEOs and ARM target candidates detected by Pan-STARRS1}",
+  journal = {\icarus},
+archivePrefix = "arXiv",
+   eprint = {1611.03095},
+ primaryClass = "astro-ph.EP",
+ keywords = {Near-Earth objects, Asteroids, Asteroids, Dynamics},
+     year = 2017,
+    month = mar,
+   volume = 284,
+    pages = {114-125},
+      doi = {10.1016/j.icarus.2016.11.010},
+   adsurl = {http://adsabs.harvard.edu/abs/2017Icar..284..114S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015Icar..261...34V,
+   author = {{Vere{\v s}}, P. and {Jedicke}, R. and {Fitzsimmons}, A. and
+        {Denneau}, L. and {Granvik}, M. and {Bolin}, B. and {Chastel}, S. and
+        {Wainscoat}, R.~J. and {Burgett}, W.~S. and {Chambers}, K.~C. and
+        {Flewelling}, H. and {Kaiser}, N. and {Magnier}, E.~A. and {Morgan}, J.~S. and
+        {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
+    title = "{Absolute magnitudes and slope parameters for 250,000 asteroids observed by Pan-STARRS PS1 - Preliminary results}",
+  journal = {\icarus},
+archivePrefix = "arXiv",
+   eprint = {1506.00762},
+ primaryClass = "astro-ph.EP",
+ keywords = {Near-Earth objects, Asteroids, Data reduction techniques},
+     year = 2015,
+    month = nov,
+   volume = 261,
+    pages = {34-47},
+      doi = {10.1016/j.icarus.2015.08.007},
+   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..261...34V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015Icar..248..289H,
+   author = {{Hsieh}, H.~H. and {Denneau}, L. and {Wainscoat}, R.~J. and
+        {Sch{\"o}rghofer}, N. and {Bolin}, B. and {Fitzsimmons}, A. and
+        {Jedicke}, R. and {Kleyna}, J. and {Micheli}, M. and {Vere{\v s}}, P. and
+        {Kaiser}, N. and {Chambers}, K.~C. and {Burgett}, W.~S. and
+        {Flewelling}, H. and {Hodapp}, K.~W. and {Magnier}, E.~A. and
+        {Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.
+        },
+    title = "{The main-belt comets: The Pan-STARRS1 perspective}",
+  journal = {\icarus},
+archivePrefix = "arXiv",
+   eprint = {1410.5084},
+ primaryClass = "astro-ph.EP",
+ keywords = {Asteroids, Comets, Astrobiology, Asteroids, composition, Comets, origin},
+     year = 2015,
+    month = mar,
+   volume = 248,
+    pages = {289-312},
+      doi = {10.1016/j.icarus.2014.10.031},
+   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..248..289H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015Icar..245....1D,
+   author = {{Denneau}, L. and {Jedicke}, R. and {Fitzsimmons}, A. and {Hsieh}, H. and
+        {Kleyna}, J. and {Granvik}, M. and {Micheli}, M. and {Spahr}, T. and
+        {Vere{\v s}}, P. and {Wainscoat}, R. and {Burgett}, W.~S. and
+        {Chambers}, K.~C. and {Draper}, P.~W. and {Flewelling}, H. and
+        {Huber}, M.~E. and {Kaiser}, N. and {Morgan}, J.~S. and {Tonry}, J.~L.
+        },
+    title = "{Observational constraints on the catastrophic disruption rate of small main belt asteroids}",
+  journal = {\icarus},
+archivePrefix = "arXiv",
+   eprint = {1408.6807},
+ primaryClass = "astro-ph.EP",
+ keywords = {Asteroids},
+     year = 2015,
+    month = jan,
+   volume = 245,
+    pages = {1-15},
+      doi = {10.1016/j.icarus.2014.08.044},
+   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..245....1D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...776L..20M,
+   author = {{Meech}, K.~J. and {Yang}, B. and {Kleyna}, J. and {Ansdell}, M. and
+        {Chiang}, H.-F. and {Hainaut}, O. and {Vincent}, J.-B. and {Boehnhardt}, H. and
+        {Fitzsimmons}, A. and {Rector}, T. and {Riesen}, T. and {Keane}, J.~V. and
+        {Reipurth}, B. and {Hsieh}, H.~H. and {Michaud}, P. and {Milani}, G. and
+        {Bryssinck}, E. and {Ligustri}, R. and {Trabatti}, R. and {Tozzi}, G.-P. and
+        {Mottola}, S. and {Kuehrt}, E. and {Bhatt}, B. and {Sahu}, D. and
+        {Lisse}, C. and {Denneau}, L. and {Jedicke}, R. and {Magnier}, E. and
+        {Wainscoat}, R.},
+    title = "{Outgassing Behavior of C/2012 S1 (ISON) from 2011 September to 2013 June}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1309.2688},
+ primaryClass = "astro-ph.EP",
+ keywords = {comets: general, comets: individual: ISON},
+     year = 2013,
+    month = oct,
+   volume = 776,
+      eid = {L20},
+    pages = {L20},
+      doi = {10.1088/2041-8205/776/2/L20},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...776L..20M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016ApJS..227...11B,
+   author = {{Ba{\~n}ados}, E. and {Venemans}, B.~P. and {Decarli}, R. and 
+	{Farina}, E.~P. and {Mazzucchelli}, C. and {Walter}, F. and 
+	{Fan}, X. and {Stern}, D. and {Schlafly}, E. and {Chambers}, K.~C. and 
+	{Rix}, H.-W. and {Jiang}, L. and {McGreer}, I. and {Simcoe}, R. and 
+	{Wang}, F. and {Yang}, J. and {Morganson}, E. and {De Rosa}, G. and 
+	{Greiner}, J. and {Balokovi{\'c}}, M. and {Burgett}, W.~S. and 
+	{Cooper}, T. and {Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Jun}, H.~D. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Miller}, D. and {Schindler}, J.-T. and {Tonry}, J.~L. and 
+	{Wainscoat}, R.~J. and {Waters}, C. and {Yang}, Q.},
+    title = "{The Pan-STARRS1 Distant z $\gt$ 5.6 Quasar Survey: More than 100 Quasars within the First Gyr of the Universe}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1608.03279},
+ keywords = {cosmology: observations, quasars: emission lines, quasars: general},
+     year = 2016,
+    month = nov,
+   volume = 227,
+      eid = {11},
+    pages = {11},
+      doi = {10.3847/0067-0049/227/1/11},
+   adsurl = {http://adsabs.harvard.edu/abs/2016ApJS..227...11B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...801L..11V,
+   author = {{Venemans}, B.~P. and {Ba{\~n}ados}, E. and {Decarli}, R. and 
+	{Farina}, E.~P. and {Walter}, F. and {Chambers}, K.~C. and {Fan}, X. and 
+	{Rix}, H.-W. and {Schlafly}, E. and {McMahon}, R.~G. and {Simcoe}, R. and 
+	{Stern}, D. and {Burgett}, W.~S. and {Draper}, P.~W. and {Flewelling}, H. and 
+	{Hodapp}, K.~W. and {Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and 
+	{Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C. and 
+	{AlSayyad}, Y. and {Banerji}, M. and {Chen}, S.~S. and {Gonz{\'a}lez-Solares}, E.~A. and 
+	{Greiner}, J. and {Mazzucchelli}, C. and {McGreer}, I. and {Miller}, D.~R. and 
+	{Reed}, S. and {Sullivan}, P.~W.},
+    title = "{The Identification of Z-dropouts in Pan-STARRS1: Three Quasars at 6.5$\lt$ z$\lt$ 6.7}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1502.01927},
+ keywords = {cosmology: observations, galaxies: active, galaxies: individual: PSO J036.5078+03.0498, PSO J167.6415-13.4960, PSO J338.2298+29.5089, quasars: general},
+     year = 2015,
+    month = mar,
+   volume = 801,
+      eid = {L11},
+    pages = {L11},
+      doi = {10.1088/2041-8205/801/1/L11},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...801L..11V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014AJ....148...14B,
+   author = {{Ba{\~n}ados}, E. and {Venemans}, B.~P. and {Morganson}, E. and 
+	{Decarli}, R. and {Walter}, F. and {Chambers}, K.~C. and {Rix}, H.-W. and 
+	{Farina}, E.~P. and {Fan}, X. and {Jiang}, L. and {McGreer}, I. and 
+	{De Rosa}, G. and {Simcoe}, R. and {Wei{\ss}}, A. and {Price}, P.~A. and 
+	{Morgan}, J.~S. and {Burgett}, W.~S. and {Greiner}, J. and {Kaiser}, N. and 
+	{Kudritzki}, R.-P. and {Magnier}, E.~A. and {Metcalfe}, N. and 
+	{Stubbs}, C.~W. and {Sweeney}, W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C.},
+    title = "{Discovery of Eight z \~{} 6 Quasars from Pan-STARRS1}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1405.3986},
+ keywords = {cosmology: observations, quasars: emission lines, quasars: general, surveys},
+     year = 2014,
+    month = jul,
+   volume = 148,
+      eid = {14},
+    pages = {14},
+      doi = {10.1088/0004-6256/148/1/14},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....148...14B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012AJ....143..142M,
+   author = {{Morganson}, E. and {De Rosa}, G. and {Decarli}, R. and {Walter}, F. and 
+	{Chambers}, K. and {McGreer}, I. and {Fan}, X. and {Burgett}, W. and 
+	{Flewelling}, H. and {Greiner}, J. and {Hodapp}, K. and {Kaiser}, N. and 
+	{Magnier}, E. and {Price}, P. and {Rix}, H.-W. and {Sweeney}, B. and 
+	{Waters}, C.},
+    title = "{The First High-redshift Quasar from Pan-STARRS}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1109.6241},
+ keywords = {early Universe, quasars: individual: PSO J215.1512-16.0417, surveys},
+     year = 2012,
+    month = jun,
+   volume = 143,
+      eid = {142},
+    pages = {142},
+      doi = {10.1088/0004-6256/143/6/142},
+   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143..142M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{Farrow14,
+   author = {{Farrow}, D.~J. and {Cole}, S. and {Metcalfe}, N. and {Draper}, P.~W. and
+{Norberg}, P. and {Foucaud}, S. and {Burgett}, W.~S. and {Chambers}, K.~C. and
+{Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and
+{Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
+    title = "{Pan-STARRS1: Galaxy clustering in the Small Area Survey 2}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.6366},
+ primaryClass = "astro-ph.CO",
+ keywords = {methods: observational, surveys, large-scale structure of Universe},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {748-770},
+      doi = {10.1093/mnras/stt1933},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..748F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{Jian14,
+   author = {{Jian}, H.-Y. and {Lin}, L. and {Chiueh}, T. and {Lin}, K.-Y. and
+{Liu}, H.~B. and {Merson}, A. and {Baugh}, C. and {Huang}, J.-S. and
+{Chen}, C.-W. and {Foucaud}, S. and {Murphy}, D.~N.~A. and {Cole}, S. and
+{Burgett}, W. and {Kaiser}, N.},
+    title = "{Probability Friends-of-Friends (PFOF) Group Finder: Performance Study and Observational Data Applications on Photometric Surveys}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1305.1891},
+ keywords = {galaxies: clusters: general, galaxies: groups: general, large-scale structure of universe, methods: data analysis},
+     year = 2014,
+    month = jun,
+   volume = 788,
+      eid = {109},
+    pages = {109},
+      doi = {10.1088/0004-637X/788/2/109},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788..109J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{Lin14,
+   author = {{Lin}, L. and {Jian}, H.-Y. and {Foucaud}, S. and {Norberg}, P. and
+{Bower}, R.~G. and {Cole}, S. and {Arnalte-Mur}, P. and {Chen}, C.-W. and
+{Coupon}, J. and {Hsieh}, B.-C. and {Heinis}, S. and {Phleps}, S. and
+{Chen}, W.-P. and {Lee}, C.-H. and {Burgett}, W. and {Chambers}, K.~C. and
+{Denneau}, L. and {Draper}, P. and {Flewelling}, H. and {Hodapp}, K.~W. and
+{Huber}, M.~E. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and
+{Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and
+{Waters}, C.},
+    title = "{The Pan-STARRS1 Medium-Deep Survey: The Role of Galaxy Group Environment in the Star Formation Rate versus Stellar Mass Relation and Quiescent Fraction out to z \~{} 0.8}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1312.4736},
+ keywords = {galaxies: evolution, galaxies: groups: general, galaxies: high-redshift, large-scale structure of universe},
+     year = 2014,
+    month = feb,
+   volume = 782,
+      eid = {33},
+    pages = {33},
+      doi = {10.1088/0004-637X/782/1/33},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...782...33L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{Liu15,
+   author = {{Liu}, J. and {Hennig}, C. and {Desai}, S. and {Hoyle}, B. and
+{Koppenhoefer}, J. and {Mohr}, J.~J. and {Paech}, K. and {Burgett}, W.~S. and
+{Chambers}, K.~C. and {Cole}, S. and {Draper}, P.~W. and {Kaiser}, N. and
+{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P.~A. and {Stubbs}, C.~W. and
+{Tonry}, J.~L. and {Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Optical confirmation and redshift estimation of the Planck cluster candidates overlapping the Pan-STARRS Survey}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1407.6001},
+ keywords = {catalogues, galaxies: clusters: general, large-scale structure of Universe},
+     year = 2015,
+    month = jun,
+   volume = 449,
+    pages = {3370-3380},
+      doi = {10.1093/mnras/stv458},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.3370L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{Szapudi15,
+   author = {{Szapudi}, I. and {Kov{\'a}cs}, A. and {Granett}, B.~R. and
+{Frei}, Z. and {Silk}, J. and {Burgett}, W. and {Cole}, S. and
+{Draper}, P.~W. and {Farrow}, D.~J. and {Kaiser}, N. and {Magnier}, E.~A. and
+{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P. and {Tonry}, J. and
+{Wainscoat}, R.},
+    title = "{Detection of a supervoid aligned with the cold spot of the cosmic microwave background}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1405.1566},
+ keywords = {surveys, cosmic background radiation, cosmology: observations, large-scale structure of Universe},
+     year = 2015,
+    month = jun,
+   volume = 450,
+    pages = {288-294},
+      doi = {10.1093/mnras/stv488},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.450..288S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{theprizepaper,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{Observation of Gravitational Waves from a Binary Black Hole Merger}",
+  journal = {Physical Review Letters},
+archivePrefix = "arXiv",
+   eprint = {1602.03837},
+ primaryClass = "gr-qc",
+     year = 2016,
+    month = jan,
+   volume = 116,
+   number = 6,
+      eid = {061102},
+    pages = {061102},
+      doi = {10.1103/PhysRevLett.116.061102},
+   adsurl = {http://adsabs.harvard.edu/abs/2016PhRvL.116f1102A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{gw151226,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{GW151226}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {8888.99999},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
+     year = 2016,
+    month = jun,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016ApJ...818L..22A,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{Astrophysical Implications of the Binary Black Hole Merger GW150914}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1602.03846},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, stars: black holes, stars: massive},
+     year = 2016,
+    month = feb,
+   volume = 818,
+      eid = {L22},
+    pages = {L22},
+      doi = {10.3847/2041-8205/818/2/L22},
+   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...818L..22A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160203842A,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{The Rate of Binary Black Hole Mergers Inferred from Advanced LIGO Observations Surrounding GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.03842},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016arXiv160208492A,
+   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
+	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
+	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
+    title = "{Localization and broadband follow-up of the gravitational-wave transient GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.08492},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160208492A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160203840T,
+   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaboration}
+	},
+    title = "{Properties of the binary black hole merger GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.03840},
+ primaryClass = "gr-qc",
+ keywords = {General Relativity and Quantum Cosmology, Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203840T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2016arXiv160400439T,
+   author = {{The LIGO Scientific Collaboration} and {Martynov}, D.~V. and 
+	{Hall}, E.~D. and {Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and 
+	{Abernathy}, M.~R. and {Ackley}, K. and {Adams}, C. and {Addesso}, P. and et al.},
+    title = "{The Sensitivity of the Advanced LIGO Detectors at the Beginning of Gravitational Wave Astronomy}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1604.00439},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Physics - Instrumentation and Detectors},
+     year = 2016,
+    month = apr,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160400439T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160203920C,
+   author = {{Connaughton}, V. and {Burns}, E. and {Goldstein}, A. and {Briggs}, M.~S. and 
+	{Zhang}, B.-B. and {Hui}, C.~M. and {Jenke}, P. and {Racusin}, J. and 
+	{Wilson-Hodge}, C.~A. and {Bhat}, P.~N. and {Bissaldi}, E. and 
+	{Cleveland}, W. and {Fitzpatrick}, G. and {Giles}, M.~M. and 
+	{Gibby}, M.~H. and {Greiner}, J. and {von Kienlin}, A. and {Kippen}, R.~M. and 
+	{McBreen}, S. and {Mailyan}, B. and {Meegan}, C.~A. and {Paciesas}, W.~S. and 
+	{Preece}, R.~D. and {Roberts}, O. and {Sparke}, L. and {Stanbro}, M. and 
+	{Toelge}, K. and {Veres}, P. and {Yu}, H.-F. and {authors}, o.
+	},
+    title = "{Fermi GBM Observations of LIGO Gravitational Wave event GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.03920},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203920C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014A&A...571A..16P,
+   author = {{Planck Collaboration} and {Ade}, P.~A.~R. and {Aghanim}, N. and 
+	{Armitage-Caplan}, C. and {Arnaud}, M. and {Ashdown}, M. and 
+	{Atrio-Barandela}, F. and {Aumont}, J. and {Baccigalupi}, C. and 
+	{Banday}, A.~J. and et al.},
+    title = "{Planck 2013 results. XVI. Cosmological parameters}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1303.5076},
+ keywords = {cosmic background radiation, cosmological parameters, early Universe, inflation, primordial nucleosynthesis},
+     year = 2014,
+    month = nov,
+   volume = 571,
+      eid = {A16},
+    pages = {A16},
+      doi = {10.1051/0004-6361/201321591},
+   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...571A..16P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2010CQGra..27q3001A,
+   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abernathy}, M. and 
+	{Accadia}, T. and {Acernese}, F. and {Adams}, C. and {Adhikari}, R. and 
+	{Ajith}, P. and {Allen}, B. and et al.},
+    title = "{TOPICAL REVIEW:  Predictions for the rates of compact binary coalescences observable by ground-based gravitational-wave detectors}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1003.2480},
+ primaryClass = "astro-ph.HE",
+     year = 2010,
+    month = sep,
+   volume = 27,
+   number = 17,
+      eid = {173001},
+    pages = {173001},
+      doi = {10.1088/0264-9381/27/17/173001},
+   adsurl = {http://adsabs.harvard.edu/abs/2010CQGra..27q3001A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...555..900P,
+   author = {{Patat}, F. and {Cappellaro}, E. and {Danziger}, J. and {Mazzali}, P.~A. and 
+	{Sollerman}, J. and {Augusteijn}, T. and {Brewer}, J. and {Doublier}, V. and 
+	{Gonzalez}, J.~F. and {Hainaut}, O. and {Lidman}, C. and {Leibundgut}, B. and 
+	{Nomoto}, K. and {Nakamura}, T. and {Spyromilio}, J. and {Rizzi}, L. and 
+	{Turatto}, M. and {Walsh}, J. and {Galama}, T.~J. and {van Paradijs}, J. and 
+	{Kouveliotou}, C. and {Vreeswijk}, P.~M. and {Frontera}, F. and 
+	{Masetti}, N. and {Palazzi}, E. and {Pian}, E.},
+    title = "{The Metamorphosis of SN 1998bw}",
+  journal = {\apj},
+   eprint = {astro-ph/0103111},
+ keywords = {Gamma Rays: Bursts, Stars: Supernovae: General, supernovae: individual (SN 1998bw)},
+     year = 2001,
+    month = jul,
+   volume = 555,
+    pages = {900-917},
+      doi = {10.1086/321526},
+   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...555..900P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1998Natur.395..670G,
+   author = {{Galama}, T.~J. and {Vreeswijk}, P.~M. and {van Paradijs}, J. and 
+	{Kouveliotou}, C. and {Augusteijn}, T. and {B{\"o}hnhardt}, H. and 
+	{Brewer}, J.~P. and {Doublier}, V. and {Gonzalez}, J.-F. and 
+	{Leibundgut}, B. and {Lidman}, C. and {Hainaut}, O.~R. and {Patat}, F. and 
+	{Heise}, J. and {in't Zand}, J. and {Hurley}, K. and {Groot}, P.~J. and 
+	{Strom}, R.~G. and {Mazzali}, P.~A. and {Iwamoto}, K. and {Nomoto}, K. and 
+	{Umeda}, H. and {Nakamura}, T. and {Young}, T.~R. and {Suzuki}, T. and 
+	{Shigeyama}, T. and {Koshut}, T. and {Kippen}, M. and {Robinson}, C. and 
+	{de Wildt}, P. and {Wijers}, R.~A.~M.~J. and {Tanvir}, N. and 
+	{Greiner}, J. and {Pian}, E. and {Palazzi}, E. and {Frontera}, F. and 
+	{Masetti}, N. and {Nicastro}, L. and {Feroci}, M. and {Costa}, E. and 
+	{Piro}, L. and {Peterson}, B.~A. and {Tinney}, C. and {Boyle}, B. and 
+	{Cannon}, R. and {Stathakis}, R. and {Sadler}, E. and {Begam}, M.~C. and 
+	{Ianna}, P.},
+    title = "{An unusual supernova in the error box of the {$\gamma$}-ray burst of 25 April 1998}",
+  journal = {\nat},
+   eprint = {astro-ph/9806175},
+     year = 1998,
+    month = oct,
+   volume = 395,
+    pages = {670-672},
+      doi = {10.1038/27150},
+   adsurl = {http://adsabs.harvard.edu/abs/1998Natur.395..670G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016ApJ...819L..21L,
+   author = {{Loeb}, A.},
+    title = "{Electromagnetic Counterparts to Black Hole Mergers Detected by LIGO}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1602.04735},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves},
+     year = 2016,
+    month = mar,
+   volume = 819,
+      eid = {L21},
+    pages = {L21},
+      doi = {10.3847/2041-8205/819/2/L21},
+   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...819L..21L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160300511W,
+   author = {{Woosley}, S.~E.},
+    title = "{The Progenitor of GW 150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1603.00511},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2016,
+    month = mar,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160300511W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2016JCAP...03..031L,
+   author = {{Lombriser}, L. and {Taylor}, A.},
+    title = "{Breaking a dark degeneracy with gravitational waves}",
+  journal = {J. Cosmol. Astropart. Phys.},
+archivePrefix = "arXiv",
+   eprint = {1509.08458},
+     year = 2016,
+    month = mar,
+   volume = 3,
+      eid = {031},
+    pages = {031},
+      doi = {10.1088/1475-7516/2016/03/031},
+   adsurl = {http://adsabs.harvard.edu/abs/2016JCAP...03..031L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160204156S,
+   author = {{Smartt}, S.~J. and {Chambers}, K.~C. and {Smith}, K.~W. and 
+	{Huber}, M.~E. and {Young}, D.~R. and {Cappellaro}, E. and {Wright}, D.~E. and 
+	{Coughlin}, M. and {Schultz}, A.~S.~B. and {Denneau}, L. and 
+	{Flewelling}, H. and {Heinze}, A. and {Magnier}, E.~A. and {Primak}, N. and 
+	{Rest}, A. and {Sherstyuk}, A. and {Stalder}, B. and {Stubbs}, C.~W. and 
+	{Tonry}, J. and {Waters}, C. and {Willman}, M. and {Anderson}, J.~P. and 
+	{Baltay}, C. and {Botticella}, M.~T. and {Campbell}, H. and 
+	{Dennefeld}, M. and {Chen}, T.-W. and {Della Valle}, M. and 
+	{Elias-Rosa}, N. and {Fraser}, M. and {Inserra}, C. and {Kankare}, E. and 
+	{Kotak}, R. and {Kupfer}, T. and {Harmanen}, J. and {Galbany}, L. and 
+	{Gal-Yam}, A. and {Guillou}, L.~L. and {Lyman}, J.~D. and {Maguire}, K. and 
+	{Mitra}, A. and {Nicholl}, M. and {Olivares E}, F. and {Rabinowitz}, D. and 
+	{Razza}, A. and {Sollerman}, J. and {Smith}, M. and {Terreran}, G. and 
+	{Valenti}, S.},
+    title = "{Pan-STARRS and PESSTO search for the optical counterpart to the LIGO gravitational wave source GW150914}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.04156},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160204156S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+  
+@ARTICLE{GCN18330,
+   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaborations}
+	},    title = "{GCN18330}",
+  journal = {GRB Coordinates Network},
+     year = 2015,
+   volume = 18330,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18858,
+   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaboration}
+	},
+    title = "{GCN18858}",
+  journal = {GRB Coordinates Network},
+     year = 2015,
+   volume = 18858,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18371,
+   author = {{Steele}, I.~S. and {Copperwheat}, C.M. and {Piascik}, A.S.},
+    title = "{GCN18371}",
+  journal = {GRB Coordinates Network},
+     year = 2015,
+   volume = 18371,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{GCN18811,
+   author = {{Chambers}, K.~C. and {Chen}, T.W. and {Smartt}, S.J. and et al..},
+    title = "{18811}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18811,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18762,
+   author = {{Cenko}, S.~B. and {Cao}, Y. and {Ferretti}, R and et al..},
+    title = "{18762}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18804,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18848,
+   author = {{Cenko}, S.~B. and {Kasliwal}, M. and {Singer}, L.P. and et al..},
+    title = "{18848}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18848,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{GCN18804,
+   author = {{Lipunov}, V. and {Gorbovskoy}, E. and {Tyurina}, N and et al..},
+    title = "{18804}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18804,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18806,
+   author = {{Frohmaier}, C. and {Dimitriadis}, G. and {Firth}, R. and et al..},
+    title = "{18806}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18806,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18807,
+   author = {{Copperwheat}, C.~M. and {Steele}, I.S. and  et al..},
+    title = "{18807}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18806,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN18791,
+   author = {{Copperwheat}, C.~M. and {Steele}, I.S. and  et al..},
+    title = "{18791}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18791,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{GCN18868,
+   author = {{D'Avanzo}, P. and {Melandri}, A. and  et al..},
+    title = "{18868}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18868,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN19145,
+   author = {{Palazzi}, P. and {Cappellaro}, E. and  et al..},
+    title = "{19145}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 19145,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{GCN19258,
+   author = {{Castro-Tirado}, P. and {Caballero-Garcia}, E. and  et al..},
+    title = "{19258}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 19258,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{GCN18873,
+   author = {{Corsi}, A. and {Palliyaguru}, N.},
+    title = "{18873}",
+  journal = {GRB Coordinates Network},
+     year = 2016,
+   volume = 18873,
+   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+
+}
+
+
+@ARTICLE{2015ATel.8239....1K,
+   author = {{Kilpatrick}, C. and {Andrews}, J. and {Smith}, N. and {Milne}, P.
+	},
+    title = "{Spectroscopic Classification of ASASSN-15rw as a Type Ia}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae, Transient},
+     year = 2015,
+    month = nov,
+   volume = 8239,
+   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.8239....1K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016ATel.8506....1P,
+   author = {{Pan}, Y.-C. and {Downing}, S. and {Foley}, R.~J. and {Jha}, S.~W. and 
+	{Rest}, A. and {Scolnic}, D.},
+    title = "{Spectroscopic Classifications of Optical Transients with Mayall/KOSMOS}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae, Transient},
+     year = 2016,
+    month = jan,
+   volume = 8506,
+   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8506....1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016ATel.8526....1S,
+   author = {{Seibert}, M. and {Shappee}, B.~J. and {Prieto}, J.~L. and {Dong}, S.
+	},
+    title = "{Spectroscopic Classification of ASASSN-15un as a Type II SN}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae},
+     year = 2016,
+    month = jan,
+   volume = 8526,
+   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8526....1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2016ATel.8680....1T,
+   author = {{Tonry}, J. and {Denneau}, L. and {Stalder}, B. and {Heinze}, A. and 
+	{Sherstyuk}, A. and {Rest}, A. and {Smith}, K.~W. and {Smartt}, S.~J.
+	},
+    title = "{Discovery and Classification of 3 Type Supernovae by ATLAS}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae, Transient},
+     year = 2016,
+    month = feb,
+   volume = 8680,
+   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8680....1T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160405205C,
+   author = {{Coughlin}, M.~W. and {Stubbs}, C.~W.},
+    title = "{Maximizing the Probability of Detecting an Electromagnetic Counterpart of Gravitational-wave Events}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1604.05205},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
+     year = 2016,
+    month = apr,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160405205C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015NatCo...6E7323Y,
+   author = {{Yang}, B. and {Jin}, Z.-P. and {Li}, X. and {Covino}, S. and 
+	{Zheng}, X.-Z. and {Hotokezaka}, K. and {Fan}, Y.-Z. and {Piran}, T. and 
+	{Wei}, D.-M.},
+    title = "{A possible macronova in the late afterglow of the long-short burst GRB 060614}",
+  journal = {Nature Communications},
+archivePrefix = "arXiv",
+   eprint = {1503.07761},
+ primaryClass = "astro-ph.HE",
+     year = 2015,
+    month = jun,
+   volume = 6,
+      eid = {7323},
+    pages = {7323},
+      doi = {10.1038/ncomms8323},
+   adsurl = {http://adsabs.harvard.edu/abs/2015NatCo...6E7323Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016PhRvD..93b4013S,
+   author = {{Singer}, L.~P. and {Price}, L.~R.},
+    title = "{Rapid Bayesian position reconstruction for gravitational-wave transients}",
+  journal = {\prd},
+archivePrefix = "arXiv",
+   eprint = {1508.03634},
+ primaryClass = "gr-qc",
+     year = 2016,
+    month = jan,
+   volume = 93,
+   number = 2,
+      eid = {024013},
+    pages = {024013},
+      doi = {10.1103/PhysRevD.93.024013},
+   adsurl = {http://adsabs.harvard.edu/abs/2016PhRvD..93b4013S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...775..113T,
+   author = {{Tanaka}, M. and {Hotokezaka}, K.},
+    title = "{Radiative Transfer Simulations of Neutron Star Merger Ejecta}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1306.3742},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer, supernovae: general},
+     year = 2013,
+    month = oct,
+   volume = 775,
+      eid = {113},
+    pages = {113},
+      doi = {10.1088/0004-637X/775/2/113},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775..113T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ARep...51..308B,
+   author = {{Bogomazov}, A.~I. and {Lipunov}, V.~M. and {Tutukov}, A.~V.
+	},
+    title = "{Evolution of close binaries and gamma-ray bursts}",
+  journal = {Astronomy Reports},
+   eprint = {astro-ph/0607329},
+ keywords = {97.80.Fk, 97.10.Cv, 98.70.Rz},
+     year = 2007,
+    month = apr,
+   volume = 51,
+    pages = {308-317},
+      doi = {10.1134/S1063772907040063},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ARep...51..308B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...780...31T,
+   author = {{Tanaka}, M. and {Hotokezaka}, K. and {Kyutoku}, K. and {Wanajo}, S. and 
+	{Kiuchi}, K. and {Sekiguchi}, Y. and {Shibata}, M.},
+    title = "{Radioactively Powered Emission from Black Hole-Neutron Star Mergers}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.2774},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer },
+     year = 2014,
+    month = jan,
+   volume = 780,
+      eid = {31},
+    pages = {31},
+      doi = {10.1088/0004-637X/780/1/31},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...31T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.443..671G,
+   author = {{Gorbikov}, E. and {Gal-Yam}, A. and {Ofek}, E.~O. and {Vreeswijk}, P.~M. and 
+	{Nugent}, P.~E. and {Chotard}, N. and {Kulkarni}, S.~R. and 
+	{Cao}, Y. and {De Cia}, A. and {Yaron}, O. and {Tal}, D. and 
+	{Arcavi}, I. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and {Sullivan}, M. and 
+	{Chen}, J.},
+    title = "{iPTF13beo: the double-peaked light curve of a Type Ibn supernova discovered shortly after explosion}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1312.0012},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: iPTF13beo, stars: winds, outflows, stars: Wolf-Rayet},
+     year = 2014,
+    month = sep,
+   volume = 443,
+    pages = {671-677},
+      doi = {10.1093/mnras/stu1184},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.443..671G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010Natur.463..513S,
+   author = {{Soderberg}, A.~M. and {Chakraborti}, S. and {Pignata}, G. and 
+	{Chevalier}, R.~A. and {Chandra}, P. and {Ray}, A. and {Wieringa}, M.~H. and 
+	{Copete}, A. and {Chaplin}, V. and {Connaughton}, V. and {Barthelmy}, S.~D. and 
+	{Bietenholz}, M.~F. and {Chugai}, N. and {Stritzinger}, M.~D. and 
+	{Hamuy}, M. and {Fransson}, C. and {Fox}, O. and {Levesque}, E.~M. and 
+	{Grindlay}, J.~E. and {Challis}, P. and {Foley}, R.~J. and {Kirshner}, R.~P. and 
+	{Milne}, P.~A. and {Torres}, M.~A.~P.},
+    title = "{A relativistic type Ibc supernova without a detected {$\gamma$}-ray burst}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0908.2817},
+ primaryClass = "astro-ph.HE",
+     year = 2010,
+    month = jan,
+   volume = 463,
+    pages = {513-515},
+      doi = {10.1038/nature08714},
+   adsurl = {http://adsabs.harvard.edu/abs/2010Natur.463..513S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160401226I,
+   author = {{Inserra}, C. and {Smartt}, S.~J. and {Gall}, E.~E.~E. and {Leloudas}, G. and 
+	{Chen}, T.-W. and {Schulze}, S. and {Jerkstarnd}, A. and {Nicholl}, M. and 
+	{Anderson}, J.~P. and {Arcavi}, I. and {Benetti}, S. and {Cartier}, R.~A. and 
+	{Childress}, M. and {Della Valle}, M. and {Flewelling}, H. and 
+	{Fraser}, M. and {Gal-Yam}, A. and {Gutierrez}, C.~P. and {Hosseinzadeh}, G. and 
+	{Howell}, D.~A. and {Huber}, M. and {Kankare}, E. and {Magnier}, E.~A. and 
+	{Maguire}, K. and {McCully}, C. and {Prajs}, S. and {Primak}, N. and 
+	{Scalzo}, R. and {Schmidt}, B.~P. and {Smith}, K.~W. and {Tucker}, B.~E. and 
+	{Valenti}, S. and {Wilman}, M. and {Young}, D.~R. and {Yuan}, F.
+	},
+    title = "{On the nature of Hydrogen-rich Superluminous Supernovae}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1604.01226},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
+     year = 2016,
+    month = apr,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160401226I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015ApJ...811L..22J,
+   author = {{Jin}, Z.-P. and {Li}, X. and {Cano}, Z. and {Covino}, S. and 
+	{Fan}, Y.-Z. and {Wei}, D.-M.},
+    title = "{The Light Curve of the Macronova Associated with the Long-Short Burst GRB 060614}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1507.07206},
+ primaryClass = "astro-ph.HE",
+ keywords = {binaries: general, gamma-ray burst: individual: GRB 060614, radiation mechanisms: thermal, stars: neutron},
+     year = 2015,
+    month = oct,
+   volume = 811,
+      eid = {L22},
+    pages = {L22},
+      doi = {10.1088/2041-8205/811/2/L22},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...811L..22J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010MNRAS.403L..41C,
+   author = {{Crowther}, P.~A. and {Barnard}, R. and {Carpano}, S. and {Clark}, J.~S. and 
+	{Dhillon}, V.~S. and {Pollock}, A.~M.~T.},
+    title = "{NGC 300 X-1 is a Wolf-Rayet/black hole binary}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1001.4616},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: Wolf-Rayet, galaxies: individual: NGC 300, X-rays: binaries, X-rays: individual: NGC 300 X-1},
+     year = 2010,
+    month = mar,
+   volume = 403,
+    pages = {L41-L45},
+      doi = {10.1111/j.1745-3933.2010.00811.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.403L..41C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...669L..21P,
+   author = {{Prestwich}, A.~H. and {Kilgard}, R. and {Crowther}, P.~A. and 
+	{Carpano}, S. and {Pollock}, A.~M.~T. and {Zezas}, A. and {Saar}, S.~H. and 
+	{Roberts}, T.~P. and {Ward}, M.~J.},
+    title = "{The Orbital Period of the Wolf-Rayet Binary IC 10 X-1: Dynamic Evidence that the Compact Object Is a Black Hole}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0709.2892},
+ keywords = {Galaxies: Starburst, Stars: Wolf-Rayet, X-Rays: Binaries, X-Rays: Galaxies},
+     year = 2007,
+    month = nov,
+   volume = 669,
+    pages = {L21-L24},
+      doi = {10.1086/523755},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...669L..21P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...657L.105F,
+   author = {{Foley}, R.~J. and {Smith}, N. and {Ganeshalingam}, M. and {Li}, W. and 
+	{Chornock}, R. and {Filippenko}, A.~V.},
+    title = "{SN 2006jc: A Wolf-Rayet Star Exploding in a Dense He-rich Circumstellar Medium}",
+  journal = {\apjl},
+   eprint = {astro-ph/0612711},
+ keywords = {Stars: Winds, Outflows, Stars: Wolf-Rayet, Stars: Supernovae: General, supernovae: individual (SN 1999cq), supernovae: individual (SN2002ao), supernovae: individual (SN 2006jc)},
+     year = 2007,
+    month = mar,
+   volume = 657,
+    pages = {L105-L108},
+      doi = {10.1086/513145},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...657L.105F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015MNRAS.449.1921P,
+   author = {{Pastorello}, A. and {Benetti}, S. and {Brown}, P.~J. and {Tsvetkov}, D.~Y. and 
+	{Inserra}, C. and {Taubenberger}, S. and {Tomasella}, L. and 
+	{Fraser}, M. and {Rich}, D.~J. and {Botticella}, M.~T. and {Bufano}, F. and 
+	{Cappellaro}, E. and {Ergon}, M. and {Gorbovskoy}, E.~S. and 
+	{Harutyunyan}, A. and {Huang}, F. and {Kotak}, R. and {Lipunov}, V.~M. and 
+	{Magill}, L. and {Miluzio}, M. and {Morrell}, N. and {Ochner}, P. and 
+	{Smartt}, S.~J. and {Sollerman}, J. and {Spiro}, S. and {Stritzinger}, M.~D. and 
+	{Turatto}, M. and {Valenti}, S. and {Wang}, X. and {Wright}, D.~E. and 
+	{Yurkov}, V.~V. and {Zampieri}, L. and {Zhang}, T.},
+    title = "{Massive stars exploding in a He-rich circumstellar medium - IV. Transitional Type Ibn supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1502.04946},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2010al, supernovae: individual: SN 2011hw, supernovae: individual: SN 2006jc, supernovae: individual: SN 2005la, supernovae: individual: SN 2000er},
+     year = 2015,
+    month = may,
+   volume = 449,
+    pages = {1921-1940},
+      doi = {10.1093/mnras/stu2745},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.1921P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007Natur.447..829P,
+   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
+	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
+	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
+	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
+	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
+	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
+	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
+	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
+	},
+    title = "{A giant outburst two years before the core-collapse of a massive star}",
+  journal = {\nat},
+   eprint = {astro-ph/0703663},
+     year = 2007,
+    month = jun,
+   volume = 447,
+    pages = {829-832},
+      doi = {10.1038/nature05825},
+   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.389..113P,
+   author = {{Pastorello}, A. and {Mattila}, S. and {Zampieri}, L. and {Della Valle}, M. and 
+	{Smartt}, S.~J. and {Valenti}, S. and {Agnoletto}, I. and {Benetti}, S. and 
+	{Benn}, C.~R. and {Branch}, D. and {Cappellaro}, E. and {Dennefeld}, M. and 
+	{Eldridge}, J.~J. and {Gal-Yam}, A. and {Harutyunyan}, A. and 
+	{Hunter}, I. and {Kjeldsen}, H. and {Lipkin}, Y. and {Mazzali}, P.~A. and 
+	{Milne}, P. and {Navasardyan}, H. and {Ofek}, E.~O. and {Pian}, E. and 
+	{Shemmer}, O. and {Spiro}, S. and {Stathakis}, R.~A. and {Taubenberger}, S. and 
+	{Turatto}, M. and {Yamaoka}, H.},
+    title = "{Massive stars exploding in a He-rich circumstellar medium - I. Type Ibn (SN 2006jc-like) events}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0801.2277},
+ keywords = {supernovae: general , supernovae: individual: SN 2006jc , supernovae: individual: SN 1999cq , supernovae: individual: SN 2000er , supernovae: individual: SN 2002ao , supernovae: individual: SN 1885A},
+     year = 2008,
+    month = sep,
+   volume = 389,
+    pages = {113-130},
+      doi = {10.1111/j.1365-2966.2008.13602.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..113P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2011PASP..123...58T,
+   author = {{Tonry}, J.~L.},
+    title = "{An Early Warning System for Asteroid Impact}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {1011.1028},
+ primaryClass = "astro-ph.IM",
+     year = 2011,
+    month = jan,
+   volume = 123,
+    pages = {58-73},
+      doi = {10.1086/657997},
+   adsurl = {http://adsabs.harvard.edu/abs/2011PASP..123...58T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015A&A...584A..62C,
+   author = {{Cappellaro}, E. and {Botticella}, M.~T. and {Pignata}, G. and 
+	{Grado}, A. and {Greggio}, L. and {Limatola}, L. and {Vaccari}, M. and 
+	{Baruffolo}, A. and {Benetti}, S. and {Bufano}, F. and {Capaccioli}, M. and 
+	{Cascone}, E. and {Covone}, G. and {De Cicco}, D. and {Falocco}, S. and 
+	{Della Valle}, M. and {Jarvis}, M. and {Marchetti}, L. and {Napolitano}, N.~R. and 
+	{Paolillo}, M. and {Pastorello}, A. and {Radovich}, M. and {Schipani}, P. and 
+	{Spiro}, S. and {Tomasella}, L. and {Turatto}, M.},
+    title = "{Supernova rates from the SUDARE VST-OmegaCAM search. I. Rates per unit volume}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1509.04496},
+ keywords = {supernovae: general, galaxies: star formation, Galaxy: stellar content, surveys},
+     year = 2015,
+    month = dec,
+   volume = 584,
+      eid = {A62},
+    pages = {A62},
+      doi = {10.1051/0004-6361/201526712},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...584A..62C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+
+
+@ARTICLE{2009MNRAS.397..677T,
+   author = {{Taubenberger}, S. and {Valenti}, S. and {Benetti}, S. and {Cappellaro}, E. and 
+	{Della Valle}, M. and {Elias-Rosa}, N. and {Hachinger}, S. and 
+	{Hillebrandt}, W. and {Maeda}, K. and {Mazzali}, P.~A. and {Pastorello}, A. and 
+	{Patat}, F. and {Sim}, S.~A. and {Turatto}, M.},
+    title = "{Nebular emission-line profiles of Type Ib/c supernovae - probing the ejecta asphericity}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0904.4632},
+ keywords = {line: profiles , techniques: spectroscopic , supernovae: general},
+     year = 2009,
+    month = aug,
+   volume = 397,
+    pages = {677-694},
+      doi = {10.1111/j.1365-2966.2009.15003.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.397..677T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008Sci...319.1220M,
+   author = {{Maeda}, K. and {Kawabata}, K. and {Mazzali}, P.~A. and {Tanaka}, M. and 
+	{Valenti}, S. and {Nomoto}, K. and {Hattori}, T. and {Deng}, J. and 
+	{Pian}, E. and {Taubenberger}, S. and {Iye}, M. and {Matheson}, T. and 
+	{Filippenko}, A.~V. and {Aoki}, K. and {Kosugi}, G. and {Ohyama}, Y. and 
+	{Sasaki}, T. and {Takata}, T.},
+    title = "{Asphericity in Supernova Explosions from Late-Time Spectroscopy}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {0801.1100},
+     year = 2008,
+    month = feb,
+   volume = 319,
+    pages = {1220},
+      doi = {10.1126/science.1149437},
+   adsurl = {http://adsabs.harvard.edu/abs/2008Sci...319.1220M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2012ApJ...761...63P,
+   author = {{Piro}, A.~L. and {Thrane}, E.},
+    title = "{Gravitational Waves from Fallback Accretion onto Neutron Stars}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1207.3805},
+ primaryClass = "astro-ph.HE",
+ keywords = {black hole physics, gravitational waves, stars: neutron, supernovae: general },
+     year = 2012,
+    month = dec,
+   volume = 761,
+      eid = {63},
+    pages = {63},
+      doi = {10.1088/0004-637X/761/1/63},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...761...63P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015arXiv151201214F,
+   author = {{Finkbeiner}, D.~P. and {Schlafly}, E.~F. and {Schlegel}, D.~J. and 
+	{Padmanabhan}, N. and {Juric}, M. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Denneau}, L. and {Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and {Morgan}, J.~S. and 
+	{Price}, P.~A. and {Stubbs}, C.~W. and {Tonry}, J.~L.},
+    title = "{Hypercalibration: A Pan-STARRS1-based recalibration of the Sloan Digital Sky Survey}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1512.01214},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
+     year = 2015,
+    month = dec,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151201214F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015ApJ...806...52S,
+   author = {{Singer}, L.~P. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and 
+	{Perley}, D.~A. and {Anderson}, G.~E. and {Anupama}, G.~C. and 
+	{Arcavi}, I. and {Bhalerao}, V. and {Bue}, B.~D. and {Cao}, Y. and 
+	{Connaughton}, V. and {Corsi}, A. and {Cucchiara}, A. and {Fender}, R.~P. and 
+	{Fox}, D.~B. and {Gehrels}, N. and {Goldstein}, A. and {Gorosabel}, J. and 
+	{Horesh}, A. and {Hurley}, K. and {Johansson}, J. and {Kann}, D.~A. and 
+	{Kouveliotou}, C. and {Huang}, K. and {Kulkarni}, S.~R. and 
+	{Masci}, F. and {Nugent}, P. and {Rau}, A. and {Rebbapragada}, U.~D. and 
+	{Staley}, T.~D. and {Svinkin}, D. and {Th{\"o}ne}, C.~C. and 
+	{de Ugarte Postigo}, A. and {Urata}, Y. and {Weinstein}, A.},
+    title = "{The Needle in the 100 deg$^{2}$ Haystack: Uncovering Afterglows of Fermi GRBs with the Palomar Transient Factory}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1501.00495},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: individual: GRB 130702A, GRB 140606B, gravitational waves, methods: observational, supernovae: general, surveys},
+     year = 2015,
+    month = jun,
+   volume = 806,
+      eid = {52},
+    pages = {52},
+      doi = {10.1088/0004-637X/806/1/52},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...806...52S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016arXiv160201736P,
+   author = {{Prentice}, S.~J. and {Mazzali}, P.~A. and {Pian}, E. and {Gal-Yam}, A. and 
+	{Kulkarni}, S.~R. and {Rubin}, A. and {Corsi}, A. and {Fremling}, C. and 
+	{Sollerman}, J. and {Yaron}, O. and {Arcavi}, I. and {Zheng}, W. and 
+	{Kasliwal}, M.~M. and {Filippenko}, V.~V. and {Cenko}, S.~B. and 
+	{Cao}, Y. and {Nugent}, P.},
+    title = "{The bolometric light curves and physical parameters of stripped-envelope supernovae}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1602.01736},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2016,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160201736P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015arXiv151200733R,
+   author = {{Rubin}, A. and {Gal-Yam}, A. and {De Cia}, A. and {Horesh}, A. and 
+	{Khazov}, D. and {Ofek}, E.~O. and {Kulkarni}, S.~R. and {Arcavi}, I. and 
+	{Manulis}, I. and {Yaron}, O. and {Vreeswijk}, P. and {Kasliwal}, M.~M. and 
+	{Ben-Ami}, S. and {Perley}, D.~A. and {Cao}, Y. and {Cenko}, S.~B. and 
+	{Rebbapragada}, U.~D. and {Wo{\'z}niak}, P.~R. and {Filippenko}, A.~V. and 
+	{Clubb}, K.~I. and {Nugent}, P.~E. and {Pan}, Y.-C. and {Badenes}, C. and 
+	{Howell}, D.~A. and {Valenti}, S. and {Sand}, D. and {Sollerman}, J. and 
+	{Johansson}, J. and {Leonard}, D.~C. and {Horst}, J.~C. and 
+	{Armen}, S.~F. and {Fedrow}, J.~M. and {Quimby}, R.~M. and {Mazzali}, P. and 
+	{Pian}, E. and {Sternberg}, A. and {Matheson}, T. and {Sullivan}, M. and 
+	{Maguire}, K. and {Lazarevic}, S.},
+    title = "{Type II supernova energetics and comparison of light curves to shock-cooling models}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1512.00733},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Cosmology and Nongalactic Astrophysics},
+     year = 2015,
+    month = nov,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151200733R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006ApJ...650..510A,
+   author = {{Aldering}, G. and {Antilogus}, P. and {Bailey}, S. and {Baltay}, C. and 
+	{Bauer}, A. and {Blanc}, N. and {Bongard}, S. and {Copin}, Y. and 
+	{Gangler}, E. and {Gilles}, S. and {Kessler}, R. and {Kocevski}, D. and 
+	{Lee}, B.~C. and {Loken}, S. and {Nugent}, P. and {Pain}, R. and 
+	{P{\'e}contal}, E. and {Pereira}, R. and {Perlmutter}, S. and 
+	{Rabinowitz}, D. and {Rigaudier}, G. and {Scalzo}, R. and {Smadja}, G. and 
+	{Thomas}, R.~C. and {Wang}, L. and {Weaver}, B.~A. and {Nearby Supernova Factory}
+	},
+    title = "{Nearby Supernova Factory Observations of SN 2005gj: Another Type Ia Supernova in a Massive Circumstellar Envelope}",
+  journal = {\apj},
+   eprint = {astro-ph/0606499},
+ keywords = {Galaxies: Abundances, Stars: Winds, Outflows, Stars: Supernovae: General, supernovae: individual (SN 2005gj), Stars: Supernovae: Individual: Alphanumeric: SN 2002ic},
+     year = 2006,
+    month = oct,
+   volume = 650,
+    pages = {510-527},
+      doi = {10.1086/507020},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...650..510A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2001MNRAS.326...23B,
+   author = {{Bacon}, R. and {Copin}, Y. and {Monnet}, G. and {Miller}, B.~W. and 
+	{Allington-Smith}, J.~R. and {Bureau}, M. and {Carollo}, C.~M. and 
+	{Davies}, R.~L. and {Emsellem}, E. and {Kuntschner}, H. and 
+	{Peletier}, R.~F. and {Verolme}, E.~K. and {de Zeeuw}, P.~T.
+	},
+    title = "{The SAURON project - I. The panoramic integral-field spectrograph}",
+  journal = {\mnras},
+   eprint = {astro-ph/0103451},
+ keywords = {INSTRUMENTATION: SPECTROGRAPHS, GALAXIES: ELLIPTICAL AND LENTICULAR, CD, GALAXIES: INDIVIDUAL: NGC 3377, GALAXIES: KINEMATICS AND DYNAMICS, GALAXIES: SPIRAL, GALAXIES: STELLAR CONTENT},
+     year = 2001,
+    month = sep,
+   volume = 326,
+    pages = {23-35},
+      doi = {10.1046/j.1365-8711.2001.04612.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.326...23B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...775..113T,
+   author = {{Tanaka}, M. and {Hotokezaka}, K.},
+    title = "{Radiative Transfer Simulations of Neutron Star Merger Ejecta}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1306.3742},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer, supernovae: general},
+     year = 2013,
+    month = oct,
+   volume = 775,
+      eid = {113},
+    pages = {113},
+      doi = {10.1088/0004-637X/775/2/113},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775..113T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...780...31T,
+   author = {{Tanaka}, M. and {Hotokezaka}, K. and {Kyutoku}, K. and {Wanajo}, S. and 
+	{Kiuchi}, K. and {Sekiguchi}, Y. and {Shibata}, M.},
+    title = "{Radioactively Powered Emission from Black Hole-Neutron Star Mergers}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.2774},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer },
+     year = 2014,
+    month = jan,
+   volume = 780,
+      eid = {31},
+    pages = {31},
+      doi = {10.1088/0004-637X/780/1/31},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...31T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015MNRAS.450.1777K,
+   author = {{Kasen}, D. and {Fern{\'a}ndez}, R. and {Metzger}, B.~D.},
+    title = "{Kilonova light curves from the disc wind outflows of compact object mergers}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1411.3726},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, hydrodynamics, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, gamma-ray burst: general},
+     year = 2015,
+    month = jun,
+   volume = 450,
+    pages = {1777-1786},
+      doi = {10.1093/mnras/stv721},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.450.1777K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015MNRAS.452.3869N,
+   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
+	{Sim}, S.~A. and {Chen}, T.-W. and {Benetti}, S. and {Fraser}, M. and 
+	{Gal-Yam}, A. and {Kankare}, E. and {Maguire}, K. and {Smith}, K. and 
+	{Sullivan}, M. and {Valenti}, S. and {Young}, D.~R. and {Baltay}, C. and 
+	{Bauer}, F.~E. and {Baumont}, S. and {Bersier}, D. and {Botticella}, M.-T. and 
+	{Childress}, M. and {Dennefeld}, M. and {Della Valle}, M. and 
+	{Elias-Rosa}, N. and {Feindt}, U. and {Galbany}, L. and {Hadjiyska}, E. and 
+	{Le Guillou}, L. and {Leloudas}, G. and {Mazzali}, P. and {McKinnon}, R. and 
+	{Polshaw}, J. and {Rabinowitz}, D. and {Rostami}, S. and {Scalzo}, R. and 
+	{Schmidt}, B.~P. and {Schulze}, S. and {Sollerman}, J. and {Taddia}, F. and 
+	{Yuan}, F.},
+    title = "{On the diversity of superluminous supernovae: ejected mass as the dominant factor}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1503.03310},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: LSQ14bdq, supernovae: individual: LSQ14mo, supernovae: individual: SN 2013hx},
+     year = 2015,
+    month = oct,
+   volume = 452,
+    pages = {3869-3893},
+      doi = {10.1093/mnras/stv1522},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.452.3869N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015A&A...582A...3G,
+   author = {{Gall}, E.~E.~E. and {Polshaw}, J. and {Kotak}, R. and {Jerkstrand}, A. and 
+	{Leibundgut}, B. and {Rabinowitz}, D. and {Sollerman}, J. and 
+	{Sullivan}, M. and {Smartt}, S.~J. and {Anderson}, J.~P. and 
+	{Benetti}, S. and {Baltay}, C. and {Feindt}, U. and {Fraser}, M. and 
+	{Gonz{\'a}lez-Gait{\'a}n}, S. and {Inserra}, C. and {Maguire}, K. and 
+	{McKinnon}, R. and {Valenti}, S. and {Young}, D.},
+    title = "{A comparative study of Type II-P and II-L supernova rise times as exemplified by the case of LSQ13cuw}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1502.06034},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: LSQ13cuw, methods: analytical},
+     year = 2015,
+    month = oct,
+   volume = 582,
+      eid = {A3},
+    pages = {A3},
+      doi = {10.1051/0004-6361/201525868},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...582A...3G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.451.2212G,
+   author = {{Gonz{\'a}lez-Gait{\'a}n}, S. and {Tominaga}, N. and {Molina}, J. and 
+	{Galbany}, L. and {Bufano}, F. and {Anderson}, J.~P. and {Gutierrez}, C. and 
+	{F{\"o}rster}, F. and {Pignata}, G. and {Bersten}, M. and {Howell}, D.~A. and 
+	{Sullivan}, M. and {Carlberg}, R. and {de Jaeger}, T. and {Hamuy}, M. and 
+	{Baklanov}, P.~V. and {Blinnikov}, S.~I.},
+    title = "{The rise-time of Type II supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1505.02988},
+ primaryClass = "astro-ph.SR",
+ keywords = {supergiants, supernoave: general},
+     year = 2015,
+    month = aug,
+   volume = 451,
+    pages = {2212-2229},
+      doi = {10.1093/mnras/stv1097},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.451.2212G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2013A&A...555A.142I,
+   author = {{Inserra}, C. and {Pastorello}, A. and {Turatto}, M. and {Pumo}, M.~L. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Botticella}, M.~T. and 
+	{Bufano}, F. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
+	{Taubenberger}, S. and {Valenti}, S. and {Zampieri}, L.},
+    title = "{Moderately luminous Type II supernovae}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1210.1411},
+ keywords = {supernovae: general, supernovae: individual: SN 2009dd, supernovae: individual: SN 2007pk, supernovae: individual: SN 2010aj, supernovae: individual: SN 1995ad, supernovae: individual: SN 1996W},
+     year = 2013,
+    month = jul,
+   volume = 555,
+      eid = {A142},
+    pages = {A142},
+      doi = {10.1051/0004-6361/201220496},
+   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...555A.142I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...786...67A,
+   author = {{Anderson}, J.~P. and {Gonz{\'a}lez-Gait{\'a}n}, S. and {Hamuy}, M. and 
+	{Guti{\'e}rrez}, C.~P. and {Stritzinger}, M.~D. and {Olivares E.}, F. and 
+	{Phillips}, M.~M. and {Schulze}, S. and {Antezana}, R. and {Bolt}, L. and 
+	{Campillay}, A. and {Castell{\'o}n}, S. and {Contreras}, C. and 
+	{de Jaeger}, T. and {Folatelli}, G. and {F{\"o}rster}, F. and 
+	{Freedman}, W.~L. and {Gonz{\'a}lez}, L. and {Hsiao}, E. and 
+	{Krzemi{\'n}ski}, W. and {Krisciunas}, K. and {Maza}, J. and 
+	{McCarthy}, P. and {Morrell}, N.~I. and {Persson}, S.~E. and 
+	{Roth}, M. and {Salgado}, F. and {Suntzeff}, N.~B. and {Thomas-Osip}, J.
+	},
+    title = "{Characterizing the V-band Light-curves of Hydrogen-rich Type II Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1403.7091},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general},
+     year = 2014,
+    month = may,
+   volume = 786,
+      eid = {67},
+    pages = {67},
+      doi = {10.1088/0004-637X/786/1/67},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...786...67A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015ApJ...799..208S,
+   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Gezari}, S. and 
+	{Betancourt}, M. and {Chornock}, R. and {Berger}, E. and {Foley}, R.~J. and 
+	{Challis}, P. and {Drout}, M. and {Kirshner}, R.~P. and {Lunnan}, R. and 
+	{Marion}, G.~H. and {Margutti}, R. and {McKinnon}, R. and {Milisavljevic}, D. and 
+	{Narayan}, G. and {Rest}, A. and {Kankare}, E. and {Mattila}, S. and 
+	{Smartt}, S.~J. and {Huber}, M.~E. and {Burgett}, W.~S. and 
+	{Draper}, P.~W. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.~P. and 
+	{Magnier}, E.~A. and {Metcalfe}, N. and {Morgan}, J.~S. and 
+	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C.},
+    title = "{Toward Characterization of the Type IIP Supernova Progenitor Population: A Statistical Sample of Light Curves from Pan-STARRS1}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1404.2004},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, surveys},
+     year = 2015,
+    month = feb,
+   volume = 799,
+      eid = {208},
+    pages = {208},
+      doi = {10.1088/0004-637X/799/2/208},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...799..208S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2008AJ....136.2306H,
+   author = {{Holtzman}, J.~A. and {Marriner}, J. and {Kessler}, R. and {Sako}, M. and 
+	{Dilday}, B. and {Frieman}, J.~A. and {Schneider}, D.~P. and 
+	{Bassett}, B. and {Becker}, A. and {Cinabro}, D. and {DeJongh}, F. and 
+	{Depoy}, D.~L. and {Doi}, M. and {Garnavich}, P.~M. and {Hogan}, C.~J. and 
+	{Jha}, S. and {Konishi}, K. and {Lampeitl}, H. and {Marshall}, J.~L. and 
+	{McGinnis}, D. and {Miknaitis}, G. and {Nichol}, R.~C. and {Prieto}, J.~L. and 
+	{Riess}, A.~G. and {Richmond}, M.~W. and {Romani}, R. and {Smith}, M. and 
+	{Takanashi}, N. and {Tokita}, K. and {van der Heyden}, K. and 
+	{Yasuda}, N. and {Zheng}, C.},
+    title = "{The Sloan Digital Sky Survey-II: Photometry and Supernova IA Light Curves from the 2005 Data}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {0908.4277},
+ keywords = {supernovae: general, techniques: photometric},
+     year = 2008,
+    month = dec,
+   volume = 136,
+    pages = {2306-2320},
+      doi = {10.1088/0004-6256/136/6/2306},
+   adsurl = {http://adsabs.harvard.edu/abs/2008AJ....136.2306H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007ApJ...657L..73G,
+   author = {{Guetta}, D. and {Della Valle}, M.},
+    title = "{On the Rates of Gamma-Ray Bursts and Type Ib/c Supernovae}",
+  journal = {\apjl},
+   eprint = {astro-ph/0612194},
+ keywords = {Gamma Rays: Bursts},
+     year = 2007,
+    month = mar,
+   volume = 657,
+    pages = {L73-L76},
+      doi = {10.1086/511417},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...657L..73G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015arXiv151101466G,
+   author = {{Graham}, J.~F. and {Schady}, P.},
+    title = "{The Absolute Rate of LGRB Formation}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1511.01466},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2015,
+    month = nov,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151101466G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...759..107K,
+   author = {{Kelly}, P.~L. and {Kirshner}, R.~P.},
+    title = "{Core-collapse Supernovae and Host Galaxy Stellar Populations}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1110.1377},
+ keywords = {galaxies: star formation, gamma ray burst: general, stars: abundances, supernovae: general},
+     year = 2012,
+    month = nov,
+   volume = 759,
+      eid = {107},
+    pages = {107},
+      doi = {10.1088/0004-637X/759/2/107},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759..107K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2011Natur.474..487Q,
+   author = {{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Kasliwal}, M.~M. and 
+	{Gal-Yam}, A. and {Arcavi}, I. and {Sullivan}, M. and {Nugent}, P. and 
+	{Thomas}, R. and {Howell}, D.~A. and {Nakar}, E. and {Bildsten}, L. and 
+	{Theissen}, C. and {Law}, N.~M. and {Dekany}, R. and {Rahmer}, G. and 
+	{Hale}, D. and {Smith}, R. and {Ofek}, E.~O. and {Zolkower}, J. and 
+	{Velur}, V. and {Walters}, R. and {Henning}, J. and {Bui}, K. and 
+	{McKenna}, D. and {Poznanski}, D. and {Cenko}, S.~B. and {Levitan}, D.
+	},
+    title = "{Hydrogen-poor superluminous stellar explosions}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0910.0059},
+ primaryClass = "astro-ph.CO",
+     year = 2011,
+    month = jun,
+   volume = 474,
+    pages = {487-489},
+      doi = {10.1038/nature10095},
+   adsurl = {http://adsabs.harvard.edu/abs/2011Natur.474..487Q},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.431..912Q,
+   author = {{Quimby}, R.~M. and {Yuan}, F. and {Akerlof}, C. and {Wheeler}, J.~C.
+	},
+    title = "{Rates of superluminous supernovae at z {\tilde} 0.2}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.0911},
+ keywords = {supernovae: general},
+     year = 2013,
+    month = may,
+   volume = 431,
+    pages = {912-922},
+      doi = {10.1093/mnras/stt213},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431..912Q},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@incollection{Ngiam11,
+   title = {Sparse Filtering},
+   author = {{Ngiam}, J. and {Chen}, Z. and {Bhaskar}, S.~A. and Koh, P.~W. and Ng, A.~Y.},
+   booktitle = {Advances in Neural Information Processing Systems 24},
+   editor = {J. Shawe-Taylor and R.S. Zemel and P.L. Bartlett and F. Pereira and K.Q. Weinberger},
+   pages = {1125--1133},
+   year = {2011},
+   publisher = {Curran Associates, Inc.},
+   url = {http://papers.nips.cc/paper/4334-sparse-filtering.pdf}
+}
+
+
+
+
+@phdthesis{Wright15,
+   author = {{Wright}, D.},
+   school = {Department of Physics and Astronomy, Queen's University Belfast.},
+   title = {Machine Learning for Transient Surveys.},
+   year = 2015,
+  month = December,
+  adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ATel.7102....1G,
+   author = {{Guillou}, L.~L. and {Mitra}, A. and {Baumont}, S. and {Chotard}, N. and 
+	{Leget}, P.-F. and {Fraser}, M. and {Galbany}, L. and {Dennefeld}, M. and 
+	{Inserra}, C. and {Maguire}, K. and {Smartt}, S. and {Smith}, K.~W. and 
+	{Sullivan}, M. and {Valenti}, S. and {Yaron}, O. and {Young}, D. and 
+	{Manulis}, I. and {Baltay}, C. and {Ellman}, N. and {Hadjiyska}, E. and 
+	{McKinnon}, R. and {Rabinowitz}, D. and {Rostami}, S. and {Feindt}, U. and 
+	{Kowalski}, M. and {Nugent}, P. and {Wright}, D. and {Chambers}, K. and 
+	{Flewelling}, H. and {Huber}, M. and {Magnier}, E. and {Tonry}, J. and 
+	{Waters}, C. and {Wainscoat}, R.~J.},
+    title = "{PESSTO spectroscopic classification of optical transients}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae},
+     year = 2015,
+    month = feb,
+   volume = 7102,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.7102....1G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...738..154H,
+   author = {{Horiuchi}, S. and {Beacom}, J.~F. and {Kochanek}, C.~S. and 
+	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A.},
+    title = "{The Cosmic Core-collapse Supernova Rate Does Not Match the Massive-star Formation Rate}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1102.1977},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: evolution, galaxies: starburst, stars: formation, supernovae: general},
+     year = 2011,
+    month = sep,
+   volume = 738,
+      eid = {154},
+    pages = {154},
+      doi = {10.1088/0004-637X/738/2/154},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...738..154H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...713.1026D,
+   author = {{Dilday}, B. and {Smith}, M. and {Bassett}, B. and {Becker}, A. and 
+	{Bender}, R. and {Castander}, F. and {Cinabro}, D. and {Filippenko}, A.~V. and 
+	{Frieman}, J.~A. and {Galbany}, L. and {Garnavich}, P.~M. and 
+	{Goobar}, A. and {Hopp}, U. and {Ihara}, Y. and {Jha}, S.~W. and 
+	{Kessler}, R. and {Lampeitl}, H. and {Marriner}, J. and {Miquel}, R. and 
+	{Moll{\'a}}, M. and {Nichol}, R.~C. and {Nordin}, J. and {Riess}, A.~G. and 
+	{Sako}, M. and {Schneider}, D.~P. and {Sollerman}, J. and {Wheeler}, J.~C. and 
+	{{\"O}stman}, L. and {Bizyaev}, D. and {Brewington}, H. and 
+	{Malanushenko}, E. and {Malanushenko}, V. and {Oravetz}, D. and 
+	{Pan}, K. and {Simmons}, A. and {Snedden}, S.},
+    title = "{Measurements of the Rate of Type Ia Supernovae at Redshift lsim0.3 from the Sloan Digital Sky Survey II Supernova Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1001.4995},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general},
+     year = 2010,
+    month = apr,
+   volume = 713,
+    pages = {1026-1036},
+      doi = {10.1088/0004-637X/713/2/1026},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...713.1026D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013MNRAS.435.1047B,
+   author = {{Brink}, H. and {Richards}, J.~W. and {Poznanski}, D. and {Bloom}, J.~S. and 
+	{Rice}, J. and {Negahban}, S. and {Wainwright}, M.},
+    title = "{Using machine learning for discovery in synoptic survey imaging data}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1209.3775},
+ primaryClass = "astro-ph.IM",
+ keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
+     year = 2013,
+    month = oct,
+   volume = 435,
+    pages = {1047-1060},
+      doi = {10.1093/mnras/stt1306},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.435.1047B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015AJ....150...82G,
+   author = {{Goldstein}, D.~A. and {D'Andrea}, C.~B. and {Fischer}, J.~A. and 
+	{Foley}, R.~J. and {Gupta}, R.~R. and {Kessler}, R. and {Kim}, A.~G. and 
+	{Nichol}, R.~C. and {Nugent}, P.~E. and {Papadopoulos}, A. and 
+	{Sako}, M. and {Smith}, M. and {Sullivan}, M. and {Thomas}, R.~C. and 
+	{Wester}, W. and {Wolf}, R.~C. and {Abdalla}, F.~B. and {Banerji}, M. and 
+	{Benoit-Levy}, A. and {Bertin}, E. and {Brooks}, D. and 
+	{Carnero Rosell}, A. and {Castander}, F.~J. and {da Costa}, L.~N. and 
+	{Covarrubias}, R. and {DePoy}, D.~L. and {Desai}, S. and {Diehl}, H.~T. and 
+	{Doel}, P. and {Eifler}, T.~F. and {Fausti Neto}, A. and {Finley}, D.~A. and 
+	{Flaugher}, B. and {Fosalba}, P. and {Frieman}, J. and {Gerdes}, D. and 
+	{Gruen}, D. and {Gruendl}, R.~A. and {James}, D. and {Kuehn}, K. and 
+	{Kuropatkin}, N. and {Lahav}, O. and {Li}, T.~S. and {Maia}, M.~A.~G. and 
+	{Makler}, M. and {March}, M. and {Marshall}, J.~L. and {Martini}, P. and 
+	{Merritt}, K.~W. and {Miquel}, R. and {Nord}, B. and {Ogando}, R. and 
+	{Plazas}, A.~A. and {Romer}, A.~K. and {Roodman}, A. and {Sanchez}, E. and 
+	{Scarpine}, V. and {Schubnell}, M. and {Sevilla-Noarbe}, I. and 
+	{Smith}, R.~C. and {Soares-Santos}, M. and {Sobreira}, F. and 
+	{Suchyta}, E. and {Swanson}, M.~E.~C. and {Tarle}, G. and {Thaler}, J. and 
+	{Walker}, A.~R.},
+    title = "{Automated Transient Identification in the Dark Energy Survey}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1504.02936},
+ primaryClass = "astro-ph.IM",
+ keywords = {methods: data analysis, methods: statistical, supernovae: general},
+     year = 2015,
+    month = sep,
+   volume = 150,
+      eid = {82},
+    pages = {82},
+      doi = {10.1088/0004-6256/150/3/82},
+   adsurl = {http://adsabs.harvard.edu/abs/2015AJ....150...82G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015arXiv151205435F,
+   author = {{Fern{\'a}ndez}, R. and {Metzger}, B.~D.},
+    title = "{Electromagnetic Signatures of Neutron Star Mergers in the Advanced LIGO Era}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1512.05435},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics, General Relativity and Quantum Cosmology, Nuclear Theory},
+     year = 2015,
+    month = dec,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151205435F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013IJMPD..2241011K,
+   author = {{Kamble}, A. and {Kaplan}, D.~L.~A.},
+    title = "{Electromagnetic Counterparts of Gravitational Wave Sources: Mergers of Compact Objects}",
+  journal = {International Journal of Modern Physics D},
+ keywords = {Gravitational waves, Wave generation and sources, Gravitational-wave astrophysics, Gravitational radiation magnetic fields and other observations},
+     year = 2013,
+    month = jan,
+   volume = 22,
+      eid = {1341011},
+    pages = {41011},
+      doi = {10.1142/S0218271813410113},
+   adsurl = {http://adsabs.harvard.edu/abs/2013IJMPD..2241011K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...774...25K,
+   author = {{Kasen}, D. and {Badnell}, N.~R. and {Barnes}, J.},
+    title = "{Opacities and Spectra of the r-process Ejecta from Neutron Star Mergers}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.5788},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, stars: neutron, supernovae: general },
+     year = 2013,
+    month = sep,
+   volume = 774,
+      eid = {25},
+    pages = {25},
+      doi = {10.1088/0004-637X/774/1/25},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...774...25K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...775...18B,
+   author = {{Barnes}, J. and {Kasen}, D.},
+    title = "{Effect of a High Opacity on the Light Curves of Radioactively Powered Transients from Compact Object Mergers}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.5787},
+ primaryClass = "astro-ph.HE",
+ keywords = {atomic data, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, stars: neutron, supernovae: general},
+     year = 2013,
+    month = sep,
+   volume = 775,
+      eid = {18},
+    pages = {18},
+      doi = {10.1088/0004-637X/775/1/18},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775...18B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...737..103S,
+   author = {{Schlafly}, E.~F. and {Finkbeiner}, D.~P.},
+    title = "{Measuring Reddening with Sloan Digital Sky Survey Stellar Spectra and Recalibrating SFD}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1012.4804},
+ primaryClass = "astro-ph.GA",
+ keywords = {dust, extinction, Galaxy: stellar content, ISM: clouds},
+     year = 2011,
+    month = aug,
+   volume = 737,
+      eid = {103},
+    pages = {103},
+      doi = {10.1088/0004-637X/737/2/103},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...737..103S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.416.3138V,
+   author = {{Valenti}, S. and {Fraser}, M. and {Benetti}, S. and {Pignata}, G. and 
+	{Sollerman}, J. and {Inserra}, C. and {Cappellaro}, E. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Ergon}, M. and {Botticella}, M.~T. and 
+	{Brimacombe}, J. and {Bufano}, F. and {Crockett}, M. and {Eder}, I. and 
+	{Fugazza}, D. and {Haislip}, J.~B. and {Hamuy}, M. and {Harutyunyan}, A. and 
+	{Ivarsen}, K.~M. and {Kankare}, E. and {Kotak}, R. and {Lacluyze}, A.~P. and 
+	{Magill}, L. and {Mattila}, S. and {Maza}, J. and {Mazzali}, P.~A. and 
+	{Reichart}, D.~E. and {Taubenberger}, S. and {Turatto}, M. and 
+	{Zampieri}, L.},
+    title = "{SN 2009jf: a slow-evolving stripped-envelope core-collapse supernova}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1106.3030},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2009jf, galaxies: individual: NGC 7479},
+     year = 2011,
+    month = oct,
+   volume = 416,
+    pages = {3138-3159},
+      doi = {10.1111/j.1365-2966.2011.19262.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.3138V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015A&A...574A..60T,
+   author = {{Taddia}, F. and {Sollerman}, J. and {Leloudas}, G. and {Stritzinger}, M.~D. and 
+	{Valenti}, S. and {Galbany}, L. and {Kessler}, R. and {Schneider}, D.~P. and 
+	{Wheeler}, J.~C.},
+    title = "{Early-time light curves of Type Ib/c supernovae from the SDSS-II Supernova Survey}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1408.4084},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general},
+     year = 2015,
+    month = feb,
+   volume = 574,
+      eid = {A60},
+    pages = {A60},
+      doi = {10.1051/0004-6361/201423915},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...574A..60T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011MNRAS.416.2607G,
+   author = {{Ganeshalingam}, M. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{The rise-time distribution of nearby Type Ia supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1107.2404},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general},
+     year = 2011,
+    month = oct,
+   volume = 416,
+    pages = {2607-2622},
+      doi = {10.1111/j.1365-2966.2011.19213.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.2607G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ARA&A..44..507W,
+   author = {{Woosley}, S.~E. and {Bloom}, J.~S.},
+    title = "{The Supernova Gamma-Ray Burst Connection}",
+  journal = {\araa},
+   eprint = {astro-ph/0609142},
+     year = 2006,
+    month = sep,
+   volume = 44,
+    pages = {507-556},
+      doi = {10.1146/annurev.astro.43.072103.150558},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ARA&A..44..507W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{1992AJ....103.1632P,
+   author = {{Phillips}, M.~M. and {Wells}, L.~A. and {Suntzeff}, N.~B. and 
+	{Hamuy}, M. and {Leibundgut}, B. and {Kirshner}, R.~P. and {Foltz}, C.~B.
+	},
+    title = "{SN 1991T - Further evidence of the heterogeneous nature of type IA supernovae}",
+  journal = {\aj},
+ keywords = {Stellar Composition, Stellar Evolution, Stellar Spectra, Supernovae, Light Curve, Stellar Color, Stellar Spectrophotometry},
+     year = 1992,
+    month = may,
+   volume = 103,
+    pages = {1632-1637},
+      doi = {10.1086/116177},
+   adsurl = {http://adsabs.harvard.edu/abs/1992AJ....103.1632P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015A&A...581L...4K,
+   author = {{Kankare}, E. and {Kotak}, R. and {Pastorello}, A. and {Fraser}, M. and 
+	{Mattila}, S. and {Smartt}, S.~J. and {Bruce}, A. and {Chambers}, K.~C. and 
+	{Elias-Rosa}, N. and {Flewelling}, H. and {Fremling}, C. and 
+	{Harmanen}, J. and {Huber}, M. and {Jerkstrand}, A. and {Kangas}, T. and 
+	{Kuncarayakti}, H. and {Magee}, M. and {Magnier}, E. and {Polshaw}, J. and 
+	{Smith}, K.~W. and {Sollerman}, J. and {Tomasella}, L.},
+    title = "{On the triple peaks of SNHunt248 in NGC 5806}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1508.04730},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SNHunt248},
+     year = 2015,
+    month = sep,
+   volume = 581,
+      eid = {L4},
+    pages = {L4},
+      doi = {10.1051/0004-6361/201526631},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...581L...4K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015ApJ...804...28G,
+   author = {{Gezari}, S. and {Jones}, D.~O. and {Sanders}, N.~E. and {Soderberg}, A.~M. and 
+	{Hung}, T. and {Heinis}, S. and {Smartt}, S.~J. and {Rest}, A. and 
+	{Scolnic}, D. and {Chornock}, R. and {Berger}, E. and {Foley}, R.~J. and 
+	{Huber}, M.~E. and {Price}, P. and {Stubbs}, C.~W. and {Riess}, A.~G. and 
+	{Kirshner}, R.~P. and {Smith}, K. and {Wood-Vasey}, W.~M. and 
+	{Schiminovich}, D. and {Martin}, D.~C. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Flewelling}, H. and {Kaiser}, N. and 
+	{Tonry}, J.~L. and {Wainscoat}, R.},
+    title = "{GALEX Detection of Shock Breakout in Type IIP Supernova PS1-13arp: Implications for the Progenitor Star Wind}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1502.06964},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: individual: PS1-13arp, surveys, ultraviolet: general},
+     year = 2015,
+    month = may,
+   volume = 804,
+      eid = {28},
+    pages = {28},
+      doi = {10.1088/0004-637X/804/1/28},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...804...28G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2013PASP..125..357D,
+   author = {{Denneau}, L. and {Jedicke}, R. and {Grav}, T. and {Granvik}, M. and 
+	{Kubica}, J. and {Milani}, A. and {Vere{\v s}}, P. and {Wainscoat}, R. and 
+	{Chang}, D. and {Pierfederici}, F. and {Kaiser}, N. and {Chambers}, K.~C. and 
+	{Heasley}, J.~N. and {Magnier}, E.~A. and {Price}, P.~A. and 
+	{Myers}, J. and {Kleyna}, J. and {Hsieh}, H. and {Farnocchia}, D. and 
+	{Waters}, C. and {Sweeney}, W.~H. and {Green}, D. and {Bolin}, B. and 
+	{Burgett}, W.~S. and {Morgan}, J.~S. and {Tonry}, J.~L. and 
+	{Hodapp}, K.~W. and {Chastel}, S. and {Chesley}, S. and {Fitzsimmons}, A. and 
+	{Holman}, M. and {Spahr}, T. and {Tholen}, D. and {Williams}, G.~V. and 
+	{Abe}, S. and {Armstrong}, J.~D. and {Bressi}, T.~H. and {Holmes}, R. and 
+	{Lister}, T. and {McMillan}, R.~S. and {Micheli}, M. and {Ryan}, E.~V. and 
+	{Ryan}, W.~H. and {Scotti}, J.~V.},
+    title = "{The Pan-STARRS Moving Object Processing System}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {1302.7281},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astronomical Instrumentation},
+     year = 2013,
+    month = apr,
+   volume = 125,
+    pages = {357-395},
+      doi = {10.1086/670337},
+   adsurl = {http://adsabs.harvard.edu/abs/2013PASP..125..357D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...746..128S,
+   author = {{Saglia}, R.~P. and {Tonry}, J.~L. and {Bender}, R. and {Greisel}, N. and 
+	{Seitz}, S. and {Senger}, R. and {Snigula}, J. and {Phleps}, S. and 
+	{Wilman}, D. and {Bailer-Jones}, C.~A.~L. and {Klement}, R.~J. and 
+	{Rix}, H.-W. and {Smith}, K. and {Green}, P.~J. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Heasley}, J.~N. and {Kaiser}, N. and 
+	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
+	{Stubbs}, C.~W. and {Wainscoat}, R.~J.},
+    title = "{The Photometric Classification Server for Pan-STARRS1}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1109.5080},
+ keywords = {galaxies: active, galaxies: distances and redshifts, stars: general, surveys},
+     year = 2012,
+    month = feb,
+   volume = 746,
+      eid = {128},
+    pages = {128},
+      doi = {10.1088/0004-637X/746/2/128},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..128S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.449..451W,
+   author = {{Wright}, D.~E. and {Smartt}, S.~J. and {Smith}, K.~W. and {Miller}, P. and 
+	{Kotak}, R. and {Rest}, A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M. and {Jedicke}, R. and 
+	{Kaiser}, N. and {Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and 
+	{Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Machine learning for transient discovery in Pan-STARRS1 difference imaging}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1501.05470},
+ primaryClass = "astro-ph.IM",
+ keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
+     year = 2015,
+    month = may,
+   volume = 449,
+    pages = {451-466},
+      doi = {10.1093/mnras/stv292},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449..451W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009A&A...494..707K,
+   author = {{Koppenhoefer}, J. and {Afonso}, C. and {Saglia}, R.~P. and 
+	{Henning}, T.},
+    title = "{Investigating the potential of the Pan-Planets project using Monte Carlo simulations}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0812.1559},
+ keywords = {stars: planetary systems, methods: statistical, techniques: photometric},
+     year = 2009,
+    month = feb,
+   volume = 494,
+    pages = {707-717},
+      doi = {10.1051/0004-6361:200810754},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...494..707K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2007ASPC..366..326A,
+   author = {{Afonso}, C. and {Henning}, T.},
+    title = "{The Pan-Planets Project}",
+booktitle = {Transiting Extrapolar Planets Workshop},
+     year = 2007,
+   series = {Astronomical Society of the Pacific Conference Series},
+   volume = 366,
+   editor = {{Afonso}, C. and {Weldrake}, D. and {Henning}, T.},
+    month = jul,
+    pages = {326},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ASPC..366..326A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016A&A...587A..49O,
+  author = {{Obermeier}, C. and {Koppenhoefer}, J. and {Saglia}, R.~P. and
+	{Henning}, T. and {Bender}, R. and {Kodric}, M. and {Deacon}, N. and
+	{Riffeser}, A. and {Burgett}, W. and {Chambers}, K.~C. and {Draper}, P.~W. and
+	{Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and
+	{Magnier}, E.~A. and {Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and
+	{Wainscoat}, R.~J. and {Waters}, C.},
+   title = "{Pan-Planets: Searching for hot Jupiters around cool dwarfs}",
+ journal = {\aap},
+archivePrefix = "arXiv",
+  eprint = {1512.07259},
+primaryClass = "astro-ph.EP",
+keywords = {techniques: image processing, techniques: photometric, stars: low-mass, planetary systems},
+    year = 2016,
+   month = mar,
+  volume = 587,
+     eid = {A49},
+   pages = {A49},
+     doi = {10.1051/0004-6361/201527633},
+  adsurl = {http://adsabs.harvard.edu/abs/2016A&A...587A..49O},
+ adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2016ApJ...825..140M,
+   author = {{Morganson}, E. and {Conn}, B. and {Rix}, H.-W. and {Bell}, E.~F. and 
+	{Burgett}, W.~S. and {Chambers}, K. and {Dolphin}, A. and {Draper}, P.~W. and 
+	{Flewelling}, H. and {Hodapp}, K. and {Kaiser}, N. and {Magnier}, E.~A. and 
+	{Martin}, N.~F. and {Martinez-Delgado}, D. and {Metcalfe}, N. and 
+	{Schlafly}, E.~F. and {Slater}, C.~T. and {Wainscoat}, R.~J. and 
+	{Waters}, C.~Z.},
+    title = "{Mapping the Monoceros Ring in 3D with Pan-STARRS1}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1604.07501},
+ keywords = {Galaxy: disk},
+     year = 2016,
+    month = jul,
+   volume = 825,
+      eid = {140},
+    pages = {140},
+      doi = {10.3847/0004-637X/825/2/140},
+   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...825..140M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016ApJ...831..144L,
+   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Milisavljevic}, D. and 
+	{Jones}, D.~O. and {Rest}, A. and {Fong}, W. and {Fransson}, C. and 
+	{Margutti}, R. and {Drout}, M.~R. and {Blanchard}, P.~K. and 
+	{Challis}, P. and {Cowperthwaite}, P.~S. and {Foley}, R.~J. and 
+	{Kirshner}, R.~P. and {Morrell}, N. and {Riess}, A.~G. and {Roth}, K.~C. and 
+	{Scolnic}, D. and {Smartt}, S.~J. and {Smith}, K.~W. and {Villar}, V.~A. and 
+	{Chambers}, K.~C. and {Draper}, P.~W. and {Huber}, M.~E. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Waters}, C.},
+    title = "{PS1-14bj: A Hydrogen-poor Superluminous Supernova With a Long Rise and Slow Decay}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1605.05235},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: PS1-14bj, LSQ14an},
+     year = 2016,
+    month = nov,
+   volume = 831,
+      eid = {144},
+    pages = {144},
+      doi = {10.3847/0004-637X/831/2/144},
+   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...831..144L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2012ApJ...745...42T,
+   author = {{Tonry}, J.~L. and {Stubbs}, C.~W. and {Kilic}, M. and {Flewelling}, H.~A. and 
+	{Deacon}, N.~R. and {Chornock}, R. and {Berger}, E. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Hodapp}, K.~W. and {Magnier}, E.~A. and {Morgan}, J.~S. and 
+	{Price}, P.~A. and {Wainscoat}, R.~J.},
+    title = "{First Results from Pan-STARRS1: Faint, High Proper Motion White Dwarfs in the Medium-Deep Fields}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1110.0060},
+ keywords = {Galaxy: evolution, proper motions, surveys, white dwarfs},
+     year = 2012,
+    month = jan,
+   volume = 745,
+      eid = {42},
+    pages = {42},
+      doi = {10.1088/0004-637X/745/1/42},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...745...42T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...774L..23B,
+   author = {{Berger}, E. and {Fong}, W. and {Chornock}, R.},
+    title = "{An r-process Kilonova Associated with the Short-hard GRB 130603B}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1306.3960},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gamma-ray burst: individual: 130603B},
+     year = 2013,
+    month = sep,
+   volume = 774,
+      eid = {L23},
+    pages = {L23},
+      doi = {10.1088/2041-8205/774/2/L23},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...774L..23B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011CQGra..28h5016W,
+   author = {{White}, D.~J. and {Daw}, E.~J. and {Dhillon}, V.~S.},
+    title = "{A list of galaxies for gravitational wave searches}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1103.0695},
+     year = 2011,
+    month = apr,
+   volume = 28,
+   number = 8,
+      eid = {085016},
+    pages = {085016},
+      doi = {10.1088/0264-9381/28/8/085016},
+   adsurl = {http://adsabs.harvard.edu/abs/2011CQGra..28h5016W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015arXiv150900055C,
+   author = {{Chen}, H.-Y. and {Holz}, D.~E.},
+    title = "{Facilitating follow-up of LIGO-Virgo events using rapid sky localization}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1509.00055},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
+     year = 2015,
+    month = aug,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150900055C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015CQGra..32m5012C,
+   author = {{Cornish}, N.~J. and {Littenberg}, T.~B.},
+    title = "{Bayeswave: Bayesian inference for gravitational wave bursts and instrument glitches}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1410.3835},
+ primaryClass = "gr-qc",
+     year = 2015,
+    month = jul,
+   volume = 32,
+   number = 13,
+      eid = {135012},
+    pages = {135012},
+      doi = {10.1088/0264-9381/32/13/135012},
+   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32m5012C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...800...81E,
+   author = {{Essick}, R. and {Vitale}, S. and {Katsavounidis}, E. and {Vedovato}, G. and 
+	{Klimenko}, S.},
+    title = "{Localization of Short Duration Gravitational-wave Transients with the Early Advanced LIGO and Virgo Detectors}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1409.2435},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, methods: data analysis },
+     year = 2015,
+    month = feb,
+   volume = 800,
+      eid = {81},
+    pages = {81},
+      doi = {10.1088/0004-637X/800/2/81},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...800...81E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...804..114B,
+   author = {{Berry}, C.~P.~L. and {Mandel}, I. and {Middleton}, H. and {Singer}, L.~P. and 
+	{Urban}, A.~L. and {Vecchio}, A. and {Vitale}, S. and {Cannon}, K. and 
+	{Farr}, B. and {Farr}, W.~M. and {Graff}, P.~B. and {Hanna}, C. and 
+	{Haster}, C.-J. and {Mohapatra}, S. and {Pankow}, C. and {Price}, L.~R. and 
+	{Sidery}, T. and {Veitch}, J.},
+    title = "{Parameter Estimation for Binary Neutron-star Coalescences with Realistic Noise during the Advanced LIGO Era}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1411.6934},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, methods: data analysis, stars: neutron, surveys},
+     year = 2015,
+    month = may,
+   volume = 804,
+      eid = {114},
+    pages = {114},
+      doi = {10.1088/0004-637X/804/2/114},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...804..114B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...784....8H,
+   author = {{Hanna}, C. and {Mandel}, I. and {Vousden}, W.},
+    title = "{Utility of Galaxy Catalogs for Following up Gravitational Waves from Binary Neutron Star Mergers with Wide-field Telescopes}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1312.2077},
+ primaryClass = "astro-ph.HE",
+ keywords = {binaries: close, catalogs, gravitational waves, stars: neutron},
+     year = 2014,
+    month = mar,
+   volume = 784,
+      eid = {8},
+    pages = {8},
+      doi = {10.1088/0004-637X/784/1/8},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...784....8H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...795..105S,
+   author = {{Singer}, L.~P. and {Price}, L.~R. and {Farr}, B. and {Urban}, A.~L. and 
+	{Pankow}, C. and {Vitale}, S. and {Veitch}, J. and {Farr}, W.~M. and 
+	{Hanna}, C. and {Cannon}, K. and {Downes}, T. and {Graff}, P. and 
+	{Haster}, C.-J. and {Mandel}, I. and {Sidery}, T. and {Vecchio}, A.
+	},
+    title = "{The First Two Years of Electromagnetic Follow-up with Advanced LIGO and Virgo}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1404.5623},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitational waves, stars: neutron, surveys},
+     year = 2014,
+    month = nov,
+   volume = 795,
+      eid = {105},
+    pages = {105},
+      doi = {10.1088/0004-637X/795/2/105},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795..105S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...769..130C,
+   author = {{Cenko}, S.~B. and {Kulkarni}, S.~R. and {Horesh}, A. and {Corsi}, A. and 
+	{Fox}, D.~B. and {Carpenter}, J. and {Frail}, D.~A. and {Nugent}, P.~E. and 
+	{Perley}, D.~A. and {Gruber}, D. and {Gal-Yam}, A. and {Groot}, P.~J. and 
+	{Hallinan}, G. and {Ofek}, E.~O. and {Rau}, A. and {MacLeod}, C.~L. and 
+	{Miller}, A.~A. and {Bloom}, J.~S. and {Filippenko}, A.~V. and 
+	{Kasliwal}, M.~M. and {Law}, N.~M. and {Morgan}, A.~N. and {Polishook}, D. and 
+	{Poznanski}, D. and {Quimby}, R.~M. and {Sesar}, B. and {Shen}, K.~J. and 
+	{Silverman}, J.~M. and {Sternberg}, A.},
+    title = "{Discovery of a Cosmological, Relativistic Outburst via its Rapidly Fading Optical Emission}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1304.4236},
+ keywords = {gamma-ray burst: general, stars: flare, supernovae: general},
+     year = 2013,
+    month = jun,
+   volume = 769,
+      eid = {130},
+    pages = {130},
+      doi = {10.1088/0004-637X/769/2/130},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769..130C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...806...52S,
+   author = {{Singer}, L.~P. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and 
+	{Perley}, D.~A. and {Anderson}, G.~E. and {Anupama}, G.~C. and 
+	{Arcavi}, I. and {Bhalerao}, V. and {Bue}, B.~D. and {Cao}, Y. and 
+	{Connaughton}, V. and {Corsi}, A. and {Cucchiara}, A. and {Fender}, R.~P. and 
+	{Fox}, D.~B. and {Gehrels}, N. and {Goldstein}, A. and {Gorosabel}, J. and 
+	{Horesh}, A. and {Hurley}, K. and {Johansson}, J. and {Kann}, D.~A. and 
+	{Kouveliotou}, C. and {Huang}, K. and {Kulkarni}, S.~R. and 
+	{Masci}, F. and {Nugent}, P. and {Rau}, A. and {Rebbapragada}, U.~D. and 
+	{Staley}, T.~D. and {Svinkin}, D. and {Th{\"o}ne}, C.~C. and 
+	{de Ugarte Postigo}, A. and {Urata}, Y. and {Weinstein}, A.},
+    title = "{The Needle in the 100 deg$^{2}$ Haystack: Uncovering Afterglows of Fermi GRBs with the Palomar Transient Factory}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1501.00495},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: individual: GRB 130702A, GRB 140606B, gravitational waves, methods: observational, supernovae: general, surveys},
+     year = 2015,
+    month = jun,
+   volume = 806,
+      eid = {52},
+    pages = {52},
+      doi = {10.1088/0004-637X/806/1/52},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...806...52S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...811...52A,
+   author = {{Aartsen}, M.~G. and {Abraham}, K. and {Ackermann}, M. and {Adams}, J. and 
+	{Aguilar}, J.~A. and {Ahlers}, M. and {Ahrens}, M. and {Altmann}, D. and 
+	{Anderson}, T. and {Archinger}, M. and et al.},
+    title = "{The Detection of a Type IIn Supernova in Optical Follow-up Observations of IceCube Neutrino Events}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1506.03115},
+ primaryClass = "astro-ph.HE",
+     year = 2015,
+    month = sep,
+   volume = 811,
+      eid = {52},
+    pages = {52},
+      doi = {10.1088/0004-637X/811/1/52},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...811...52A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ARAA..52...43B,
+   author = {{Berger}, E.},
+    title = "{Short-Duration Gamma-Ray Bursts}",
+  journal = {\araa},
+archivePrefix = "arXiv",
+   eprint = {1311.2603},
+ primaryClass = "astro-ph.HE",
+     year = 2014,
+    month = aug,
+   volume = 52,
+    pages = {43-105},
+      doi = {10.1146/annurev-astro-081913-035926},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ARA&A..52...43B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996ApJ...470..172S,
+   author = {{Shectman}, S.~A. and {Landy}, S.~D. and {Oemler}, A. and {Tucker}, D.~L. and 
+	{Lin}, H. and {Kirshner}, R.~P. and {Schechter}, P.~L.},
+    title = "{The Las Campanas Redshift Survey}",
+  journal = {\apj},
+   eprint = {astro-ph/9604167},
+ keywords = {COSMOLOGY: OBSERVATIONS, GALAXIES: CLUSTERS: GENERAL, GALAXIES: DISTANCES AND REDSHIFTS, SURVEYS},
+     year = 1996,
+    month = oct,
+   volume = 470,
+    pages = {172},
+      doi = {10.1086/177858},
+   adsurl = {http://adsabs.harvard.edu/abs/1996ApJ...470..172S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJS..172....1S,
+   author = {{Scoville}, N. and {Aussel}, H. and {Brusa}, M. and {Capak}, P. and 
+	{Carollo}, C.~M. and {Elvis}, M. and {Giavalisco}, M. and {Guzzo}, L. and 
+	{Hasinger}, G. and {Impey}, C. and {Kneib}, J.-P. and {LeFevre}, O. and 
+	{Lilly}, S.~J. and {Mobasher}, B. and {Renzini}, A. and {Rich}, R.~M. and 
+	{Sanders}, D.~B. and {Schinnerer}, E. and {Schminovich}, D. and 
+	{Shopbell}, P. and {Taniguchi}, Y. and {Tyson}, N.~D.},
+    title = "{The Cosmic Evolution Survey (COSMOS): Overview}",
+  journal = {\apjs},
+   eprint = {astro-ph/0612305},
+ keywords = {Cosmology: Observations, Cosmology: Dark Matter, Galaxies: Evolution, Galaxies: Formation, Cosmology: Large-Scale Structure of Universe, Surveys},
+     year = 2007,
+    month = sep,
+   volume = 172,
+    pages = {1-8},
+      doi = {10.1086/516585},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJS..172....1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.435.1825M,
+   author = {{Metcalfe}, N. and {Farrow}, D.~J. and {Cole}, S. and {Draper}, P.~W. and 
+	{Norberg}, P. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Denneau}, L. and {Flewelling}, H. and {Kaiser}, N. and {Kudritzki}, R. and 
+	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
+	{Sweeney}, W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C.},
+    title = "{The Pan-STARRS1 Small Area Survey 2}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.6368},
+ primaryClass = "astro-ph.CO",
+ keywords = {methods: data analysis, techniques: image processing, catalogues, surveys},
+     year = 2013,
+    month = nov,
+   volume = 435,
+    pages = {1825-1839},
+      doi = {10.1093/mnras/stt1343},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.435.1825M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.437..748F,
+   author = {{Farrow}, D.~J. and {Cole}, S. and {Metcalfe}, N. and {Draper}, P.~W. and {Norberg}, P. and {Foucaud}, S. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
+    title = "{Pan-STARRS1: Galaxy clustering in the Small Area Survey 2}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.6366},
+ primaryClass = "astro-ph.CO",
+ keywords = {methods: observational â surveys â large-scale structure of Universe},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {748-770},
+      doi = {10.1093/mnras/stt1933},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..748F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...746..128S,
+   author = {{Saglia}, R.~P. and {Tonry}, J.~L. and {Bender}, R. and {Greisel}, N. and 
+	{Seitz}, S. and {Senger}, R. and {Snigula}, J. and {Phleps}, S. and 
+	{Wilman}, D. and {Bailer-Jones}, C.~A.~L. and {Klement}, R.~J. and 
+	{Rix}, H.-W. and {Smith}, K. and {Green}, P.~J. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Heasley}, J.~N. and {Kaiser}, N. and 
+	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
+	{Stubbs}, C.~W. and {Wainscoat}, R.~J.},
+    title = "{The Photometric Classification Server for Pan-STARRS1}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1109.5080},
+ keywords = {galaxies: active, galaxies: distances and redshifts, stars: general, surveys},
+     year = 2012,
+    month = feb,
+   volume = 746,
+      eid = {128},
+    pages = {128},
+      doi = {10.1088/0004-637X/746/2/128},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..128S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006A&A...445..805F,
+   author = {{Fasano}, G. and {Marmo}, C. and {Varela}, J. and {D'Onofrio}, M. and 
+	{Poggianti}, B.~M. and {Moles}, M. and {Pignatelli}, E. and 
+	{Bettoni}, D. and {Kj{\ae}rgaard}, P. and {Rizzi}, L. and {Couch}, W.~J. and 
+	{Dressler}, A.},
+    title = "{WINGS: a WIde-field Nearby Galaxy-cluster Survey. I. Optical imaging}",
+  journal = {\aap},
+   eprint = {astro-ph/0507247},
+ keywords = {galaxies: photometry, galaxies: fundamental parameters, galaxies: evolution},
+     year = 2006,
+    month = jan,
+   volume = 445,
+    pages = {805-817},
+      doi = {10.1051/0004-6361:20053816},
+   adsurl = {http://cdsads.u-strasbg.fr/abs/2006A&A...445..805F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015ApJ...814...25C,
+   author = {{Cowperthwaite}, P.~S. and {Berger}, E.},
+    title = "{A Comprehensive Study of Detectability and Contamination in Deep Rapid Optical Searches for Gravitational Wave Counterparts}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1503.07869},
+ primaryClass = "astro-ph.IM",
+ keywords = {gamma-ray burst: general, gravitational waves, surveys, telescopes},
+     year = 2015,
+    month = nov,
+   volume = 814,
+      eid = {25},
+    pages = {25},
+      doi = {10.1088/0004-637X/814/1/25},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...814...25C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1992ApJ...395L..83N,
+   author = {{Narayan}, R. and {Paczynski}, B. and {Piran}, T.},
+    title = "{Gamma-ray bursts as the death throes of massive binary stars}",
+  journal = {\apjl},
+   eprint = {astro-ph/9204001},
+ keywords = {Binary Stars, Black Holes (Astronomy), Gamma Ray Bursts, Massive Stars, Neutron Stars, Computational Astrophysics, Electron-Positron Pairs, Gravitational Waves, Neutrinos, Stellar Magnetic Fields, Stellar Models},
+     year = 1992,
+    month = aug,
+   volume = 395,
+    pages = {L83-L86},
+      doi = {10.1086/186493},
+   adsurl = {http://adsabs.harvard.edu/abs/1992ApJ...395L..83N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015arXiv150803608G,
+   author = {{Gehrels}, N. and {Cannizzo}, J.~K. and {Kanner}, J. and {Kasliwal}, M.~M. and 
+	{Nissanke}, S. and {Singer}, L.~P.},
+    title = "{Galaxy Strategy for LIGO-Virgo Gravitational Wave Counterpart Searches}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1508.03608},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2015,
+    month = aug,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150803608G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...767..124N,
+   author = {{Nissanke}, S. and {Kasliwal}, M. and {Georgieva}, A.},
+    title = "{Identifying Elusive Electromagnetic Counterparts to Gravitational Wave Mergers: An End-to-end Simulation}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1210.6362},
+ primaryClass = "astro-ph.HE",
+ keywords = {binaries: close, catalogs, gamma-ray burst: general, gravitational waves, stars: neutron, surveys},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {124},
+    pages = {124},
+      doi = {10.1088/0004-637X/767/2/124},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767..124N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...789L...5K,
+   author = {{Kasliwal}, M.~M. and {Nissanke}, S.},
+    title = "{On Discovering Electromagnetic Emission from Neutron Star Mergers: The Early Years of Two Gravitational Wave Detectors}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1309.1554},
+ primaryClass = "astro-ph.HE",
+ keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
+     year = 2014,
+    month = jul,
+   volume = 789,
+      eid = {L5},
+    pages = {L5},
+      doi = {10.1088/2041-8205/789/1/L5},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...789L...5K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJS..211....7A,
+   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
+	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
+	{Adams}, C. and {Adams}, T. and et al.},
+    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1310.2314},
+ primaryClass = "astro-ph.IM",
+ keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
+     year = 2014,
+    month = mar,
+   volume = 211,
+      eid = {7},
+    pages = {7},
+      doi = {10.1088/0067-0049/211/1/7},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.446.1115M,
+   author = {{Metzger}, B.~D. and {Bauswein}, A. and {Goriely}, S. and {Kasen}, D.
+	},
+    title = "{Neutron-powered precursors of kilonovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1409.0544},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitation, nuclear reactions, nucleosynthesis, abundances, binaries: close, stars: neutron, supernovae: general},
+     year = 2015,
+    month = jan,
+   volume = 446,
+    pages = {1115-1120},
+      doi = {10.1093/mnras/stu2225},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.1115M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013Natur.500..547T,
+   author = {{Tanvir}, N.~R. and {Levan}, A.~J. and {Fruchter}, A.~S. and 
+	{Hjorth}, J. and {Hounsell}, R.~A. and {Wiersema}, K. and {Tunnicliffe}, R.~L.
+	},
+    title = "{A `kilonova' associated with the short-duration {$\gamma$}-ray burst GRB 130603B}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1306.4971},
+ primaryClass = "astro-ph.HE",
+     year = 2013,
+    month = aug,
+   volume = 500,
+    pages = {547-549},
+      doi = {10.1038/nature12505},
+   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.500..547T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.406.2650M,
+   author = {{Metzger}, B.~D. and {Mart{\'{\i}}nez-Pinedo}, G. and {Darbha}, S. and 
+	{Quataert}, E. and {Arcones}, A. and {Kasen}, D. and {Thomas}, R. and 
+	{Nugent}, P. and {Panov}, I.~V. and {Zinner}, N.~T.},
+    title = "{Electromagnetic counterparts of compact object mergers powered by the radioactive decay of r-process nuclei}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1001.5029},
+ primaryClass = "astro-ph.HE",
+ keywords = {gravitation, nuclear reactions, nucleosynthesis, abundances, binaries: close, gamma-ray burst: general, stars: neutron, supernovae: general},
+     year = 2010,
+    month = aug,
+   volume = 406,
+    pages = {2650-2662},
+      doi = {10.1111/j.1365-2966.2010.16864.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.406.2650M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...746...48M,
+   author = {{Metzger}, B.~D. and {Berger}, E.},
+    title = "{What is the Most Promising Electromagnetic Counterpart of a Neutron Star Binary Merger?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1108.6056},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, gravitational waves, stars: neutron, surveys},
+     year = 2012,
+    month = feb,
+   volume = 746,
+      eid = {48},
+    pages = {48},
+      doi = {10.1088/0004-637X/746/1/48},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746...48M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013PhRvD..87b2002A,
+   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
+	{Abbott}, T.~D. and {Abernathy}, M. and {Accadia}, T. and {Acernese}, F. and 
+	{Adams}, C. and {Adams}, T. and et al.},
+    title = "{Search for gravitational waves from binary black hole inspiral, merger, and ringdown in LIGO-Virgo data from 2009-2010}",
+  journal = {\prd},
+archivePrefix = "arXiv",
+   eprint = {1209.6533},
+ primaryClass = "gr-qc",
+ keywords = {Gravitational waves: theory, Gravitational-wave astrophysics, Gravitational radiation magnetic fields and other observations, Black holes},
+     year = 2013,
+    month = jan,
+   volume = 87,
+   number = 2,
+      eid = {022002},
+    pages = {022002},
+      doi = {10.1103/PhysRevD.87.022002},
+   adsurl = {http://adsabs.harvard.edu/abs/2013PhRvD..87b2002A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012PhRvD..85h2002A,
+   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and 
+	{Abernathy}, M. and {Accadia}, T. and {Acernese}, F. and {Adams}, C. and 
+	{Adhikari}, R. and {Affeldt}, C. and et al.},
+    title = "{Search for gravitational waves from low mass compact binary coalescence in LIGO's sixth science run and Virgo's science runs 2 and 3}",
+  journal = {\prd},
+archivePrefix = "arXiv",
+   eprint = {1111.7314},
+ primaryClass = "gr-qc",
+ keywords = {Wave generation and sources, Experimental tests of gravitational theories},
+     year = 2012,
+    month = apr,
+   volume = 85,
+   number = 8,
+      eid = {082002},
+    pages = {082002},
+      doi = {10.1103/PhysRevD.85.082002},
+   adsurl = {http://adsabs.harvard.edu/abs/2012PhRvD..85h2002A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010CQGra..27q3001A,
+   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abernathy}, M. and 
+	{Accadia}, T. and {Acernese}, F. and {Adams}, C. and {Adhikari}, R. and 
+	{Ajith}, P. and {Allen}, B. and et al.},
+    title = "{TOPICAL REVIEW:  Predictions for the rates of compact binary coalescences observable by ground-based gravitational-wave detectors}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1003.2480},
+ primaryClass = "astro-ph.HE",
+     year = 2010,
+    month = sep,
+   volume = 27,
+   number = 17,
+      eid = {173001},
+    pages = {173001},
+      doi = {10.1088/0264-9381/27/17/173001},
+   adsurl = {http://adsabs.harvard.edu/abs/2010CQGra..27q3001A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012arXiv1203.2674T,
+   author = {{The LIGO Scientific Collaboration} and {The Virgo Collaboration}
+	},
+    title = "{Sensitivity Achieved by the LIGO and Virgo Gravitational Wave Detectors during LIGO's Sixth and Virgo's Second and Third Science Runs}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1203.2674},
+ primaryClass = "gr-qc",
+ keywords = {General Relativity and Quantum Cosmology},
+     year = 2012,
+    month = mar,
+   adsurl = {http://adsabs.harvard.edu/abs/2012arXiv1203.2674T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015CQGra..32g4001T,
+   author = {{The LIGO Scientific Collaboration} and {Aasi}, J. and {Abbott}, B.~P. and 
+	{Abbott}, R. and {Abbott}, T. and {Abernathy}, M.~R. and {Ackley}, K. and 
+	{Adams}, C. and {Adams}, T. and {Addesso}, P. and et al.},
+    title = "{Advanced LIGO}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1411.4547},
+ primaryClass = "gr-qc",
+     year = 2015,
+    month = apr,
+   volume = 32,
+   number = 7,
+      eid = {074001},
+    pages = {074001},
+      doi = {10.1088/0264-9381/32/7/074001},
+   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32g4001T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015CQGra..32b4001A,
+   author = {{Acernese}, F. and {Agathos}, M. and {Agatsuma}, K. and {Aisa}, D. and 
+	{Allemandou}, N. and {Allocca}, A. and {Amarni}, J. and {Astone}, P. and 
+	{Balestri}, G. and {Ballardin}, G. and et al.},
+    title = "{Advanced Virgo: a second-generation interferometric gravitational wave detector}",
+  journal = {Classical and Quantum Gravity},
+archivePrefix = "arXiv",
+   eprint = {1408.3978},
+ primaryClass = "gr-qc",
+     year = 2015,
+    month = jan,
+   volume = 32,
+   number = 2,
+      eid = {024001},
+    pages = {024001},
+      doi = {10.1088/0264-9381/32/2/024001},
+   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32b4001A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJS..211....7A,
+   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
+	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
+	{Adams}, C. and {Adams}, T. and et al.},
+    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1310.2314},
+ primaryClass = "astro-ph.IM",
+ keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
+     year = 2014,
+    month = mar,
+   volume = 211,
+      eid = {7},
+    pages = {7},
+      doi = {10.1088/0067-0049/211/1/7},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015A&A...579A..40S,
+   author = {{Smartt}, S.~J. and {Valenti}, S. and {Fraser}, M. and {Inserra}, C. and 
+	{Young}, D.~R. and {Sullivan}, M. and {Pastorello}, A. and {Benetti}, S. and 
+	{Gal-Yam}, A. and {Knapic}, C. and {Molinaro}, M. and {Smareglia}, R. and 
+	{Smith}, K.~W. and {Taubenberger}, S. and {Yaron}, O. and {Anderson}, J.~P. and 
+	{Ashall}, C. and {Balland}, C. and {Baltay}, C. and {Barbarino}, C. and 
+	{Bauer}, F.~E. and {Baumont}, S. and {Bersier}, D. and {Blagorodnova}, N. and 
+	{Bongard}, S. and {Botticella}, M.~T. and {Bufano}, F. and {Bulla}, M. and 
+	{Cappellaro}, E. and {Campbell}, H. and {Cellier-Holzem}, F. and 
+	{Chen}, T.-W. and {Childress}, M.~J. and {Clocchiatti}, A. and 
+	{Contreras}, C. and {Dall'Ora}, M. and {Danziger}, J. and {de Jaeger}, T. and 
+	{De Cia}, A. and {Della Valle}, M. and {Dennefeld}, M. and {Elias-Rosa}, N. and 
+	{Elman}, N. and {Feindt}, U. and {Fleury}, M. and {Gall}, E. and 
+	{Gonzalez-Gaitan}, S. and {Galbany}, L. and {Morales Garoffolo}, A. and 
+	{Greggio}, L. and {Guillou}, L.~L. and {Hachinger}, S. and {Hadjiyska}, E. and 
+	{Hage}, P.~E. and {Hillebrandt}, W. and {Hodgkin}, S. and {Hsiao}, E.~Y. and 
+	{James}, P.~A. and {Jerkstrand}, A. and {Kangas}, T. and {Kankare}, E. and 
+	{Kotak}, R. and {Kromer}, M. and {Kuncarayakti}, H. and {Leloudas}, G. and 
+	{Lundqvist}, P. and {Lyman}, J.~D. and {Hook}, I.~M. and {Maguire}, K. and 
+	{Manulis}, I. and {Margheim}, S.~J. and {Mattila}, S. and {Maund}, J.~R. and 
+	{Mazzali}, P.~A. and {McCrum}, M. and {McKinnon}, R. and {Moreno-Raya}, M.~E. and 
+	{Nicholl}, M. and {Nugent}, P. and {Pain}, R. and {Pignata}, G. and 
+	{Phillips}, M.~M. and {Polshaw}, J. and {Pumo}, M.~L. and {Rabinowitz}, D. and 
+	{Reilly}, E. and {Romero-Ca{\~n}izales}, C. and {Scalzo}, R. and 
+	{Schmidt}, B. and {Schulze}, S. and {Sim}, S. and {Sollerman}, J. and 
+	{Taddia}, F. and {Tartaglia}, L. and {Terreran}, G. and {Tomasella}, L. and 
+	{Turatto}, M. and {Walker}, E. and {Walton}, N.~A. and {Wyrzykowski}, L. and 
+	{Yuan}, F. and {Zampieri}, L.},
+    title = "{PESSTO: survey description and products from the first data release by the Public ESO Spectroscopic Survey of Transient Objects}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1411.0299},
+ primaryClass = "astro-ph.SR",
+ keywords = {instrumentation: spectrographs, methods: data analysis, techniques: spectroscopic, surveys, supernovae: general},
+     year = 2015,
+    month = jul,
+   volume = 579,
+      eid = {A40},
+    pages = {A40},
+      doi = {10.1051/0004-6361/201425237},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...579A..40S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2015MNRAS.448.1206M,
+   author = {{McCrum}, M. and {Smartt}, S.~J. and {Rest}, A. and {Smith}, K. and 
+	{Kotak}, R. and {Rodney}, S.~A. and {Young}, D.~R. and {Chornock}, R. and 
+	{Berger}, E. and {Foley}, R.~J. and {Fraser}, M. and {Wright}, D. and 
+	{Scolnic}, D. and {Tonry}, J.~L. and {Urata}, Y. and {Huang}, K. and 
+	{Pastorello}, A. and {Botticella}, M.~T. and {Valenti}, S. and 
+	{Mattila}, S. and {Kankare}, E. and {Farrow}, D.~J. and {Huber}, M.~E. and 
+	{Stubbs}, C.~W. and {Kirshner}, R.~P. and {Bresolin}, F. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Draper}, P.~W. and 
+	{Flewelling}, H. and {Jedicke}, R. and {Kaiser}, N. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W. and 
+	{Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Selecting superluminous supernovae in faint galaxies from the first year of the Pan-STARRS1 Medium Deep Survey}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1402.1631},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: PS1-10pm, supernovae: individual: PS1-10ahf},
+     year = 2015,
+    month = apr,
+   volume = 448,
+    pages = {1206-1231},
+      doi = {10.1093/mnras/stv034},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.448.1206M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.449..451W,
+   author = {{Wright}, D.~E. and {Smartt}, S.~J. and {Smith}, K.~W. and {Miller}, P. and 
+	{Kotak}, R. and {Rest}, A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M. and {Jedicke}, R. and 
+	{Kaiser}, N. and {Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and 
+	{Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Machine learning for transient discovery in Pan-STARRS1 difference imaging}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1501.05470},
+ primaryClass = "astro-ph.IM",
+ keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
+     year = 2015,
+    month = may,
+   volume = 449,
+    pages = {451-466},
+      doi = {10.1093/mnras/stv292},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449..451W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...756..158S,
+   author = {{Schlafly}, E.~F. and {Finkbeiner}, D.~P. and {Juri{\'c}}, M. and 
+	{Magnier}, E.~A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Grav}, T. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Martin}, N.~F. and {Morgan}, J.~S. and {Price}, P.~A. and {Rix}, H.-W. and 
+	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
+    title = "{Photometric Calibration of the First 1.5 Years of the Pan-STARRS1 Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1201.2208},
+ primaryClass = "astro-ph.IM",
+ keywords = {atmospheric effects, methods: data analysis, surveys, techniques: photometric},
+     year = 2012,
+    month = sep,
+   volume = 756,
+      eid = {158},
+    pages = {158},
+      doi = {10.1088/0004-637X/756/2/158},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..158S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...810...25G,
+   author = {{Green}, G.~M. and {Schlafly}, E.~F. and {Finkbeiner}, D.~P. and 
+	{Rix}, H.-W. and {Martin}, N. and {Burgett}, W. and {Draper}, P.~W. and 
+	{Flewelling}, H. and {Hodapp}, K. and {Kaiser}, N. and {Kudritzki}, R.~P. and 
+	{Magnier}, E. and {Metcalfe}, N. and {Price}, P. and {Tonry}, J. and 
+	{Wainscoat}, R.},
+    title = "{A Three-dimensional Map of Milky Way Dust}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1507.01005},
+ keywords = {dust, extinction, Galaxy: structure, methods: statistical},
+     year = 2015,
+    month = sep,
+   volume = 810,
+      eid = {25},
+    pages = {25},
+      doi = {10.1088/0004-637X/810/1/25},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...810...25G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...750...99T,
+   author = {{Tonry}, J.~L. and {Stubbs}, C.~W. and {Lykke}, K.~R. and {Doherty}, P. and 
+	{Shivvers}, I.~S. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
+	{Wainscoat}, R.~J.},
+    title = "{The Pan-STARRS1 Photometric System}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1203.0297},
+ primaryClass = "astro-ph.IM",
+ keywords = {atmospheric effects, instrumentation: photometers, surveys, techniques: photometric},
+     year = 2012,
+    month = may,
+   volume = 750,
+      eid = {99},
+    pages = {99},
+      doi = {10.1088/0004-637X/750/2/99},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...750...99T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015A&A...580L..15P,
+   author = {{Polshaw}, J. and {Kotak}, R. and {Chambers}, K.~C. and {Smartt}, S.~J. and 
+	{Taubenberger}, S. and {Kromer}, M. and {Gall}, E.~E.~E. and 
+	{Hillebrandt}, W. and {Huber}, M. and {Smith}, K.~W. and {Wainscoat}, R.~J.
+	},
+    title = "{A supernova distance to the anchor galaxy NGC 4258}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1509.00507},
+ keywords = {supernovae: general, supernovae: individual: SN 2014bc, distance scale, galaxies: individual: NGC 4258},
+     year = 2015,
+    month = aug,
+   volume = 580,
+      eid = {L15},
+    pages = {L15},
+      doi = {10.1051/0004-6361/201526902},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...580L..15P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ApJS..182..543A,
+   author = {{Abazajian}, K.~N. and {Adelman-McCarthy}, J.~K. and {Ag{\"u}eros}, M.~A. and 
+	{Allam}, S.~S. and {Allende Prieto}, C. and {An}, D. and {Anderson}, K.~S.~J. and 
+	{Anderson}, S.~F. and {Annis}, J. and {Bahcall}, N.~A. and et al.},
+    title = "{The Seventh Data Release of the Sloan Digital Sky Survey}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {0812.0649},
+ keywords = {atlases, catalogs, surveys},
+     year = 2009,
+    month = jun,
+   volume = 182,
+      eid = {543},
+    pages = {543-558},
+      doi = {10.1088/0067-0049/182/2/543},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJS..182..543A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJS..211....7A,
+   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
+	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
+	{Adams}, C. and {Adams}, T. and et al.},
+    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1310.2314},
+ primaryClass = "astro-ph.IM",
+ keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
+     year = 2014,
+    month = mar,
+   volume = 211,
+      eid = {7},
+    pages = {7},
+      doi = {10.1088/0067-0049/211/1/7},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015IAUGA..2258303H,
+   author = {{Huber}, M. and {Carter Chambers}, K. and {Flewelling}, H. and 
+	{Smartt}, S.~J. and {Smith}, K. and {Wright}, D.},
+    title = "{The Pan-STARRS Survey for Transients (PSST)}",
+  journal = {IAU General Assembly},
+     year = 2015,
+    month = aug,
+   volume = 22,
+    pages = {58303},
+   adsurl = {http://adsabs.harvard.edu/abs/2015IAUGA..2258303H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...788...48S,
+   author = {{Shappee}, B.~J. and {Prieto}, J.~L. and {Grupe}, D. and {Kochanek}, C.~S. and 
+	{Stanek}, K.~Z. and {De Rosa}, G. and {Mathur}, S. and {Zu}, Y. and 
+	{Peterson}, B.~M. and {Pogge}, R.~W. and {Komossa}, S. and {Im}, M. and 
+	{Jencson}, J. and {Holoien}, T.~W.-S. and {Basu}, U. and {Beacom}, J.~F. and 
+	{Szczygie{\l}}, D.~M. and {Brimacombe}, J. and {Adams}, S. and 
+	{Campillay}, A. and {Choi}, C. and {Contreras}, C. and {Dietrich}, M. and 
+	{Dubberley}, M. and {Elphick}, M. and {Foale}, S. and {Giustini}, M. and 
+	{Gonzalez}, C. and {Hawkins}, E. and {Howell}, D.~A. and {Hsiao}, E.~Y. and 
+	{Koss}, M. and {Leighly}, K.~M. and {Morrell}, N. and {Mudd}, D. and 
+	{Mullins}, D. and {Nugent}, J.~M. and {Parrent}, J. and {Phillips}, M.~M. and 
+	{Pojmanski}, G. and {Rosing}, W. and {Ross}, R. and {Sand}, D. and 
+	{Terndrup}, D.~M. and {Valenti}, S. and {Walker}, Z. and {Yoon}, Y.
+	},
+    title = "{The Man behind the Curtain: X-Rays Drive the UV through NIR Variability in the 2013 Active Galactic Nucleus Outburst in NGC 2617}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.2241},
+ primaryClass = "astro-ph.HE",
+ keywords = {galaxies: active, galaxies: nuclei, galaxies: Seyfert, line: formation, line: profiles},
+     year = 2014,
+    month = jun,
+   volume = 788,
+      eid = {48},
+    pages = {48},
+      doi = {10.1088/0004-637X/788/1/48},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788...48S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ATel.4872....1D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A.~A. and 
+	{Graham}, M.~J. and {Williams}, R. and {Prieto}, J. and {Catelan}, M. and 
+	{Christensen}, E. and {Larson}, S.~M. and {Beshore}, E.~C.},
+    title = "{Catalina Supernova Candidates}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Optical, Supernovae, Transient},
+     year = 2013,
+    month = mar,
+   volume = 4872,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ATel.4872....1D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015PASA...32...10F,
+   author = {{Flesch}, E.~W.},
+    title = "{The Half Million Quasars (HMQ) Catalogue}",
+  journal = {\pasa},
+archivePrefix = "arXiv",
+   eprint = {1502.06303},
+ keywords = {catalogues, quasars: general},
+     year = 2015,
+    month = mar,
+   volume = 32,
+      eid = {e010},
+    pages = {10},
+      doi = {10.1017/pasa.2015.10},
+   adsurl = {http://adsabs.harvard.edu/abs/2015PASA...32...10F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ATel.7153....1H,
+   author = {{Huber}, M. and {Chambers}, K.~C. and {Flewelling}, H. and {Willman}, M. and 
+	{Primak}, N. and {Schultz}, A. and {Gibson}, B. and {Magnier}, E. and 
+	{Waters}, C. and {Tonry}, J. and {Wainscoat}, R.~J. and {Smith}, K.~W. and 
+	{Wright}, D. and {Smartt}, S.~J. and {Foley}, R.~J. and {Jha}, S.~W. and 
+	{Rest}, A. and {Scolnic}, D.},
+    title = "{The Pan-STARRS Survey for Transients (PSST) - first announcement and public release}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Supernovae},
+     year = 2015,
+    month = feb,
+   volume = 7153,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.7153....1H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001A&A...374...92V,
+   author = {{V{\'e}ron-Cetty}, M.-P. and {V{\'e}ron}, P.},
+    title = "{A catalogue of quasars and active nuclei: 10th edition}",
+  journal = {\aap},
+ keywords = {QUASARS: GENERAL, GALAXIES: SEYFERT, BL LACERTAE OBJECTS: GENERAL},
+     year = 2001,
+    month = jul,
+   volume = 374,
+    pages = {92-94},
+      doi = {10.1051/0004-6361:20010718},
+   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...374...92V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003AJ....126..666I,
+   author = {{Inada}, N. and {Becker}, R.~H. and {Burles}, S. and {Castander}, F.~J. and 
+	{Eisenstein}, D. and {Hall}, P.~B. and {Johnston}, D.~E. and 
+	{Pindor}, B. and {Richards}, G.~T. and {Schechter}, P.~L. and 
+	{Sekiguchi}, M. and {White}, R.~L. and {Brinkmann}, J. and {Frieman}, J.~A. and 
+	{Kleinman}, S.~J. and {Krzesi{\'n}ski}, J. and {Long}, D.~C. and 
+	{Neilsen}, Jr., E.~H. and {Newman}, P.~R. and {Nitta}, A. and 
+	{Schneider}, D.~P. and {Snedden}, S. and {York}, D.~G.},
+    title = "{SDSS J092455.87+021924.9: An Interesting Gravitationally Lensed Quasar from the Sloan Digital Sky Survey}",
+  journal = {\aj},
+   eprint = {astro-ph/0304377},
+ keywords = {Cosmology: Gravitational Lensing, quasars: individual (SDSS J092455.87+021924.9)},
+     year = 2003,
+    month = aug,
+   volume = 126,
+    pages = {666-674},
+      doi = {10.1086/375906},
+   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126..666I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008Natur.456..617K,
+   author = {{Krause}, O. and {Tanaka}, M. and {Usuda}, T. and {Hattori}, T. and 
+	{Goto}, M. and {Birkmann}, S. and {Nomoto}, K.},
+    title = "{Tycho Brahe's 1572 supernova as a standard typeIa as revealed by its light-echo spectrum}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0810.5106},
+     year = 2008,
+    month = dec,
+   volume = 456,
+    pages = {617-619},
+      doi = {10.1038/nature07608},
+   adsurl = {http://adsabs.harvard.edu/abs/2008Natur.456..617K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...780...96S,
+   author = {{Shiode}, J.~H. and {Quataert}, E.},
+    title = "{Setting the Stage for Circumstellar Interaction in Core-Collapse Supernovae. II. Wave-driven Mass Loss in Supernova Progenitors}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1308.5978},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: mass-loss, stars: winds, outflows, supernovae: general},
+     year = 2014,
+    month = jan,
+   volume = 780,
+      eid = {96},
+    pages = {96},
+      doi = {10.1088/0004-637X/780/1/96},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...96S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ApJ...697...29E,
+   author = {{Eriksen}, K.~A. and {Arnett}, D. and {McCarthy}, D.~W. and 
+	{Young}, P.},
+    title = "{The Reddening Toward Cassiopeia A's Supernova: Constraining the $^{56}$Ni Yield}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0902.4029},
+ primaryClass = "astro-ph.SR",
+ keywords = {dust, extinction, nuclear reactions, nucleosynthesis, abundances, supernova remnants, supernovae: individual: SN1680},
+     year = 2009,
+    month = may,
+   volume = 697,
+    pages = {29-36},
+      doi = {10.1088/0004-637X/697/1/29},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...697...29E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015Sci...347..526M,
+   author = {{Milisavljevic}, D. and {Fesen}, R.~A.},
+    title = "{The bubble-like interior of the core-collapse supernova remnant Cassiopeia A}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {1501.07283},
+ primaryClass = "astro-ph.HE",
+     year = 2015,
+    month = jan,
+   volume = 347,
+    pages = {526-530},
+      doi = {10.1126/science.1261949},
+   adsurl = {http://adsabs.harvard.edu/abs/2015Sci...347..526M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ApJ...697..535P,
+   author = {{Patnaude}, D.~J. and {Fesen}, R.~A.},
+    title = "{Proper Motions and Brightness Variations of Nonthermal X-ray Filaments in the Cassiopeia A Supernova Remnant}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0808.0692},
+ keywords = {cosmic rays, ISM: individual: Cassiopeia A, radiation mechanisms: non-thermal},
+     year = 2009,
+    month = may,
+   volume = 697,
+    pages = {535-543},
+      doi = {10.1088/0004-637X/697/1/535},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...697..535P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008ApJ...681L..81R,
+   author = {{Rest}, A. and {Welch}, D.~L. and {Suntzeff}, N.~B. and {Oaster}, L. and 
+	{Lanning}, H. and {Olsen}, K. and {Smith}, R.~C. and {Becker}, A.~C. and 
+	{Bergmann}, M. and {Challis}, P. and {Clocchiatti}, A. and {Cook}, K.~H. and 
+	{Damke}, G. and {Garg}, A. and {Huber}, M.~E. and {Matheson}, T. and 
+	{Minniti}, D. and {Prieto}, J.~L. and {Wood-Vasey}, W.~M.},
+    title = "{Scattered-Light Echoes from the Historical Galactic Supernovae Cassiopeia A and Tycho (SN 1572)}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0805.4607},
+ keywords = {ISM: Individual: Name: Cassiopeia A, ISM: individual (Tycho), ISM: Supernova Remnants, Stars: Supernovae: General},
+     year = 2008,
+    month = jul,
+   volume = 681,
+    pages = {L81-L84},
+      doi = {10.1086/590427},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...681L..81R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ApJ...703..883H,
+   author = {{Hwang}, U. and {Laming}, J.~M.},
+    title = "{The Circumstellar Medium of Cassiopeia a Inferred from the Outer Ejecta Knot Properties}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0907.5177},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, supernova remnants, X-rays: individual: Cassiopeia A},
+     year = 2009,
+    month = sep,
+   volume = 703,
+    pages = {883-893},
+      doi = {10.1088/0004-637X/703/1/883},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...703..883H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...746..130H,
+   author = {{Hwang}, U. and {Laming}, J.~M.},
+    title = "{A Chandra X-Ray Survey of Ejecta in the Cassiopeia A Supernova Remnant}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1111.7316},
+ primaryClass = "astro-ph.HE",
+ keywords = {hydrodynamics, ISM: individual objects: Cassiopeia A, ISM: supernova remnants, X-rays: ISM},
+     year = 2012,
+    month = feb,
+   volume = 746,
+      eid = {130},
+    pages = {130},
+      doi = {10.1088/0004-637X/746/2/130},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..130H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012MNRAS.419.2054W,
+   author = {{Walmswell}, J.~J. and {Eldridge}, J.~J.},
+    title = "{Circumstellar dust as a solution to the red supergiant supernova progenitor problem}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1109.4637},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supergiants, supernovae: general},
+     year = 2012,
+    month = jan,
+   volume = 419,
+    pages = {2054-2062},
+      doi = {10.1111/j.1365-2966.2011.19860.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.2054W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2012ARA&A..50..107L,
+   author = {{Langer}, N.},
+    title = "{Presupernova Evolution of Massive Single and Binary Stars}",
+  journal = {\araa},
+archivePrefix = "arXiv",
+   eprint = {1206.5443},
+ primaryClass = "astro-ph.SR",
+     year = 2012,
+    month = sep,
+   volume = 50,
+    pages = {107-164},
+      doi = {10.1146/annurev-astro-081811-125534},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ARA&A..50..107L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007ARA&A..45..177C,
+   author = {{Crowther}, P.~A.},
+    title = "{Physical Properties of Wolf-Rayet Stars}",
+  journal = {\araa},
+   eprint = {astro-ph/0610356},
+     year = 2007,
+    month = sep,
+   volume = 45,
+    pages = {177-219},
+      doi = {10.1146/annurev.astro.45.051806.110615},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ARA&A..45..177C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.428.1927C,
+   author = {{Crowther}, P.~A.},
+    title = "{On the association between core-collapse supernovae and H ii regions}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1210.1126},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, supernovae: general, H ii regions, galaxies: ISM},
+     year = 2013,
+    month = jan,
+   volume = 428,
+    pages = {1927-1943},
+      doi = {10.1093/mnras/sts145},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.428.1927C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1995ApJ...438..188M,
+   author = {{Massey}, P. and {Lang}, C.~C. and {Degioia-Eastwood}, K. and 
+	{Garmany}, C.~D.},
+    title = "{Massive stars in the field and associations of the magellanic clouds: The upper mass limit, the initial mass function, and a critical test of main-sequence stellar evolutionary theory}",
+  journal = {\apj},
+ keywords = {Magellanic Clouds, Massive Stars, Spatial Distribution, Star Formation, Stellar Evolution, Astronomical Catalogs, Astronomical Photometry, Astronomical Spectroscopy, Metallicity, Stellar Mass},
+     year = 1995,
+    month = jan,
+   volume = 438,
+    pages = {188-217},
+      doi = {10.1086/175064},
+   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...438..188M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@PHDTHESIS{2011PhD_MFT,
+   author = {{Fraser}, M.},
+   school = {Queen's University of Belfast, (2011)},
+     year = 2011,
+    month = December,
+   adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.438..938M,
+   author = {{Maund}, J.~R. and {Reilly}, E. and {Mattila}, S.},
+    title = "{A late-time view of the progenitors of five Type IIP supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.7152},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supernovae: individual: 1999ev, supernovae: individual: 2003gd, supernovae: individual: 2004A, supernovae: individual: 2005cs, supernovae: individual: 2006my},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {938-958},
+      doi = {10.1093/mnras/stt2131},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..938M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010arXiv1011.5494M,
+   author = {{Mattila}, S. and {Smartt}, S. and {Maund}, J. and {Benetti}, S. and 
+	{Ergon}, M.},
+    title = "{The Disappearance of the Red Supergiant Progenitor of Supernova 2008bk}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1011.5494},
+ primaryClass = "astro-ph.SR",
+ keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Cosmology and Extragalactic Astrophysics},
+     year = 2010,
+    month = nov,
+   adsurl = {http://adsabs.harvard.edu/abs/2010arXiv1011.5494M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015MNRAS.446.1213K,
+   author = {{Kochanek}, C.~S.},
+    title = "{Constraints on core collapse from the black hole mass function}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1407.5622},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: black holes - supernovae: general},
+     year = 2015,
+    month = jan,
+   volume = 446,
+    pages = {1213-1222},
+      doi = {10.1093/mnras/stu2056},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.1213K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...785...28K,
+   author = {{Kochanek}, C.~S.},
+    title = "{Failed Supernovae Explain the Compact Remnant Mass Function}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1308.0013},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: evolution, stars: massive, supergiants, supernovae: general},
+     year = 2014,
+    month = apr,
+   volume = 785,
+      eid = {28},
+    pages = {28},
+      doi = {10.1088/0004-637X/785/1/28},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...28K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2003ASPC..295..217T,
+   author = {{Thakar}, A.~R. and {Szalay}, A.~S. and {Vandenberg}, J.~V. and 
+	{Gray}, J. and {Stoughton}, A.~S.},
+    title = "{Data Organization in the SDSS Data Release 1}",
+booktitle = {Astronomical Data Analysis Software and Systems XII},
+     year = 2003,
+   series = {Astronomical Society of the Pacific Conference Series},
+   volume = 295,
+   editor = {{Payne}, H.~E. and {Jedrzejewski}, R.~I. and {Hook}, R.~N.},
+    pages = {217},
+   adsurl = {http://adsabs.harvard.edu/abs/2003ASPC..295..217T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...768L..14P,
+   author = {{Piro}, A.~L.},
+    title = "{Taking the ''Un'' out of ''Unnovae''}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1304.1539},
+ primaryClass = "astro-ph.HE",
+ keywords = {black hole physics, shock waves, stars: evolution, supernovae: general},
+     year = 2013,
+    month = may,
+   volume = 768,
+      eid = {L14},
+    pages = {L14},
+      doi = {10.1088/2041-8205/768/1/L14},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...768L..14P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2014MNRAS.438.1577M,
+   author = {{Maund}, J.~R. and {Mattila}, S. and {Ramirez-Ruiz}, E. and 
+	{Eldridge}, J.~J.},
+    title = "{A new precise mass for the progenitor of the Type IIP SN 2008bk}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1308.4393},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2008bk},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {1577-1592},
+      doi = {10.1093/mnras/stt2296},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438.1577M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009ARA&A..47...63S,
+   author = {{Smartt}, S.~J.},
+    title = "{Progenitors of Core-Collapse Supernovae}",
+  journal = {\araa},
+archivePrefix = "arXiv",
+   eprint = {0908.0700},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = sep,
+   volume = 47,
+    pages = {63-106},
+      doi = {10.1146/annurev-astro-082708-101737},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ARA&A..47...63S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009MNRAS.395.1409S,
+   author = {{Smartt}, S.~J. and {Eldridge}, J.~J. and {Crockett}, R.~M. and 
+	{Maund}, J.~R.},
+    title = "{The death of massive stars - I. Observational constraints on the progenitors of Type II-P supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0809.0403},
+ keywords = {stars: evolution , supergiants , supernovae: general , galaxies: stellar content},
+     year = 2009,
+    month = may,
+   volume = 395,
+    pages = {1409-1437},
+      doi = {10.1111/j.1365-2966.2009.14506.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.395.1409S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572L..61M,
+   author = {{Mazzali}, P.~A. and {Deng}, J. and {Maeda}, K. and {Nomoto}, K. and 
+	{Umeda}, H. and {Hatano}, K. and {Iwamoto}, K. and {Yoshii}, Y. and 
+	{Kobayashi}, Y. and {Minezaki}, T. and {Doi}, M. and {Enya}, K. and 
+	{Tomita}, H. and {Smartt}, S.~J. and {Kinugasa}, K. and {Kawakita}, H. and 
+	{Ayani}, K. and {Kawabata}, T. and {Yamaoka}, H. and {Qiu}, Y.~L. and 
+	{Motohara}, K. and {Gerardy}, C.~L. and {Fesen}, R. and {Kawabata}, K.~S. and 
+	{Iye}, M. and {Kashikawa}, N. and {Kosugi}, G. and {Ohyama}, Y. and 
+	{Takada-Hidai}, M. and {Zhao}, G. and {Chornock}, R. and {Filippenko}, A.~V. and 
+	{Benetti}, S. and {Turatto}, M.},
+    title = "{The Type Ic Hypernova SN 2002ap}",
+  journal = {\apjl},
+ keywords = {Gamma Rays: Bursts, Line: Formation, Line: Identification, Nuclear Reactions, Nucleosynthesis, Abundances, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 2002ap},
+     year = 2002,
+    month = jun,
+   volume = 572,
+    pages = {L61-L65},
+      doi = {10.1086/341504},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572L..61M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000A&A...363..537R,
+   author = {{Rolleston}, W.~R.~J. and {Smartt}, S.~J. and {Dufton}, P.~L. and 
+	{Ryans}, R.~S.~I.},
+    title = "{The Galactic metallicity gradient}",
+  journal = {\aap},
+ keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES, GALAXY: EVOLUTION},
+     year = 2000,
+    month = nov,
+   volume = 363,
+    pages = {537-554},
+   adsurl = {http://adsabs.harvard.edu/abs/2000A\&A...363..537R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997ApJ...481L..47S,
+   author = {{Smartt}, S.~J. and {Rolleston}, W.~R.~J.},
+    title = "{The Galactic Oxygen Abundance Gradient}",
+  journal = {\apjl},
+ keywords = {GALAXY: ABUNDANCES, GALAXY: EVOLUTION, STARS: EARLY-TYPE, STARS: ABUNDANCES, STARS: ATMOSPHERES, Galaxy: Abundances, Galaxy: Evolution, Stars: Abundances, Stars: Atmospheres, Stars: Early-Type},
+     year = 1997,
+    month = may,
+   volume = 481,
+    pages = {L47-L50},
+      doi = {10.1086/310640},
+   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...481L..47S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000AJ....120.1579Y,
+   author = {{York}, D.~G. and {Adelman}, J. and {Anderson}, Jr., J.~E. and 
+	{Anderson}, S.~F. and {Annis}, J. and {Bahcall}, N.~A. and {Bakken}, J.~A. and 
+	{Barkhouser}, R. and {Bastian}, S. and {Berman}, E. and {Boroski}, W.~N. and 
+	{Bracker}, S. and {Briegel}, C. and {Briggs}, J.~W. and {Brinkmann}, J. and 
+	{Brunner}, R. and {Burles}, S. and {Carey}, L. and {Carr}, M.~A. and 
+	{Castander}, F.~J. and {Chen}, B. and {Colestock}, P.~L. and 
+	{Connolly}, A.~J. and {Crocker}, J.~H. and {Csabai}, I. and 
+	{Czarapata}, P.~C. and {Davis}, J.~E. and {Doi}, M. and {Dombeck}, T. and 
+	{Eisenstein}, D. and {Ellman}, N. and {Elms}, B.~R. and {Evans}, M.~L. and 
+	{Fan}, X. and {Federwitz}, G.~R. and {Fiscelli}, L. and {Friedman}, S. and 
+	{Frieman}, J.~A. and {Fukugita}, M. and {Gillespie}, B. and 
+	{Gunn}, J.~E. and {Gurbani}, V.~K. and {de Haas}, E. and {Haldeman}, M. and 
+	{Harris}, F.~H. and {Hayes}, J. and {Heckman}, T.~M. and {Hennessy}, G.~S. and 
+	{Hindsley}, R.~B. and {Holm}, S. and {Holmgren}, D.~J. and {Huang}, C.-h. and 
+	{Hull}, C. and {Husby}, D. and {Ichikawa}, S.-I. and {Ichikawa}, T. and 
+	{Ivezi{\'c}}, {\v Z}. and {Kent}, S. and {Kim}, R.~S.~J. and 
+	{Kinney}, E. and {Klaene}, M. and {Kleinman}, A.~N. and {Kleinman}, S. and 
+	{Knapp}, G.~R. and {Korienek}, J. and {Kron}, R.~G. and {Kunszt}, P.~Z. and 
+	{Lamb}, D.~Q. and {Lee}, B. and {Leger}, R.~F. and {Limmongkol}, S. and 
+	{Lindenmeyer}, C. and {Long}, D.~C. and {Loomis}, C. and {Loveday}, J. and 
+	{Lucinio}, R. and {Lupton}, R.~H. and {MacKinnon}, B. and {Mannery}, E.~J. and 
+	{Mantsch}, P.~M. and {Margon}, B. and {McGehee}, P. and {McKay}, T.~A. and 
+	{Meiksin}, A. and {Merelli}, A. and {Monet}, D.~G. and {Munn}, J.~A. and 
+	{Narayanan}, V.~K. and {Nash}, T. and {Neilsen}, E. and {Neswold}, R. and 
+	{Newberg}, H.~J. and {Nichol}, R.~C. and {Nicinski}, T. and 
+	{Nonino}, M. and {Okada}, N. and {Okamura}, S. and {Ostriker}, J.~P. and 
+	{Owen}, R. and {Pauls}, A.~G. and {Peoples}, J. and {Peterson}, R.~L. and 
+	{Petravick}, D. and {Pier}, J.~R. and {Pope}, A. and {Pordes}, R. and 
+	{Prosapio}, A. and {Rechenmacher}, R. and {Quinn}, T.~R. and 
+	{Richards}, G.~T. and {Richmond}, M.~W. and {Rivetta}, C.~H. and 
+	{Rockosi}, C.~M. and {Ruthmansdorfer}, K. and {Sandford}, D. and 
+	{Schlegel}, D.~J. and {Schneider}, D.~P. and {Sekiguchi}, M. and 
+	{Sergey}, G. and {Shimasaku}, K. and {Siegmund}, W.~A. and {Smee}, S. and 
+	{Smith}, J.~A. and {Snedden}, S. and {Stone}, R. and {Stoughton}, C. and 
+	{Strauss}, M.~A. and {Stubbs}, C. and {SubbaRao}, M. and {Szalay}, A.~S. and 
+	{Szapudi}, I. and {Szokoly}, G.~P. and {Thakar}, A.~R. and {Tremonti}, C. and 
+	{Tucker}, D.~L. and {Uomoto}, A. and {Vanden Berk}, D. and {Vogeley}, M.~S. and 
+	{Waddell}, P. and {Wang}, S.-i. and {Watanabe}, M. and {Weinberg}, D.~H. and 
+	{Yanny}, B. and {Yasuda}, N. and {SDSS Collaboration}},
+    title = "{The Sloan Digital Sky Survey: Technical Summary}",
+  journal = {\aj},
+   eprint = {astro-ph/0006396},
+ keywords = {Cosmology: Observations, Instrumentation: Miscellaneous},
+     year = 2000,
+    month = sep,
+   volume = 120,
+    pages = {1579-1587},
+      doi = {10.1086/301513},
+   adsurl = {http://adsabs.harvard.edu/abs/2000AJ....120.1579Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015ApJ...813...44L,
+   author = {{Laevens}, B.~P.~M. and {Martin}, N.~F. and {Bernard}, E.~J. and 
+	{Schlafly}, E.~F. and {Sesar}, B. and {Rix}, H.-W. and {Bell}, E.~F. and 
+	{Ferguson}, A.~M.~N. and {Slater}, C.~T. and {Sweeney}, W.~E. and 
+	{Wyse}, R.~F.~G. and {Huxor}, A.~P. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Draper}, P.~W. and {Hodapp}, K.~A. and 
+	{Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and {Tonry}, J.~L. and 
+	{Wainscoat}, R.~J. and {Waters}, C.},
+    title = "{Sagittarius II, Draco II and Laevens 3: Three New Milky Way Satellites Discovered in the Pan-STARRS 1 3{$\pi$} Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1507.07564},
+ keywords = {galaxies: dwarf, Galaxy: structure, globular clusters: general, Local Group},
+     year = 2015,
+    month = nov,
+   volume = 813,
+      eid = {44},
+    pages = {44},
+      doi = {10.1088/0004-637X/813/1/44},
+   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...813...44L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2016A&A...595A...4L,
+   author = {{Lindegren}, L. and {Lammers}, U. and {Bastian}, U. and {Hern{\'a}ndez}, J. and 
+	{Klioner}, S. and {Hobbs}, D. and {Bombrun}, A. and {Michalik}, D. and 
+	{Ramos-Lerate}, M. and {Butkevich}, A. and {Comoretto}, G. and 
+	{Joliet}, E. and {Holl}, B. and {Hutton}, A. and {Parsons}, P. and 
+	{Steidelm{\"u}ller}, H. and {Abbas}, U. and {Altmann}, M. and 
+	{Andrei}, A. and {Anton}, S. and {Bach}, N. and {Barache}, C. and 
+	{Becciani}, U. and {Berthier}, J. and {Bianchi}, L. and {Biermann}, M. and 
+	{Bouquillon}, S. and {Bourda}, G. and {Br{\"u}semeister}, T. and 
+	{Bucciarelli}, B. and {Busonero}, D. and {Carlucci}, T. and 
+	{Casta{\~n}eda}, J. and {Charlot}, P. and {Clotet}, M. and {Crosta}, M. and 
+	{Davidson}, M. and {de Felice}, F. and {Drimmel}, R. and {Fabricius}, C. and 
+	{Fienga}, A. and {Figueras}, F. and {Fraile}, E. and {Gai}, M. and 
+	{Garralda}, N. and {Geyer}, R. and {Gonz{\'a}lez-Vidal}, J.~J. and 
+	{Guerra}, R. and {Hambly}, N.~C. and {Hauser}, M. and {Jordan}, S. and 
+	{Lattanzi}, M.~G. and {Lenhardt}, H. and {Liao}, S. and {L{\"o}ffler}, W. and 
+	{McMillan}, P.~J. and {Mignard}, F. and {Mora}, A. and {Morbidelli}, R. and 
+	{Portell}, J. and {Riva}, A. and {Sarasso}, M. and {Serraller}, I. and 
+	{Siddiqui}, H. and {Smart}, R. and {Spagna}, A. and {Stampa}, U. and 
+	{Steele}, I. and {Taris}, F. and {Torra}, J. and {van Reeven}, W. and 
+	{Vecchiato}, A. and {Zschocke}, S. and {de Bruijne}, J. and 
+	{Gracia}, G. and {Raison}, F. and {Lister}, T. and {Marchant}, J. and 
+	{Messineo}, R. and {Soffel}, M. and {Osorio}, J. and {de Torres}, A. and 
+	{O'Mullane}, W.},
+    title = "{Gaia Data Release 1. Astrometry: one billion positions, two million proper motions and parallaxes}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1609.04303},
+ keywords = {astrometry, parallaxes, proper motions, methods: data analysis, space vehicles: instruments, reference systems},
+     year = 2016,
+    month = nov,
+   volume = 595,
+      eid = {A4},
+    pages = {A4},
+      doi = {10.1051/0004-6361/201628714},
+   adsurl = {http://adsabs.harvard.edu/abs/2016A&A...595A...4L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2007A&A...473..603M,
+   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Vink}, J.~S. and {Puls}, J. and  {Evans}, C.~J. and {Smartt}, S.~J. and {Crowther}, P.~A. and 	{Herrero}, A. and {Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and 	{Villamariz}, M.~R.},
+    title = "{The empirical metallicity dependence of the mass-loss rate of O- and early B-type stars}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0708.2042},
+ keywords = {stars: early-type, Magellanic Clouds, stars: winds, outflows, stars: evolution, stars: mass-loss},
+     year = 2007,
+    month = oct,
+   volume = 473,
+    pages = {603-614},
+      doi = {10.1051/0004-6361:20077545},
+   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...473..603M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007Natur.447..829P,
+   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
+	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
+	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
+	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
+	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
+	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
+	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
+	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
+	},
+    title = "{A giant outburst two years before the core-collapse of a massive star}",
+  journal = {\nat},
+   eprint = {astro-ph/0703663},
+     year = 2007,
+    month = jun,
+   volume = 447,
+    pages = {829-832},
+      doi = {10.1038/nature05825},
+   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004Natur.427..129M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.~P. and 
+	{Podsiadlowski}, P. and {Gilmore}, G.~F.},
+    title = "{The massive binary companion star to the progenitor of supernova 1993J}",
+  journal = {\nat},
+   eprint = {astro-ph/0401090},
+     year = 2004,
+    month = jan,
+   volume = 427,
+    pages = {129-131},
+   adsurl = {http://adsabs.harvard.edu/abs/2004Natur.427..129M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004Natur.431.1069R,
+   author = {{Ruiz-Lapuente}, P. and {Comeron}, F. and {M{\'e}ndez}, J. and 
+	{Canal}, R. and {Smartt}, S.~J. and {Filippenko}, A.~V. and 
+	{Kurucz}, R.~L. and {Chornock}, R. and {Foley}, R.~J. and {Stanishev}, V. and 
+	{Ibata}, R.},
+    title = "{The binary progenitor of Tycho Brahe's 1572 supernova}",
+  journal = {\nat},
+   eprint = {astro-ph/0410673},
+     year = 2004,
+    month = oct,
+   volume = 431,
+    pages = {1069-1072},
+      doi = {10.1038/nature03006},
+   adsurl = {http://adsabs.harvard.edu/abs/2004Natur.431.1069R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004Sci...303..499S,
+   author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Tout}, C.~A. and 
+	{Gilmore}, G.~F. and {Mattila}, S. and {Benn}, C.~R.},
+    title = "{Detection of a Red Supergiant Progenitor Star of a Type II-Plateau Supernova}",
+  journal = {Science},
+   eprint = {astro-ph/0401235},
+     year = 2004,
+    month = jan,
+   volume = 303,
+    pages = {499-503},
+      doi = {10.1126/science.1092967},
+   adsurl = {http://adsabs.harvard.edu/abs/2004Sci...303..499S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007A&A...466..277H,
+   author = {{Hunter}, I. and {Dufton}, P.~L. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
+	{Evans}, C.~J. and {Lennon}, D.~J. and {Trundle}, C. and {Hubeny}, I. and 
+	{Lanz}, T.},
+    title = "{The VLT-FLAMES survey of massive stars: surface chemical compositions of B-type stars in the Magellanic Clouds}",
+  journal = {\aap},
+   eprint = {astro-ph/0609710},
+ keywords = {stars: early-type, stars: atmospheres, stars: abundances, Magellanic Clouds, galaxies: abundances},
+     year = 2007,
+    month = apr,
+   volume = 466,
+    pages = {277-300},
+      doi = {10.1051/0004-6361:20066148},
+   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...466..277H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...456..623E,
+   author = {{Evans}, C.~J. and {Lennon}, D.~J. and {Smartt}, S.~J. and {Trundle}, C.
+	},
+    title = "{The VLT-FLAMES survey of massive stars: observations centered on the Magellanic Cloud clusters NGC 330, NGC 346, NGC 2004, and the N11 region}",
+  journal = {\aap},
+   eprint = {astro-ph/0606405},
+ keywords = {stars: early-type, stars: fundamental parameters, stars: emission-line, Be, binaries: spectroscopic, galaxies: Magellanic Clouds},
+     year = 2006,
+    month = sep,
+   volume = 456,
+    pages = {623-638},
+      doi = {10.1051/0004-6361:20064988},
+   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...456..623E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005A&A...437..467E,
+   author = {{Evans}, C.~J. and {Smartt}, S.~J. and {Lee}, J.-K. and {Lennon}, D.~J. and 
+	{Kaufer}, A. and {Dufton}, P.~L. and {Trundle}, C. and {Herrero}, A. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {de Koter}, A. and {Hamann}, W.-R. and 
+	{Hendry}, M.~A. and {Hunter}, I. and {Irwin}, M.~J. and {Korn}, A.~J. and 
+	{Kudritzki}, R.-P. and {Langer}, N. and {Mokiem}, M.~R. and 
+	{Najarro}, F. and {Pauldrach}, A.~W.~A. and {Przybilla}, N. and 
+	{Puls}, J. and {Ryans}, R.~S.~I. and {Urbaneja}, M.~A. and {Venn}, K.~A. and 
+	{Villamariz}, M.~R.},
+    title = "{The VLT-FLAMES survey of massive stars: Observations in the Galactic clusters NGC 3293, NGC 4755 and NGC 6611}",
+  journal = {\aap},
+   eprint = {astro-ph/0503655},
+ keywords = {stars: early-type, stars: fundamental parameters, open clusters and associations: individual: NGC 3293, open clusters and associations: individual: NGC 4755, open clusters and associations: individual: NGC 6611},
+     year = 2005,
+    month = jul,
+   volume = 437,
+    pages = {467-482},
+      doi = {10.1051/0004-6361:20042446},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...437..467E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...547..765V,
+   author = {{Venn}, K.~A. and {Lennon}, D.~J. and {Kaufer}, A. and {McCarthy}, J.~K. and 
+	{Przybilla}, N. and {Kudritzki}, R.~P. and {Lemke}, M. and {Skillman}, E.~D. and 
+	{Smartt}, S.~J.},
+    title = "{First Stellar Abundances in NGC 6822 from VLT-UVES and Keck-HIRES Spectroscopy}",
+  journal = {\apj},
+   eprint = {astro-ph/0009213},
+ keywords = {Galaxies: Abundances, Galaxies: Individual: NGC Number: NGC 6822, Galaxies: Stellar Content, Stars: Abundances, Stars: Atmospheres, Stars: Supergiants},
+     year = 2001,
+    month = feb,
+   volume = 547,
+    pages = {765-776},
+      doi = {10.1086/318424},
+   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...547..765V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...676L..29H,
+   author = {{Hunter}, I. and {Brott}, I. and {Lennon}, D.~J. and {Langer}, N. and 
+	{Dufton}, P.~L. and {Trundle}, C. and {Smartt}, S.~J. and {de Koter}, A. and 
+	{Evans}, C.~J. and {Ryans}, R.~S.~I.},
+    title = "{The VLT FLAMES Survey of Massive Stars: Rotation and Nitrogen Enrichment as the Key to Understanding Massive Star Evolution}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0711.2267},
+ keywords = {Stars: Early-Type, Stars: Rotation, Stars: Abundances, Stars: Evolution, Galaxies: Magellanic Clouds},
+     year = 2008,
+    month = mar,
+   volume = 676,
+    pages = {L29-L32},
+      doi = {10.1086/587436},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...676L..29H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...456.1131M,
+   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
+	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
+	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
+	{Yoon}, S.-C.},
+    title = "{The VLT-FLAMES survey of massive stars: mass loss and rotation of early-type stars in the SMC}",
+  journal = {\aap},
+   eprint = {astro-ph/0606403},
+ keywords = {galaxies: Magellanic Clouds, stars: atmospheres, stars:, early-type, stars: fundamental parameters, stars: mass-loss, stars: rotation},
+     year = 2006,
+    month = sep,
+   volume = 456,
+    pages = {1131-1151},
+      doi = {10.1051/0004-6361:20064995},
+   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...456.1131M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...479..541H,
+   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
+	{Evans}, C.~J.},
+    title = "{The VLT-FLAMES survey of massive stars: atmospheric parameters and rotational velocity distributions for B-type stars in the Magellanic Clouds}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0711.2264},
+ keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: evolution, galaxies: Magellanic Clouds},
+     year = 2008,
+    month = feb,
+   volume = 479,
+    pages = {541-555},
+      doi = {10.1051/0004-6361:20078511},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...479..541H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009Natur.459..674V,
+   author = {{Valenti}, S. and {Pastorello}, A. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Mazzali}, P.~A. and {Manteca}, J. and {Taubenberger}, S. and 
+	{Elias-Rosa}, N. and {Ferrando}, R. and {Harutyunyan}, A. and 
+	{Hentunen}, V.~P. and {Nissinen}, M. and {Pian}, E. and {Turatto}, M. and 
+	{Zampieri}, L. and {Smartt}, S.~J.},
+    title = "{A low-energy core-collapse supernova without a hydrogen envelope}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0901.2074},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = jun,
+   volume = 459,
+    pages = {674-677},
+      doi = {10.1038/nature08023},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.459..674V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008Sci...321.1185M,
+   author = {{Mazzali}, P.~A. and {Valenti}, S. and {Della Valle}, M. and 
+	{Chincarini}, G. and {Sauer}, D.~N. and {Benetti}, S. and {Pian}, E. and 
+	{Piran}, T. and {D'Elia}, V. and {Elias-Rosa}, N. and {Margutti}, R. and 
+	{Pasotti}, F. and {Antonelli}, L.~A. and {Bufano}, F. and {Campana}, S. and 
+	{Cappellaro}, E. and {Covino}, S. and {D'Avanzo}, P. and {Fiore}, F. and 
+	{Fugazza}, D. and {Gilmozzi}, R. and {Hunter}, D. and {Maguire}, K. and 
+	{Maiorano}, E. and {Marziani}, P. and {Masetti}, N. and {Mirabel}, F. and 
+	{Navasardyan}, H. and {Nomoto}, K. and {Palazzi}, E. and {Pastorello}, A. and 
+	{Panagia}, N. and {Pellizza}, L.~J. and {Sari}, R. and {Smartt}, S. and 
+	{Tagliaferri}, G. and {Tanaka}, M. and {Taubenberger}, S. and 
+	{Tominaga}, N. and {Trundle}, C. and {Turatto}, M.},
+    title = "{The Metamorphosis of Supernova SN 2008D/XRF 080109: A Link Between Supernovae and GRBs/Hypernovae}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {0807.1695},
+     year = 2008,
+    month = aug,
+   volume = 321,
+    pages = {1185-},
+      doi = {10.1126/science.1158088},
+   adsurl = {http://adsabs.harvard.edu/abs/2008Sci...321.1185M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014Natur.512..282M,
+   author = {{Mackey}, J. and {Mohamed}, S. and {Gvaramadze}, V.~V. and {Kotak}, R. and 
+	{Langer}, N. and {Meyer}, D.~M.-A. and {Moriya}, T.~J. and {Neilson}, H.~R.
+	},
+    title = "{Interacting supernovae from photoionization-confined shells around red supergiant stars}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1408.2522},
+ primaryClass = "astro-ph.SR",
+     year = 2014,
+    month = aug,
+   volume = 512,
+    pages = {282-285},
+      doi = {10.1038/nature13522},
+   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.512..282M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1998ApJ...497L..13G,
+   author = {{Galama}, T.~J. and {Groot}, P.~J. and {van Paradijs}, J. and 
+	{Kouveliotou}, C. and {Strom}, R.~G. and {Wijers}, R.~A.~M.~J. and 
+	{Tanvir}, N. and {Bloom}, J. and {Centurion}, M. and {Telting}, J. and 
+	{Rutten}, R.~G.~M. and {Smith}, P. and {Mackey}, C. and {Smartt}, S. and 
+	{Benn}, C. and {Heise}, J. and {in 't Zand}, J.},
+    title = "{Optical Follow-Up of GRB 970508}",
+  journal = {\apjl},
+   eprint = {astro-ph/9802160},
+ keywords = {GAMMA RAYS: BURSTS, Gamma Rays: Bursts},
+     year = 1998,
+    month = apr,
+   volume = 497,
+    pages = {L13-L16},
+      doi = {10.1086/311268},
+   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...497L..13G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011A&A...530A.108E,
+   author = {{Evans}, C.~J. and {Taylor}, W.~D. and {H{\'e}nault-Brunet}, V. and 
+	{Sana}, H. and {de Koter}, A. and {Sim{\'o}n-D{\'{\i}}az}, S. and 
+	{Carraro}, G. and {Bagnoli}, T. and {Bastian}, N. and {Bestenlehner}, J.~M. and 
+	{Bonanos}, A.~Z. and {Bressert}, E. and {Brott}, I. and {Campbell}, M.~A. and 
+	{Cantiello}, M. and {Clark}, J.~S. and {Costa}, E. and {Crowther}, P.~A. and 
+	{de Mink}, S.~E. and {Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P.~R. and 
+	{Friedrich}, K. and {Garcia}, M. and {Gieles}, M. and {Gr{\"a}fener}, G. and 
+	{Herrero}, A. and {Howarth}, I.~D. and {Izzard}, R.~G. and {Langer}, N. and 
+	{Lennon}, D.~J. and {Ma{\'{\i}}z Apell{\'a}niz}, J. and {Markova}, N. and 
+	{Najarro}, F. and {Puls}, J. and {Ramirez}, O.~H. and {Sab{\'{\i}}n-Sanjuli{\'a}n}, C. and 
+	{Smartt}, S.~J. and {Stroud}, V.~E. and {van Loon}, J.~T. and 
+	{Vink}, J.~S. and {Walborn}, N.~R.},
+    title = "{The VLT-FLAMES Tarantula Survey. I. Introduction and observational overview}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1103.5386},
+ primaryClass = "astro-ph.SR",
+ keywords = {open clusters and associations: individual: 30 Doradus, stars: early-type, stars: fundamental parameters, binaries: spectroscopic, stars: Wolf-Rayet},
+     year = 2011,
+    month = jun,
+   volume = 530,
+      eid = {A108},
+    pages = {A108},
+      doi = {10.1051/0004-6361/201116782},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530A.108E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007A&A...465.1003M,
+   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
+	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
+	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
+	{Vink}, J.~S.},
+    title = "{The VLT-FLAMES survey of massive stars: wind properties and evolution of hot massive stars in the Large Magellanic Cloud}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0704.1113},
+ keywords = {galaxies: Magellanic Clouds, stars: atmospheres, stars:, early-type, stars: fundamental parameters, stars: mass loss, stars: evolution},
+     year = 2007,
+    month = apr,
+   volume = 465,
+    pages = {1003-1019},
+      doi = {10.1051/0004-6361:20066489},
+   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...465.1003M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009MNRAS.394.2266P,
+   author = {{Pastorello}, A. and {Valenti}, S. and {Zampieri}, L. and {Navasardyan}, H. and 
+	{Taubenberger}, S. and {Smartt}, S.~J. and {Arkharov}, A.~A. and 
+	{B{\"a}rnbantner}, O. and {Barwig}, H. and {Benetti}, S. and 
+	{Birtwhistle}, P. and {Botticella}, M.~T. and {Cappellaro}, E. and 
+	{Del Principe}, M. and {di Mille}, F. and {di Rico}, G. and 
+	{Dolci}, M. and {Elias-Rosa}, N. and {Efimova}, N.~V. and {Fiedler}, M. and 
+	{Harutyunyan}, A. and {H{\"o}flich}, P.~A. and {Kloehr}, W. and 
+	{Larionov}, V.~M. and {Lorenzi}, V. and {Maund}, J.~R. and {Napoleone}, N. and 
+	{Ragni}, M. and {Richmond}, M. and {Ries}, C. and {Spiro}, S. and 
+	{Temporin}, S. and {Turatto}, M. and {Wheeler}, J.~C.},
+    title = "{SN 2005cs in M51 - II. Complete evolution in the optical and the near-infrared}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0901.2075},
+ primaryClass = "astro-ph.GA",
+ keywords = {supernovae: general , supernovae: individual: SN 2005cs , supernovae: individual: SN 1997D , supernovae: individual: SN 1999br , supernovae: individual: SN 2003Z , galaxies: individual: M51},
+     year = 2009,
+    month = apr,
+   volume = 394,
+    pages = {2266-2282},
+      doi = {10.1111/j.1365-2966.2009.14505.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.394.2266P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001MNRAS.325..907F,
+   author = {{Fassia}, A. and {Meikle}, W.~P.~S. and {Chugai}, N. and {Geballe}, T.~R. and 
+	{Lundqvist}, P. and {Walton}, N.~A. and {Pollacco}, D. and {Veilleux}, S. and 
+	{Wright}, G.~S. and {Pettini}, M. and {Kerr}, T. and {Puchnarewicz}, E. and 
+	{Puxley}, P. and {Irwin}, M. and {Packham}, C. and {Smartt}, S.~J. and 
+	{Harmer}, D.},
+    title = "{Optical and infrared spectroscopy of the type IIn SN 1998S: days 3-127}",
+  journal = {\mnras},
+   eprint = {astro-ph/0011340},
+ keywords = {CIRCUMSTELLAR MATTER, SUPERNOVAE: INDIVIDUAL: SN 1998S},
+     year = 2001,
+    month = aug,
+   volume = 325,
+    pages = {907-930},
+      doi = {10.1046/j.1365-8711.2001.04282.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.325..907F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009MNRAS.398.1041B,
+   author = {{Botticella}, M.~T. and {Pastorello}, A. and {Smartt}, S.~J. and 
+	{Meikle}, W.~P.~S. and {Benetti}, S. and {Kotak}, R. and {Cappellaro}, E. and 
+	{Crockett}, R.~M. and {Mattila}, S. and {Sereno}, M. and {Patat}, F. and 
+	{Tsvetkov}, D. and {van Loon}, J.~T. and {Abraham}, D. and {Agnoletto}, I. and 
+	{Arbour}, R. and {Benn}, C. and {di Rico}, G. and {Elias-Rosa}, N. and 
+	{Gorshanov}, D.~L. and {Harutyunyan}, A. and {Hunter}, D. and 
+	{Lorenzi}, V. and {Keenan}, F.~P. and {Maguire}, K. and {Mendez}, J. and 
+	{Mobberley}, M. and {Navasardyan}, H. and {Ries}, C. and {Stanishev}, V. and 
+	{Taubenberger}, S. and {Trundle}, C. and {Turatto}, M. and {Volkov}, I.~M.
+	},
+    title = "{SN 2008S: an electron-capture SN from a super-AGB progenitor?}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0903.1286},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: AGB and post-AGB , stars: general , supernovae: general , supernovae: individual: SN 2008S , supernovae: individual: NGC300 OT2008-1 , supernovae: individual: M85 OT2006-1},
+     year = 2009,
+    month = sep,
+   volume = 398,
+    pages = {1041-1068},
+      doi = {10.1111/j.1365-2966.2009.15082.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.398.1041B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009A&A...496..841H,
+   author = {{Hunter}, I. and {Brott}, I. and {Langer}, N. and {Lennon}, D.~J. and 
+	{Dufton}, P.~L. and {Howarth}, I.~D. and {Ryans}, R.~S.~I. and 
+	{Trundle}, C. and {Evans}, C.~J. and {de Koter}, A. and {Smartt}, S.~J.
+	},
+    title = "{The VLT-FLAMES survey of massive stars: constraints on stellar evolution from the chemical compositions of rapidly rotating Galactic and Magellanic Cloud B-type stars}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0901.3853},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: abundances, stars: evolution, galaxies: Magellanic Clouds},
+     year = 2009,
+    month = mar,
+   volume = 496,
+    pages = {841-853},
+      doi = {10.1051/0004-6361/200809925},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...496..841H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...483L..47T,
+   author = {{Trundle}, C. and {Kotak}, R. and {Vink}, J.~S. and {Meikle}, W.~P.~S.
+	},
+    title = "{SN 2005 gj: evidence for LBV supernovae progenitors?}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0804.2392},
+ keywords = {stars: supernovae: general, stars: supernovae: individual: SN 2005gj, stars: supernovae: individual: SN 2002ic, stars: circumstellar matter, stars: evolution, stars: winds, outflow},
+     year = 2008,
+    month = jun,
+   volume = 483,
+    pages = {L47-L50},
+      doi = {10.1051/0004-6361:200809755},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...483L..47T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007A&A...471..625T,
+   author = {{Trundle}, C. and {Dufton}, P.~L. and {Hunter}, I. and {Evans}, C.~J. and 
+	{Lennon}, D.~J. and {Smartt}, S.~J. and {Ryans}, R.~S.~I.},
+    title = "{The VLT-FLAMES survey of massive stars: evolution of surface N abundances and effective temperature scales in the Galaxy and Magellanic Clouds}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0706.1731},
+ keywords = {stars: atmospheres, stars: early-type, galaxies: abundances, stars: fundamental parameters, stars: evolution},
+     year = 2007,
+    month = aug,
+   volume = 471,
+    pages = {625-643},
+      doi = {10.1051/0004-6361:20077838},
+   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...471..625T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.364L..33M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Danziger}, I.~J.},
+    title = "{The progenitor of SN 2005cs in the Whirlpool Galaxy}",
+  journal = {\mnras},
+   eprint = {astro-ph/0507502},
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2005cs, galaxies: individual: M51},
+     year = 2005,
+    month = nov,
+   volume = 364,
+    pages = {L33-L37},
+      doi = {10.1111/j.1745-3933.2005.00100.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.364L..33M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.359..906H,
+   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Maund}, J.~R. and {Pastorello}, A. and 
+	{Zampieri}, L. and {Benetti}, S. and {Turatto}, M. and {Cappellaro}, E. and 
+	{Meikle}, W.~P.~S. and {Kotak}, R. and {Irwin}, M.~J. and {Jonker}, P.~G. and 
+	{Vermaas}, L. and {Peletier}, R.~F. and {van Woerden}, H. and 
+	{Exter}, K.~M. and {Pollacco}, D.~L. and {Leon}, S. and {Verley}, S. and 
+	{Benn}, C.~R. and {Pignata}, G.},
+    title = "{A study of the Type II-P supernova 2003gd in M74}",
+  journal = {\mnras},
+   eprint = {astro-ph/0501341},
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2003gd, galaxies: distances and redshifts, galaxies: individual: M74},
+     year = 2005,
+    month = may,
+   volume = 359,
+    pages = {906-926},
+      doi = {10.1111/j.1365-2966.2005.08928.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.359..906H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010A&A...512A..70Y,
+   author = {{Young}, D.~R. and {Smartt}, S.~J. and {Valenti}, S. and {Pastorello}, A. and 
+	{Benetti}, S. and {Benn}, C.~R. and {Bersier}, D. and {Botticella}, M.~T. and 
+	{Corradi}, R.~L.~M. and {Harutyunyan}, A.~H. and {Hrudkova}, M. and 
+	{Hunter}, I. and {Mattila}, S. and {de Mooij}, E.~J.~W. and 
+	{Navasardyan}, H. and {Snellen}, I.~A.~G. and {Tanvir}, N.~R. and 
+	{Zampieri}, L.},
+    title = "{Two type Ic supernovae in low-metallicity, dwarf galaxies: diversity of explosions}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0910.2248},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: individual: SN 2007bg, galaxies: dwarf, Galaxy: abundances, supernovae: individual: SN 2007bi},
+     year = 2010,
+    month = mar,
+   volume = 512,
+      eid = {A70},
+    pages = {A70},
+      doi = {10.1051/0004-6361/200913004},
+   adsurl = {http://adsabs.harvard.edu/abs/2010A&A...512A..70Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005A&A...443..911C,
+   author = {{Calchi Novati}, S. and {Paulin-Henriksson}, S. and {An}, J. and 
+	{Baillon}, P. and {Belokurov}, V. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
+	{Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and {Gould}, A. and 
+	{Hewett}, P. and {Jetzer}, P. and {Kaplan}, J. and {Kerins}, E. and 
+	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y. and {Weston}, M.~J. and 
+	{Point-Agape Collaboration}},
+    title = "{POINT-AGAPE pixel lensing survey of M 31. Evidence for a MACHO contribution to galactic halos}",
+  journal = {\aap},
+   eprint = {astro-ph/0504188},
+ keywords = {galaxies: halos, gravitational lensing, dark matter, galaxies: individual: M 31},
+     year = 2005,
+    month = dec,
+   volume = 443,
+    pages = {911-928},
+      doi = {10.1051/0004-6361:20053135},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...443..911C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000MNRAS.318.1093F,
+   author = {{Fassia}, A. and {Meikle}, W.~P.~S. and {Vacca}, W.~D. and {Kemp}, S.~N. and 
+	{Walton}, N.~A. and {Pollacco}, D.~L. and {Smartt}, S. and {Oscoz}, A. and 
+	{Arag{\'o}n-Salamanca}, A. and {Bennett}, S. and {Hawarden}, T.~G. and 
+	{Alonso}, A. and {Alcalde}, D. and {Pedrosa}, A. and {Telting}, J. and 
+	{Arevalo}, M.~J. and {Deeg}, H.~J. and {Garz{\'o}n}, F. and 
+	{G{\'o}mez-Rold{\'a}n}, A. and {G{\'o}mez}, G. and {Guti{\'e}rrez}, C. and 
+	{L{\'o}pez}, S. and {Rozas}, M. and {Serra-Ricart}, M. and {Zapatero-Osorio}, M.~R.
+	},
+    title = "{Optical and infrared photometry of the Type IIn SN 1998S: days 11-146}",
+  journal = {\mnras},
+   eprint = {astro-ph/0006080},
+ keywords = {CIRCUMSTELLAR MATTER, SUPERNOVAE: INDIVIDUAL: SN 19985, INFRARED: STARS},
+     year = 2000,
+    month = nov,
+   volume = 318,
+    pages = {1093-1104},
+      doi = {10.1046/j.1365-8711.2000.03797.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2000MNRAS.318.1093F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...724L..16P,
+   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
+	{Maguire}, K. and {Fraser}, M. and {Smith}, K. and {Kotak}, R. and 
+	{Magill}, L. and {Valenti}, S. and {Young}, D.~R. and {Gezari}, S. and 
+	{Bresolin}, F. and {Kudritzki}, R. and {Howell}, D.~A. and {Rest}, A. and 
+	{Metcalfe}, N. and {Mattila}, S. and {Kankare}, E. and {Huang}, K.~Y. and 
+	{Urata}, Y. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Dombeck}, T. and 
+	{Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
+	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
+	{Rhoads}, P.~H. and {Siegmund}, W.~A. and {Stubbs}, C.~W. and 
+	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waterson}, M.~F. and {Waters}, C. and {Wynn-Williams}, C.~G.
+	},
+    title = "{Ultra-bright Optical Transients are Linked with Type Ic Supernovae}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1008.2674},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2010gx SCP-06F6 SN 2005ap},
+     year = 2010,
+    month = nov,
+   volume = 724,
+    pages = {L16-L21},
+      doi = {10.1088/2041-8205/724/1/L16},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...724L..16P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...739L..37M,
+   author = {{Maund}, J.~R. and {Fraser}, M. and {Ergon}, M. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Sollerman}, J. and {Benetti}, S. and {Botticella}, M.-T. and 
+	{Bufano}, F. and {Danziger}, I.~J. and {Kotak}, R. and {Magill}, L. and 
+	{Stephens}, A.~W. and {Valenti}, S.},
+    title = "{The Yellow Supergiant Progenitor of the Type II Supernova 2011dh in M51}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1106.2565},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2011dh},
+     year = 2011,
+    month = oct,
+   volume = 739,
+      eid = {L37},
+    pages = {L37},
+      doi = {10.1088/2041-8205/739/2/L37},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...739L..37M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002A&A...395..519T,
+   author = {{Trundle}, C. and {Dufton}, P.~L. and {Lennon}, D.~J. and {Smartt}, S.~J. and 
+	{Urbaneja}, M.~A.},
+    title = "{Chemical composition of B-type supergiants in the OB 8, OB 10, OB 48, OB 78 associations of M 31}",
+  journal = {\aap},
+   eprint = {astro-ph/0207198},
+ keywords = {galaxies: individual: M 31},
+     year = 2002,
+    month = nov,
+   volume = 395,
+    pages = {519-533},
+      doi = {10.1051/0004-6361:20021044},
+   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...395..519T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012Natur.485..217G,
+   author = {{Gezari}, S. and {Chornock}, R. and {Rest}, A. and {Huber}, M.~E. and 
+	{Forster}, K. and {Berger}, E. and {Challis}, P.~J. and {Neill}, J.~D. and 
+	{Martin}, D.~C. and {Heckman}, T. and {Lawrence}, A. and {Norman}, C. and 
+	{Narayan}, G. and {Foley}, R.~J. and {Marion}, G.~H. and {Scolnic}, D. and 
+	{Chomiuk}, L. and {Soderberg}, A. and {Smith}, K. and {Kirshner}, R.~P. and 
+	{Riess}, A.~G. and {Smartt}, S.~J. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
+	{Wood-Vasey}, W.~M. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Grav}, T. and {Heasley}, J.~N. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A.},
+    title = "{An ultraviolet-optical flare from the tidal disruption of a helium-rich stellar core}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1205.0252},
+ primaryClass = "astro-ph.CO",
+     year = 2012,
+    month = may,
+   volume = 485,
+    pages = {217-220},
+      doi = {10.1038/nature10990},
+   adsurl = {http://adsabs.harvard.edu/abs/2012Natur.485..217G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.391L...5C,
+   author = {{Crockett}, R.~M. and {Eldridge}, J.~J. and {Smartt}, S.~J. and 
+	{Pastorello}, A. and {Gal-Yam}, A. and {Fox}, D.~B. and {Leonard}, D.~C. and 
+	{Kasliwal}, M.~M. and {Mattila}, S. and {Maund}, J.~R. and {Stephens}, A.~W. and 
+	{Danziger}, I.~J.},
+    title = "{The type IIb SN 2008ax: the nature of the progenitor}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0805.1913},
+ keywords = {supernovae: individual: SN 2008ax, galaxies: individual: NGC 4490},
+     year = 2008,
+    month = nov,
+   volume = 391,
+    pages = {L5-L9},
+      doi = {10.1111/j.1745-3933.2008.00540.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.391L...5C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007AJ....133...58K,
+   author = {{Krisciunas}, K. and {Garnavich}, P.~M. and {Stanishev}, V. and 
+	{Suntzeff}, N.~B. and {Prieto}, J.~L. and {Espinoza}, J. and 
+	{Gonzalez}, D. and {Salvo}, M.~E. and {Elias de la Rosa}, N. and 
+	{Smartt}, S.~J. and {Maund}, J.~R. and {Kudritzki}, R.-P.},
+    title = "{The Type Ia Supernova 2004S, a Clone of SN 2001el, and the Optimal Photometric Bands for Extinction Estimation}",
+  journal = {\aj},
+   eprint = {astro-ph/0609268},
+ keywords = {dust, extinction, supernovae: individual: SN 2004S: SN 2001el, techniques: photometric},
+     year = 2007,
+    month = jan,
+   volume = 133,
+    pages = {58-72},
+      doi = {10.1086/509126},
+   adsurl = {http://adsabs.harvard.edu/abs/2007AJ....133...58K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003A&A...405...15P,
+   author = {{Paulin-Henriksson}, S. and {Baillon}, P. and {Bouquet}, A. and 
+	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
+	{Kaplan}, J. and {Kerins}, E. and {Le Du}, Y. and {Melchior}, A.-L. and 
+	{Smartt}, S.~J. and {Valls-Gabaud}, D. and {POINT-AGAPE Collaboration}
+	},
+    title = "{The POINT-AGAPE survey: 4 high signal-to-noise microlensing candidates detected towards M 31}",
+  journal = {\aap},
+   eprint = {astro-ph/0207025},
+ keywords = {galaxies: halo, galaxies: individual: M 31, gravitational lensing, dark matter},
+     year = 2003,
+    month = jul,
+   volume = 405,
+    pages = {15-21},
+      doi = {10.1051/0004-6361:20030519},
+   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...405...15P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...457..265D,
+   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Lee}, J.~K. and {Ryans}, R.~S.~I. and 
+	{Hunter}, I. and {Evans}, C.~J. and {Herrero}, A. and {Trundle}, C. and 
+	{Lennon}, D.~J. and {Irwin}, M.~J. and {Kaufer}, A.},
+    title = "{The VLT-FLAMES survey of massive stars: stellar parameters and rotational velocities in NGC 3293, NGC 4755 and NGC 6611}",
+  journal = {\aap},
+   eprint = {astro-ph/0606409},
+ keywords = {stars: early-type, stars: fundamental parameters, stars: rotation, Hertzsprung-Russell (HR) and C-M diagrams, stars: evolution},
+     year = 2006,
+    month = oct,
+   volume = 457,
+    pages = {265-280},
+      doi = {10.1051/0004-6361:20065392},
+   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...457..265D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.389..955P,
+   author = {{Pastorello}, A. and {Kasliwal}, M.~M. and {Crockett}, R.~M. and 
+	{Valenti}, S. and {Arbour}, R. and {Itagaki}, K. and {Kaspi}, S. and 
+	{Gal-Yam}, A. and {Smartt}, S.~J. and {Griffith}, R. and {Maguire}, K. and 
+	{Ofek}, E.~O. and {Seymour}, N. and {Stern}, D. and {Wiethoff}, W.
+	},
+    title = "{The Type IIb SN 2008ax: spectral and light curve evolution}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0805.1914},
+ keywords = {supernovae: general , supernovae: individual: SN 2008ax , supernovae: individual: SN 1993J , galaxies: individual: NGC 4490},
+     year = 2008,
+    month = sep,
+   volume = 389,
+    pages = {955-966},
+      doi = {10.1111/j.1365-2966.2008.13618.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..955P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001MNRAS.323...13K,
+   author = {{Kerins}, E. and {Carr}, B.~J. and {Evans}, N.~W. and {Hewett}, P. and 
+	{Lastennet}, E. and {Le Du}, Y. and {Melchior}, A.-L. and {Smartt}, S.~J. and 
+	{Valls-Gabaud}, D.},
+    title = "{Theory of pixel lensing towards M31 - I. The density contribution and mass of MACHOs}",
+  journal = {\mnras},
+   eprint = {astro-ph/0002256},
+ keywords = {GRAVITATIONAL LENSING, GALAXY: HALO, GALAXIES: HALOES, GALAXIES: INDIVIDUAL: M31, DARK MATTER},
+     year = 2001,
+    month = may,
+   volume = 323,
+    pages = {13-33},
+      doi = {10.1046/j.1365-8711.2001.04088.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.323...13K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.360..288M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
+    title = "{Hubble Space Telescope imaging of the progenitor sites of six nearby core-collapse supernovae}",
+  journal = {\mnras},
+   eprint = {astro-ph/0501323},
+ keywords = {supernovae: individual: 1999an, supernovae: individual: 1999br, supernovae: individual: 1999ev, supernovae: individual: 2000ds, supernovae: individual: 2000ew, supernovae: individual: 2001B},
+     year = 2005,
+    month = jun,
+   volume = 360,
+    pages = {288-304},
+      doi = {10.1111/j.1365-2966.2005.09034.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.360..288M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000Natur.403...57H,
+   author = {{Hodgkin}, S.~T. and {Oppenheimer}, B.~R. and {Hambly}, N.~C. and 
+	{Jameson}, R.~F. and {Smartt}, S.~J. and {Steele}, I.~A.},
+    title = "{Infrared spectrum of an extremely cool white-dwarf star}",
+  journal = {\nat},
+     year = 2000,
+    month = jan,
+   volume = 403,
+    pages = {57-59},
+      doi = {10.1038/47431},
+   adsurl = {http://adsabs.harvard.edu/abs/2000Natur.403...57H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...635..311U,
+   author = {{Urbaneja}, M.~A. and {Herrero}, A. and {Kudritzki}, R.-P. and 
+	{Najarro}, F. and {Smartt}, S.~J. and {Puls}, J. and {Lennon}, D.~J. and 
+	{Corral}, L.~J.},
+    title = "{Blue Luminous Stars in Nearby Galaxies: Quantitative Spectral Analysis of M33 B-Type Supergiant Stars}",
+  journal = {\apj},
+ keywords = {Galaxies: Abundances, Galaxies: Individual: Messier Number: M33, Galaxies: Individual: NGC Number: NGC 598, Galaxies: ISM, Stars: Abundances, Stars: Atmospheres, Stars: Fundamental Parameters},
+     year = 2005,
+    month = dec,
+   volume = 635,
+    pages = {311-335},
+      doi = {10.1086/497528},
+   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...635..311U},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003AJ....126.1326V,
+   author = {{Venn}, K.~A. and {Tolstoy}, E. and {Kaufer}, A. and {Skillman}, E.~D. and 
+	{Clarkson}, S.~M. and {Smartt}, S.~J. and {Lennon}, D.~J. and 
+	{Kudritzki}, R.~P.},
+    title = "{The Chemical Composition of Two Supergiants in the Dwarf Irregular Galaxy WLM}",
+  journal = {\aj},
+   eprint = {astro-ph/0306160},
+ keywords = {Galaxies: Abundances, Galaxies: Dwarf, Galaxies: Individual: Alphanumeric: WLM, Stars: Abundances},
+     year = 2003,
+    month = sep,
+   volume = 126,
+    pages = {1326-1345},
+      doi = {10.1086/377345},
+   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126.1326V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...553L.137A,
+   author = {{Auri{\`e}re}, M. and {Baillon}, P. and {Bouquet}, A. and {Carr}, B.~J. and 
+	{Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and 
+	{Gould}, A. and {Hewett}, P.~C. and {Kaplan}, J. and {Kerins}, E. and 
+	{Lastennet}, E. and {Le Du}, Y. and {Melchior}, A.-L. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Valls-Gabaud}, D.},
+    title = "{A Short-Timescale Candidate Microlensing Event in the POINT-AGAPE Pixel Lensing Survey of M31}",
+  journal = {\apjl},
+   eprint = {astro-ph/0102080},
+ keywords = {Galaxies: Halos, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing, Stars: Variables: Other},
+     year = 2001,
+    month = jun,
+   volume = 553,
+    pages = {L137-L140},
+      doi = {10.1086/320681},
+   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...553L.137A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001A&A...367...86S,
+   author = {{Smartt}, S.~J. and {Venn}, K.~A. and {Dufton}, P.~L. and {Lennon}, D.~J. and 
+	{Rolleston}, W.~R.~J. and {Keenan}, F.~P.},
+    title = "{Chemical abundances in the inner 5 kpc of the Galactic disk}",
+  journal = {\aap},
+   eprint = {astro-ph/0009157},
+ keywords = {STARS: EARLY-TYPE, STARS: ATMOSPHERES, STARS: ABUNDANCES, GALAXY: EVOLUTION, GALAXY: CENTER, GALAXY: ABUNDANCES},
+     year = 2001,
+    month = feb,
+   volume = 367,
+    pages = {86-105},
+      doi = {10.1051/0004-6361:20000479},
+   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...367...86S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...743..114C,
+   author = {{Chomiuk}, L. and {Chornock}, R. and {Soderberg}, A.~M. and 
+	{Berger}, E. and {Chevalier}, R.~A. and {Foley}, R.~J. and {Huber}, M.~E. and 
+	{Narayan}, G. and {Rest}, A. and {Gezari}, S. and {Kirshner}, R.~P. and 
+	{Riess}, A. and {Rodney}, S.~A. and {Smartt}, S.~J. and {Stubbs}, C.~W. and 
+	{Tonry}, J.~L. and {Wood-Vasey}, W.~M. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Czekala}, I. and {Flewelling}, H. and 
+	{Forster}, K. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Martin}, D.~C. and {Morgan}, J.~S. and {Neill}, J.~D. and {Price}, P.~A. and 
+	{Roth}, K.~C. and {Sanders}, N.~E. and {Wainscoat}, R.~J.},
+    title = "{Pan-STARRS1 Discovery of Two Ultraluminous Supernovae at z {\ap} 0.9}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1107.3552},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, stars: magnetars, supernovae: general, supernovae: individual: PS1-10ky PS1-10awh},
+     year = 2011,
+    month = dec,
+   volume = 743,
+      eid = {114},
+    pages = {114},
+      doi = {10.1088/0004-637X/743/2/114},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...743..114C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...767....1P,
+   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
+	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
+	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
+	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
+	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
+	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
+	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
+	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
+	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
+	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
+	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
+	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
+	{Wright}, D.},
+    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1210.3568},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {1},
+    pages = {1},
+      doi = {10.1088/0004-637X/767/1/1},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001MNRAS.325..257S,
+   author = {{Smartt}, S.~J. and {Crowther}, P.~A. and {Dufton}, P.~L. and 
+	{Lennon}, D.~J. and {Kudritzki}, R.~P. and {Herrero}, A. and 
+	{McCarthy}, J.~K. and {Bresolin}, F.},
+    title = "{Chemical abundances and winds of massive stars in M31: a B-type supergiant and a WC star in OB 10}",
+  journal = {\mnras},
+   eprint = {astro-ph/0009156},
+ keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, STARS: WINDS, OUTFLOWS, STARS: WOLF-RAYET, GALAXIES: INDIVIDUAL: M31},
+     year = 2001,
+    month = jul,
+   volume = 325,
+    pages = {257-272},
+      doi = {10.1046/j.1365-8711.2001.04415.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.325..257S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.355..178P,
+   author = {{Pignata}, G. and {Patat}, F. and {Benetti}, S. and {Blinnikov}, S. and 
+	{Hillebrandt}, W. and {Kotak}, R. and {Leibundgut}, B. and {Mazzali}, P.~A. and 
+	{Meikle}, P. and {Qiu}, Y. and {Ruiz-Lapuente}, P. and {Smartt}, S.~J. and 
+	{Sorokina}, E. and {Stritzinger}, M. and {Stehle}, M. and {Turatto}, M. and 
+	{Marsh}, T. and {Martin-Luis}, F. and {McBride}, N. and {Mendez}, J. and 
+	{Morales-Rueda}, L. and {Narbutis}, D. and {Street}, R.},
+    title = "{Photometric observations of the Type Ia SN 2002er in UGC 10743}",
+  journal = {\mnras},
+   eprint = {astro-ph/0408234},
+ keywords = {techniques: photometric, supernovae: general, supernovae: individual: SN 2002er},
+     year = 2004,
+    month = nov,
+   volume = 355,
+    pages = {178-190},
+      doi = {10.1111/j.1365-2966.2004.08308.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.355..178P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009A&A...508..371H,
+   author = {{Hunter}, D.~J. and {Valenti}, S. and {Kotak}, R. and {Meikle}, W.~P.~S. and 
+	{Taubenberger}, S. and {Pastorello}, A. and {Benetti}, S. and 
+	{Stanishev}, V. and {Smartt}, S.~J. and {Trundle}, C. and {Arkharov}, A.~A. and 
+	{Bufano}, F. and {Cappellaro}, E. and {Di Carlo}, E. and {Dolci}, M. and 
+	{Elias-Rosa}, N. and {Frandsen}, S. and {Fynbo}, J.~U. and {Hopp}, U. and 
+	{Larionov}, V.~M. and {Laursen}, P. and {Mazzali}, P. and {Navasardyan}, H. and 
+	{Ries}, C. and {Riffeser}, A. and {Rizzi}, L. and {Tsvetkov}, D.~Y. and 
+	{Turatto}, M. and {Wilke}, S.},
+    title = "{Extensive optical and near-infrared observations of the nearby, narrow-lined type Ic <ASTROBJ>SN 2007gr</ASTROBJ>: days 5 to 415}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0909.3780},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: individual: SN 2007gr, techniques: miscellaneous, supernovae: individual: SN 2002ap, supernovae: general},
+     year = 2009,
+    month = dec,
+   volume = 508,
+    pages = {371-389},
+      doi = {10.1051/0004-6361/200912896},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...508..371H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369..257D,
+   author = {{Darnley}, M.~J. and {Bode}, M.~F. and {Kerins}, E. and {Newsam}, A.~M. and 
+	{An}, J. and {Baillon}, P. and {Belokurov}, V. and {Calchi Novati}, S. and 
+	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
+	{Jetzer}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Tsapras}, Y. and {Weston}, M.},
+    title = "{Classical novae from the POINT-AGAPE microlensing survey of M31 - II. Rate and statistical characteristics of the nova population}",
+  journal = {\mnras},
+   eprint = {astro-ph/0509493},
+ keywords = {novae, cataclysmic variables: galaxies: individual: M31, cataclysmic variables, galaxies: individual: M31},
+     year = 2006,
+    month = jun,
+   volume = 369,
+    pages = {257-271},
+      doi = {10.1111/j.1365-2966.2006.10297.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369..257D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000MNRAS.319..223H,
+   author = {{Hernandez}, M. and {Meikle}, W.~P.~S. and {Aparicio}, A. and 
+	{Benn}, C.~R. and {Burleigh}, M.~R. and {Chrysostomou}, A.~C. and 
+	{Fernandes}, A.~J.~L. and {Geballe}, T.~R. and {Hammersley}, P.~L. and 
+	{Iglesias-Paramo}, J. and {James}, D.~J. and {James}, P.~A. and 
+	{Kemp}, S.~N. and {Lister}, T.~A. and {Martinez-Delgado}, D. and 
+	{Oscoz}, A. and {Pollacco}, D.~L. and {Rozas}, M. and {Smartt}, S.~J. and 
+	{Sorensen}, P. and {Swaters}, R.~A. and {Telting}, J.~H. and 
+	{Vacca}, W.~D. and {Walton}, N.~A. and {Zapatero-Osorio}, M.~R.
+	},
+    title = "{An early-time infrared and optical study of the Type Ia Supernova 1998bu in M96}",
+  journal = {\mnras},
+   eprint = {astro-ph/0007022},
+ keywords = {SUPERNOVAE: INDIVIDUAL: SN 1998BU},
+     year = 2000,
+    month = nov,
+   volume = 319,
+    pages = {223-234},
+      doi = {10.1046/j.1365-8711.2000.03841.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2000MNRAS.319..223H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.389..141M,
+   author = {{Mattila}, S. and {Meikle}, W.~P.~S. and {Lundqvist}, P. and 
+	{Pastorello}, A. and {Kotak}, R. and {Eldridge}, J. and {Smartt}, S. and 
+	{Adamson}, A. and {Gerardy}, C.~L. and {Rizzi}, L. and {Stephens}, A.~W. and 
+	{van Dyk}, S.~D.},
+    title = "{Massive stars exploding in a He-rich circumstellar medium - III. SN 2006jc: infrared echoes from new and old dust in the progenitor CSM}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0803.2145},
+ keywords = {circumstellar matter , supernovae: general , supernovae: individual: SN 2006jc , dust, extinction},
+     year = 2008,
+    month = sep,
+   volume = 389,
+    pages = {141-155},
+      doi = {10.1111/j.1365-2966.2008.13516.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..141M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003A&A...404..483C,
+   author = {{Crowther}, P.~A. and {Drissen}, L. and {Abbott}, J.~B. and 
+	{Royer}, P. and {Smartt}, S.~J.},
+    title = "{Gemini observations of Wolf-Rayet stars in the Local Group starburst galaxy IC 10}",
+  journal = {\aap},
+   eprint = {astro-ph/0302475},
+ keywords = {galaxies: individual: IC 10, galaxies: starburst, stars: evolution, stars: Wolf-Rayet},
+     year = 2003,
+    month = jun,
+   volume = 404,
+    pages = {483-493},
+      doi = {10.1051/0004-6361:20030503},
+   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...404..483C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.404..981M,
+   author = {{Maguire}, K. and {Di Carlo}, E. and {Smartt}, S.~J. and {Pastorello}, A. and 
+	{Tsvetkov}, D.~Y. and {Benetti}, S. and {Spiro}, S. and {Arkharov}, A.~A. and 
+	{Beccari}, G. and {Botticella}, M.~T. and {Cappellaro}, E. and 
+	{Cristallo}, S. and {Dolci}, M. and {Elias-Rosa}, N. and {Fiaschi}, M. and 
+	{Gorshanov}, D. and {Harutyunyan}, A. and {Larionov}, V.~M. and 
+	{Navasardyan}, H. and {Pietrinferni}, A. and {Raimondo}, G. and 
+	{di Rico}, G. and {Valenti}, S. and {Valentini}, G. and {Zampieri}, L.
+	},
+    title = "{Optical and near-infrared coverage of SN 2004et: physical parameters and comparison with other Type IIP supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0912.3111},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2004et, supernovae: individual: 2004A, supernovae: individual: 2006my},
+     year = 2010,
+    month = may,
+   volume = 404,
+    pages = {981-1004},
+      doi = {10.1111/j.1365-2966.2010.16332.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.404..981M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009Sci...324..486M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
+    title = "{The Disappearance of the Progenitors of Supernovae 1993J and 2003gd}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {0903.3772},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = apr,
+   volume = 324,
+    pages = {486-},
+      doi = {10.1126/science.1170198},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Sci...324..486M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.389..113P,
+   author = {{Pastorello}, A. and {Mattila}, S. and {Zampieri}, L. and {Della Valle}, M. and 
+	{Smartt}, S.~J. and {Valenti}, S. and {Agnoletto}, I. and {Benetti}, S. and 
+	{Benn}, C.~R. and {Branch}, D. and {Cappellaro}, E. and {Dennefeld}, M. and 
+	{Eldridge}, J.~J. and {Gal-Yam}, A. and {Harutyunyan}, A. and 
+	{Hunter}, I. and {Kjeldsen}, H. and {Lipkin}, Y. and {Mazzali}, P.~A. and 
+	{Milne}, P. and {Navasardyan}, H. and {Ofek}, E.~O. and {Pian}, E. and 
+	{Shemmer}, O. and {Spiro}, S. and {Stathakis}, R.~A. and {Taubenberger}, S. and 
+	{Turatto}, M. and {Yamaoka}, H.},
+    title = "{Massive stars exploding in a He-rich circumstellar medium - I. Type Ibn (SN 2006jc-like) events}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0801.2277},
+ keywords = {supernovae: general , supernovae: individual: SN 2006jc , supernovae: individual: SN 1999cq , supernovae: individual: SN 2000er , supernovae: individual: SN 2002ao , supernovae: individual: SN 1885A},
+     year = 2008,
+    month = sep,
+   volume = 389,
+    pages = {113-130},
+      doi = {10.1111/j.1365-2966.2008.13602.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..113P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369.1303H,
+   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Crockett}, R.~M. and 
+	{Maund}, J.~R. and {Gal-Yam}, A. and {Moon}, D.-S. and {Cenko}, S.~B. and 
+	{Fox}, D.~W. and {Kudritzki}, R.~P. and {Benn}, C.~R. and {{\O}stensen}, R.
+	},
+    title = "{SN 2004A: another Type II-P supernova with a red supergiant progenitor}",
+  journal = {\mnras},
+   eprint = {astro-ph/0603670},
+ keywords = {stars: evolution , supernovae: general , supernovae: individual: SN 2004A , galaxies: distances and redshifts , galaxies: individual: NGC 6207},
+     year = 2006,
+    month = jul,
+   volume = 369,
+    pages = {1303-1320},
+      doi = {10.1111/j.1365-2966.2006.10374.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369.1303H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.343..735S,
+   author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Gilmore}, G.~F. and 
+	{Tout}, C.~A. and {Kilkenny}, D. and {Benetti}, S.},
+    title = "{Mass limits for the progenitor star of supernova 2001du and other Type II-P supernovae}",
+  journal = {\mnras},
+   eprint = {astro-ph/0301324},
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 1999em, supernovae: individual: SN 1999gi, supernovae: individual: SN 2001du, galaxies: individual: NGC 1365},
+     year = 2003,
+    month = aug,
+   volume = 343,
+    pages = {735-749},
+      doi = {10.1046/j.1365-8711.2003.06718.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2003MNRAS.343..735S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...688L..91M,
+   author = {{Mattila}, S. and {Smartt}, S.~J. and {Eldridge}, J.~J. and 
+	{Maund}, J.~R. and {Crockett}, R.~M. and {Danziger}, I.~J.},
+    title = "{VLT Detection of a Red Supergiant Progenitor of the Type II-P Supernova 2008bk}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0809.0206},
+ keywords = {Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 2008bk)},
+     year = 2008,
+    month = dec,
+   volume = 688,
+    pages = {L91-L94},
+      doi = {10.1086/595587},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...688L..91M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007Natur.449E...1P,
+   author = {{Pastorello}, A. and {Della Valle}, M. and {Smartt}, S.~J. and 
+	{Zampieri}, L. and {Benetti}, S. and {Cappellaro}, E. and {Mazzali}, P.~A. and 
+	{Patat}, F. and {Spiro}, S. and {Turatto}, M. and {Valenti}, S.
+	},
+    title = "{A very faint core-collapse supernova in M85}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0710.3753},
+     year = 2007,
+    month = oct,
+   volume = 449,
+    pages = {1},
+      doi = {10.1038/nature06282},
+   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.449E...1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369..390M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
+	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
+	{Gilmore}, G.~F. and {Benn}, C.~R.},
+    title = "{Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
+  journal = {\mnras},
+   eprint = {astro-ph/0603056},
+ keywords = {stars: individual: NGC 2403-V37: supernovae: general: supernovae: individual: 2002kg: supernovae: individual: 2003gm: stars: variables: other: galaxies: individual: NGC 5334, stars: individual: NGC 2403-V37, supernovae: general, supernovae: individual: 2002kg, supernovae: individual: 2003gm, stars: variables: other, galaxies: individual: NGC 5334},
+     year = 2006,
+    month = jun,
+   volume = 369,
+    pages = {390-406},
+      doi = {10.1111/j.1365-2966.2006.10308.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369..390M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...565.1089S,
+   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Tout}, C.~A. and {Hodgkin}, S.~T.
+	},
+    title = "{The Nature of the Progenitor of the Type II-P Supernova 1999em}",
+  journal = {\apj},
+   eprint = {astro-ph/0107499},
+ keywords = {galaxies: individual (NGC 1637), Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 1999em)},
+     year = 2002,
+    month = feb,
+   volume = 565,
+    pages = {1089-1100},
+      doi = {10.1086/324690},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...565.1089S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.417.1417F,
+   author = {{Fraser}, M. and {Ergon}, M. and {Eldridge}, J.~J. and {Valenti}, S. and 
+	{Pastorello}, A. and {Sollerman}, J. and {Smartt}, S.~J. and 
+	{Agnoletto}, I. and {Arcavi}, I. and {Benetti}, S. and {Botticella}, M.-T. and 
+	{Bufano}, F. and {Campillay}, A. and {Crockett}, R.~M. and {Gal-Yam}, A. and 
+	{Kankare}, E. and {Leloudas}, G. and {Maguire}, K. and {Mattila}, S. and 
+	{Maund}, J.~R. and {Salgado}, F. and {Stephens}, A. and {Taubenberger}, S. and 
+	{Turatto}, M.},
+    title = "{SN 2009md: another faint supernova from a low-mass progenitor}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1011.6558},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: massive, supernovae: general, supernovae: individual: SN 2009md, galaxies: individual: NGC 3389},
+     year = 2011,
+    month = oct,
+   volume = 417,
+    pages = {1417-1433},
+      doi = {10.1111/j.1365-2966.2011.19370.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.417.1417F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005A&A...436.1021K,
+   author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Pignata}, G. and {Stehle}, M. and 
+	{Smartt}, S.~J. and {Benetti}, S. and {Hillebrandt}, W. and 
+	{Lennon}, D.~J. and {Mazzali}, P.~A. and {Patat}, F. and {Turatto}, M.
+	},
+    title = "{Spectroscopy of the type Ia supernova SN 2002er: Days -11 to +215}",
+  journal = {\aap},
+   eprint = {astro-ph/0503339},
+ keywords = {stars: supernovae: general, stars: supernovae: individual: SN 2002er, methods: observational, techniques: spectroscopic},
+     year = 2005,
+    month = jun,
+   volume = 436,
+    pages = {1021-1031},
+      doi = {10.1051/0004-6361:20052756},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...436.1021K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997ApJ...489L.157H,
+   author = {{Hambly}, N.~C. and {Smartt}, S.~J. and {Hodgkin}, S.~T.},
+    title = "{WD 0346+246: A Very Low Luminosity, Cool Degenerate in Taurus}",
+  journal = {\apjl},
+ keywords = {GALAXY: STELLAR CONTENT, STARS: INDIVIDUAL ALPHANUMERIC: WD 0346+246, STARS: WHITE DWARFS},
+     year = 1997,
+    month = nov,
+   volume = 489,
+    pages = {L157},
+      doi = {10.1086/316797},
+   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...489L.157H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.416.3138V,
+   author = {{Valenti}, S. and {Fraser}, M. and {Benetti}, S. and {Pignata}, G. and 
+	{Sollerman}, J. and {Inserra}, C. and {Cappellaro}, E. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Ergon}, M. and {Botticella}, M.~T. and 
+	{Brimacombe}, J. and {Bufano}, F. and {Crockett}, M. and {Eder}, I. and 
+	{Fugazza}, D. and {Haislip}, J.~B. and {Hamuy}, M. and {Harutyunyan}, A. and 
+	{Ivarsen}, K.~M. and {Kankare}, E. and {Kotak}, R. and {Lacluyze}, A.~P. and 
+	{Magill}, L. and {Mattila}, S. and {Maza}, J. and {Mazzali}, P.~A. and 
+	{Reichart}, D.~E. and {Taubenberger}, S. and {Turatto}, M. and 
+	{Zampieri}, L.},
+    title = "{SN 2009jf: a slow-evolving stripped-envelope core-collapse supernova}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1106.3030},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2009jf, galaxies: individual: NGC 7479},
+     year = 2011,
+    month = oct,
+   volume = 416,
+    pages = {3138-3159},
+      doi = {10.1111/j.1365-2966.2011.19262.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.3138V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2014ApJ...783...10S,
+   author = {{Sukhbold}, T. and {Woosley}, S.~E.},
+    title = "{The Compactness of Presupernova Stellar Cores}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1311.6546},
+ primaryClass = "astro-ph.SR",
+ keywords = {convection, nuclear reactions, nucleosynthesis, abundances, stars: evolution, stars: interiors, stars: neutron, supernovae: general},
+     year = 2014,
+    month = mar,
+   volume = 783,
+      eid = {10},
+    pages = {10},
+      doi = {10.1088/0004-637X/783/1/10},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...783...10S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436..774E,
+   author = {{Eldridge}, J.~J. and {Fraser}, M. and {Smartt}, S.~J. and {Maund}, J.~R. and 
+	{Crockett}, R.~M.},
+    title = "{The death of massive stars - II. Observational constraints on the progenitors of Type Ibc supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1301.1975},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: general, stars: evolution, supergiants, supernovae: general, stars: Wolf-Rayet},
+     year = 2013,
+    month = nov,
+   volume = 436,
+    pages = {774-795},
+      doi = {10.1093/mnras/stt1612},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..774E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...795...44R,
+   author = {{Rest}, A. and {Scolnic}, D. and {Foley}, R.~J. and {Huber}, M.~E. and 
+	{Chornock}, R. and {Narayan}, G. and {Tonry}, J.~L. and {Berger}, E. and 
+	{Soderberg}, A.~M. and {Stubbs}, C.~W. and {Riess}, A. and {Kirshner}, R.~P. and 
+	{Smartt}, S.~J. and {Schlafly}, E. and {Rodney}, S. and {Botticella}, M.~T. and 
+	{Brout}, D. and {Challis}, P. and {Czekala}, I. and {Drout}, M. and 
+	{Hudson}, M.~J. and {Kotak}, R. and {Leibler}, C. and {Lunnan}, R. and 
+	{Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
+	{Pastorello}, A. and {Sanders}, N.~E. and {Smith}, K. and {Stafford}, E. and 
+	{Thilker}, D. and {Valenti}, S. and {Wood-Vasey}, W.~M. and 
+	{Zheng}, Z. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Denneau}, L. and 
+	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and {Wainscoat}, R. and 
+	{Waters}, C.},
+    title = "{Cosmological Constraints from Measurements of Type{\nbsp}Ia Supernovae Discovered during the First 1.5{\nbsp}yr of the Pan-STARRS1 Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.3828},
+ keywords = {cosmological parameters, cosmology: observations, dark energy, supernovae: general},
+     year = 2014,
+    month = nov,
+   volume = 795,
+      eid = {44},
+    pages = {44},
+      doi = {10.1088/0004-637X/795/1/44},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795...44R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572L.147S,
+   author = {{Smartt}, S.~J. and {Vreeswijk}, P.~M. and {Ramirez-Ruiz}, E. and 
+	{Gilmore}, G.~F. and {Meikle}, W.~P.~S. and {Ferguson}, A.~M.~N. and 
+	{Knapen}, J.~H.},
+    title = "{On the Progenitor of the Type Ic Supernova 2002ap}",
+  journal = {\apjl},
+   eprint = {astro-ph/0205241},
+ keywords = {Stars: Binaries: Close, Galaxies: Individual: NGC Number: NGC 628, Gamma Rays: Bursts, Stars: Evolution, Stars: Wolf-Rayet, Stars: Supernovae: Individual: Alphanumeric: SN 2002ap},
+     year = 2002,
+    month = jun,
+   volume = 572,
+    pages = {L147-L151},
+      doi = {10.1086/341747},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572L.147S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...672L..99C,
+   author = {{Crockett}, R.~M. and {Maund}, J.~R. and {Smartt}, S.~J. and 
+	{Mattila}, S. and {Pastorello}, A. and {Smoker}, J. and {Stephens}, A.~W. and 
+	{Fynbo}, J. and {Eldridge}, J.~J. and {Danziger}, I.~J. and 
+	{Benn}, C.~R.},
+    title = "{The Birth Place of the Type Ic Supernova 2007gr}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0709.2354},
+ keywords = {Galaxies: Individual: NGC Number: NGC 1058, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (2007gr)},
+     year = 2008,
+    month = jan,
+   volume = 672,
+    pages = {L99-L102},
+      doi = {10.1086/527299},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...672L..99C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007MNRAS.381..835C,
+   author = {{Crockett}, R.~M. and {Smartt}, S.~J. and {Eldridge}, J.~J. and 
+	{Mattila}, S. and {Young}, D.~R. and {Pastorello}, A. and {Maund}, J.~R. and 
+	{Benn}, C.~R. and {Skillen}, I.},
+    title = "{A deeper search for the progenitor of the Type Ic supernova 2002ap}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0706.0500},
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2002ap, galaxies: individual: M 74},
+     year = 2007,
+    month = oct,
+   volume = 381,
+    pages = {835-850},
+      doi = {10.1111/j.1365-2966.2007.12283.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.381..835C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.353..571D,
+   author = {{Darnley}, M.~J. and {Bode}, M.~F. and {Kerins}, E. and {Newsam}, A.~M. and 
+	{An}, J. and {Baillon}, P. and {Novati}, S.~C. and {Carr}, B.~J. and 
+	{Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and 
+	{Gould}, A. and {Hewett}, P. and {Jetzer}, P. and {Kaplan}, J. and 
+	{Paulin-Henriksson}, S. and {Smartt}, S.~J. and {Stalin}, C.~S. and 
+	{Tsapras}, Y.},
+    title = "{Classical novae from the POINT-AGAPE microlensing survey of M31 - I. The nova catalogue}",
+  journal = {\mnras},
+   eprint = {astro-ph/0403447},
+ keywords = {novae, cataclysmic variables, galaxies: individual: M31},
+     year = 2004,
+    month = sep,
+   volume = 353,
+    pages = {571-588},
+      doi = {10.1111/j.1365-2966.2004.08087.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.353..571D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012A&A...537A.132B,
+   author = {{Botticella}, M.~T. and {Smartt}, S.~J. and {Kennicutt}, R.~C. and 
+	{Cappellaro}, E. and {Sereno}, M. and {Lee}, J.~C.},
+    title = "{A comparison between star formation rate diagnostics and rate of core collapse supernovae within 11 Mpc}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1111.1692},
+ primaryClass = "astro-ph.CO",
+ keywords = {stars: massive, supernovae: general, galaxies: star formation},
+     year = 2012,
+    month = jan,
+   volume = 537,
+      eid = {A132},
+    pages = {A132},
+      doi = {10.1051/0004-6361/201117343},
+   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...537A.132B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.351.1071A,
+   author = {{An}, J.~H. and {Evans}, N.~W. and {Hewett}, P. and {Baillon}, P. and 
+	{Calchi Novati}, S. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Jetzer}, P. and 
+	{Kaplan}, J. and {Kerins}, E. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y.},
+    title = "{The POINT-AGAPE Survey - I. The variable stars in M31}",
+  journal = {\mnras},
+   eprint = {astro-ph/0401374},
+ keywords = {gravitational lensing: Cepheids: stars: variables: others: galaxies: individual: M31: dark matter},
+     year = 2004,
+    month = jul,
+   volume = 351,
+    pages = {1071-1098},
+      doi = {10.1111/j.1365-2966.2004.07853.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.351.1071A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...556L..29S,
+   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Trentham}, N. and 
+	{Tout}, C.~A. and {Frayn}, C.~M.},
+    title = "{An Upper Mass Limit for the Progenitor of the Type II-P Supernova SN 1999gi}",
+  journal = {\apjl},
+   eprint = {astro-ph/0105453},
+ keywords = {Galaxies: Individual: NGC Number: NGC 3184, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1999gi},
+     year = 2001,
+    month = jul,
+   volume = 556,
+    pages = {L29-L32},
+      doi = {10.1086/322868},
+   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...556L..29S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...770..128I,
+   author = {{Inserra}, C. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Valenti}, S. and 
+	{Fraser}, M. and {Wright}, D. and {Smith}, K. and {Chen}, T.-W. and 
+	{Kotak}, R. and {Pastorello}, A. and {Nicholl}, M. and {Bresolin}, F. and 
+	{Kudritzki}, R.~P. and {Benetti}, S. and {Botticella}, M.~T. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Ergon}, M. and {Flewelling}, H. and 
+	{Fynbo}, J.~P.~U. and {Geier}, S. and {Hodapp}, K.~W. and {Howell}, D.~A. and 
+	{Huber}, M. and {Kaiser}, N. and {Leloudas}, G. and {Magill}, L. and 
+	{Magnier}, E.~A. and {McCrum}, M.~G. and {Metcalfe}, N. and 
+	{Price}, P.~A. and {Rest}, A. and {Sollerman}, J. and {Sweeney}, W. and 
+	{Taddia}, F. and {Taubenberger}, S. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C. and {Young}, D.},
+    title = "{Super-luminous Type Ic Supernovae: Catching a Magnetar by the Tail}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1304.3320},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: magnetars, supernovae: general, supernovae: individual: PTF10hgi PTF11rks SN 2011ke SN 2011kf SN 2012il},
+     year = 2013,
+    month = jun,
+   volume = 770,
+      eid = {128},
+    pages = {128},
+      doi = {10.1088/0004-637X/770/2/128},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770..128I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.408..181P,
+   author = {{Pastorello}, A. and {Botticella}, M.~T. and {Trundle}, C. and 
+	{Taubenberger}, S. and {Mattila}, S. and {Kankare}, E. and {Elias-Rosa}, N. and 
+	{Benetti}, S. and {Duszanowicz}, G. and {Hermansson}, L. and 
+	{Beckman}, J.~E. and {Bufano}, F. and {Fraser}, M. and {Harutyunyan}, A. and 
+	{Navasardyan}, H. and {Smartt}, S.~J. and {van Dyk}, S.~D. and 
+	{Vink}, J.~S. and {Wagner}, R.~M.},
+    title = "{Multiple major outbursts from a restless luminous blue variable in NGC 3432}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.0504},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2000ch, galaxies: individual: NGC 3432},
+     year = 2010,
+    month = oct,
+   volume = 408,
+    pages = {181-198},
+      doi = {10.1111/j.1365-2966.2010.17142.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408..181P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1967AcA....17..355P,
+   author = {{Paczy{\'n}ski}, B.},
+    title = "{Evolution of Close Binaries. V. The Evolution of Massive Binaries and the Formation of the Wolf-Rayet Stars}",
+  journal = {\actaa},
+     year = 1967,
+   volume = 17,
+    pages = {355},
+   adsurl = {http://adsabs.harvard.edu/abs/1967AcA....17..355P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1998A&ARv...9...63V,
+   author = {{Vanbeveren}, D. and {De Loore}, C. and {Van Rensbergen}, W.
+	},
+    title = "{Massive stars}",
+  journal = {\aapr},
+ keywords = {massive singlet stars, massive close binaries, massive star population synthesis},
+     year = 1998,
+   volume = 9,
+    pages = {63-152},
+      doi = {10.1007/s001590050015},
+   adsurl = {http://adsabs.harvard.edu/abs/1998A&ARv...9...63V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007MNRAS.376L..52E,
+   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
+    title = "{Ruling out a massive asymptotic giant-branch star as the progenitor of supernova 2005cs}",
+  journal = {\mnras},
+   eprint = {astro-ph/0701152},
+ keywords = {stars: AGB and post-AGB, stars: evolution, supernovae: general, supernovae: individual: 2005cs, infrared: stars},
+     year = 2007,
+    month = mar,
+   volume = 376,
+    pages = {L52-L56},
+      doi = {10.1111/j.1745-3933.2007.00285.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.376L..52E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002A&A...391..979S,
+   author = {{Smartt}, S.~J. and {Lennon}, D.~J. and {Kudritzki}, R.~P. and 
+	{Rosales}, F. and {Ryans}, R.~S.~I. and {Wright}, N.},
+    title = "{The evolutionary status of Sher 25 - implications for blue supergiants and the progenitor of SN 1987A}",
+  journal = {\aap},
+   eprint = {astro-ph/0205242},
+ keywords = {stars: supernovae, stars: individual (Sher 25), stars: supergiants, stars: abundances, stars: winds, outflows},
+     year = 2002,
+    month = sep,
+   volume = 391,
+    pages = {979-991},
+      doi = {10.1051/0004-6361:20020829},
+   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...391..979S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003A&A...397..285G,
+   author = {{Garc{\'{\i}}a-Alvarez}, D. and {Foing}, B.~H. and {Montes}, D. and 
+	{Oliveira}, J. and {Doyle}, J.~G. and {Messina}, S. and {Lanza}, A.~F. and 
+	{Rodon{\`o}}, M. and {Abbott}, J. and {Ash}, T.~D.~C. and {Baldry}, I.~K. and 
+	{Bedding}, T.~R. and {Buckley}, D.~A.~H. and {Cami}, J. and 
+	{Cao}, H. and {Catala}, C. and {Cheng}, K.~P. and {Domiciano de Souza}, Jr., A. and 
+	{Donati}, J.-F. and {Hubert}, A.-M. and {Janot-Pacheco}, E. and 
+	{Hao}, J.~X. and {Kaper}, L. and {Kaufer}, A. and {Leister}, N.~V. and 
+	{Neff}, J.~E. and {Neiner}, C. and {Orlando}, S. and {O'Toole}, S.~J. and 
+	{Sch{\"a}fer}, D. and {Smartt}, S.~J. and {Stahl}, O. and {Telting}, J. and 
+	{Tubbesing}, S.},
+    title = "{Simultaneous optical and X-ray observations of flares and rotational modulation on the RS CVn binary HR 1099 (V711 Tau) from the MUSICOS 1998 campaign}",
+  journal = {\aap},
+   eprint = {astro-ph/0210230},
+ keywords = {stars: binaries: spectroscopic, stars: late-type, stars: individual: HR 1099, stars: atmospheres, stars: activity, stars: flare},
+     year = 2003,
+    month = jan,
+   volume = 397,
+    pages = {285-303},
+      doi = {10.1051/0004-6361:20021481},
+   adsurl = {http://adsabs.harvard.edu/abs/2003A\26A...397..285G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.433.1312F,
+   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
+	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
+	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
+	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
+	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
+	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
+	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
+	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
+	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
+	{Zhou}, G.},
+    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1303.3453},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
+     year = 2013,
+    month = aug,
+   volume = 433,
+    pages = {1312-1337},
+      doi = {10.1093/mnras/stt813},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...759L..13F,
+   author = {{Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J. and {Botticella}, M.-T. and 
+	{Dall'Ora}, M. and {Inserra}, C. and {Tomasella}, L. and {Benetti}, S. and 
+	{Ciroi}, S. and {Eldridge}, J.~J. and {Ergon}, M. and {Kotak}, R. and 
+	{Mattila}, S. and {Ochner}, P. and {Pastorello}, A. and {Reilly}, E. and 
+	{Sollerman}, J. and {Stephens}, A. and {Taddia}, F. and {Valenti}, S.
+	},
+    title = "{Red and Dead: The Progenitor of SN 2012aw in M95}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1204.1523},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: individual: M95, supergiants, supernovae: general, supernovae: individual: SN2012aw},
+     year = 2012,
+    month = nov,
+   volume = 759,
+      eid = {L13},
+    pages = {L13},
+      doi = {10.1088/2041-8205/759/1/L13},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759L..13F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004ApJ...601..845A,
+   author = {{An}, J.~H. and {Evans}, N.~W. and {Kerins}, E. and {Baillon}, P. and 
+	{Calchi Novati}, S. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
+	{Jetzer}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Tsapras}, Y. and {Valls-Gabaud}, D. and 
+	{Point-Agape Collaboration}},
+    title = "{The Anomaly in the Candidate Microlensing Event PA-99-N2}",
+  journal = {\apj},
+   eprint = {astro-ph/0310457},
+ keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing},
+     year = 2004,
+    month = feb,
+   volume = 601,
+    pages = {845-857},
+      doi = {10.1086/380820},
+   adsurl = {http://adsabs.harvard.edu/abs/2004ApJ...601..845A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013Natur.502..346N,
+   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
+	{McCrum}, M. and {Kotak}, R. and {Fraser}, M. and {Wright}, D. and 
+	{Chen}, T.-W. and {Smith}, K. and {Young}, D.~R. and {Sim}, S.~A. and 
+	{Valenti}, S. and {Howell}, D.~A. and {Bresolin}, F. and {Kudritzki}, R.~P. and 
+	{Tonry}, J.~L. and {Huber}, M.~E. and {Rest}, A. and {Pastorello}, A. and 
+	{Tomasella}, L. and {Cappellaro}, E. and {Benetti}, S. and {Mattila}, S. and 
+	{Kankare}, E. and {Kangas}, T. and {Leloudas}, G. and {Sollerman}, J. and 
+	{Taddia}, F. and {Berger}, E. and {Chornock}, R. and {Narayan}, G. and 
+	{Stubbs}, C.~W. and {Foley}, R.~J. and {Lunnan}, R. and {Soderberg}, A. and 
+	{Sanders}, N. and {Milisavljevic}, D. and {Margutti}, R. and 
+	{Kirshner}, R.~P. and {Elias-Rosa}, N. and {Morales-Garoffolo}, A. and 
+	{Taubenberger}, S. and {Botticella}, M.~T. and {Gezari}, S. and 
+	{Urata}, Y. and {Rodney}, S. and {Riess}, A.~G. and {Scolnic}, D. and 
+	{Wood-Vasey}, W.~M. and {Burgett}, W.~S. and {Chambers}, K. and 
+	{Flewelling}, H.~A. and {Magnier}, E.~A. and {Kaiser}, N. and 
+	{Metcalfe}, N. and {Morgan}, J. and {Price}, P.~A. and {Sweeney}, W. and 
+	{Waters}, C.},
+    title = "{Slowly fading super-luminous supernovae that are not pair-instability explosions}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1310.4446},
+ primaryClass = "astro-ph.CO",
+     year = 2013,
+    month = oct,
+   volume = 502,
+    pages = {346-349},
+      doi = {10.1038/nature12569},
+   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.502..346N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...714L.280F,
+   author = {{Fraser}, M. and {Tak{\'a}ts}, K. and {Pastorello}, A. and {Smartt}, S.~J. and 
+	{Mattila}, S. and {Botticella}, M.-T. and {Valenti}, S. and 
+	{Ergon}, M. and {Sollerman}, J. and {Arcavi}, I. and {Benetti}, S. and 
+	{Bufano}, F. and {Crockett}, R.~M. and {Danziger}, I.~J. and 
+	{Gal-Yam}, A. and {Maund}, J.~R. and {Taubenberger}, S. and 
+	{Turatto}, M.},
+    title = "{On the Progenitor and Early Evolution of the Type II Supernova 2009kr}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0912.2071},
+ keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
+     year = 2010,
+    month = may,
+   volume = 714,
+    pages = {L280-L284},
+      doi = {10.1088/2041-8205/714/2/L280},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.280F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...479...49B,
+   author = {{Botticella}, M.~T. and {Riello}, M. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Altavilla}, G. and {Pastorello}, A. and {Turatto}, M. and 
+	{Greggio}, L. and {Patat}, F. and {Valenti}, S. and {Zampieri}, L. and 
+	{Harutyunyan}, A. and {Pignata}, G. and {Taubenberger}, S.},
+    title = "{Supernova rates from the Southern inTermediate Redshift ESO Supernova Search (STRESS)}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0710.3763},
+ keywords = {supernovae: general, stars: formation, Galaxy: evolution, Galaxy: stellar content},
+     year = 2008,
+    month = feb,
+   volume = 479,
+    pages = {49-66},
+      doi = {10.1051/0004-6361:20078011},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...479...49B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2010ApJ...717L..52B,
+   author = {{Botticella}, M.~T. and {Trundle}, C. and {Pastorello}, A. and 
+	{Rodney}, S. and {Rest}, A. and {Gezari}, S. and {Smartt}, S.~J. and 
+	{Narayan}, G. and {Huber}, M.~E. and {Tonry}, J.~L. and {Young}, D. and 
+	{Smith}, K. and {Bresolin}, F. and {Valenti}, S. and {Kotak}, R. and 
+	{Mattila}, S. and {Kankare}, E. and {Wood-Vasey}, W.~M. and 
+	{Riess}, A. and {Neill}, J.~D. and {Forster}, K. and {Martin}, D.~C. and 
+	{Stubbs}, C.~W. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Dombeck}, T. and {Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and 
+	{Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R. and {Luppino}, G. and 
+	{Lupton}, R.~H. and {Magnier}, E.~A. and {Monet}, D.~G. and 
+	{Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and {Rhoads}, P.~H. and 
+	{Siegmund}, W.~A. and {Sweeney}, W.~E. and {Wainscoat}, R.~J. and 
+	{Waters}, C. and {Waterson}, M.~F. and {Wynn-Williams}, C.~G.
+	},
+    title = "{Supernova 2009kf: An Ultraviolet Bright Type IIP Supernova Discovered with Pan-STARRS 1 and GALEX}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1001.5427},
+ primaryClass = "astro-ph.CO",
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: 2009kf},
+     year = 2010,
+    month = jul,
+   volume = 717,
+    pages = {L52-L56},
+      doi = {10.1088/2041-8205/717/1/L52},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...717L..52B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...688.1210B,
+   author = {{Bauer}, F.~E. and {Dwarkadas}, V.~V. and {Brandt}, W.~N. and 
+	{Immler}, S. and {Smartt}, S. and {Bartel}, N. and {Bietenholz}, M.~F.
+	},
+    title = "{Supernova 1996cr: SN 1987A's Wild Cousin?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0804.3597},
+ keywords = {Stars: Circumstellar Matter, Stars: Supernovae: General, supernovae: individual (SN 1996cr), X-rays: individual (SN 1996cr)},
+     year = 2008,
+    month = dec,
+   volume = 688,
+    pages = {1210-1234},
+      doi = {10.1086/589761},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...688.1210B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.389..131P,
+   author = {{Pastorello}, A. and {Quimby}, R.~M. and {Smartt}, S.~J. and 
+	{Mattila}, S. and {Navasardyan}, H. and {Crockett}, R.~M. and 
+	{Elias-Rosa}, N. and {Mondol}, P. and {Wheeler}, J.~C. and {Young}, D.~R.
+	},
+    title = "{Massive stars exploding in a He-rich circumstellar medium - II. The transitional case of SN 2005la}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0801.2278},
+ keywords = {supernovae: general , supernovae: individual: SN 2005la , supernovae: individual: SN 2006jc},
+     year = 2008,
+    month = sep,
+   volume = 389,
+    pages = {131-140},
+      doi = {10.1111/j.1365-2966.2008.13603.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..131P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002A&A...388..899N,
+   author = {{Neiner}, C. and {Hubert}, A.-M. and {Floquet}, M. and {Jankov}, S. and 
+	{Henrichs}, H.~F. and {Foing}, B. and {Oliveira}, J. and {Orlando}, S. and 
+	{Abbott}, J. and {Baldry}, I.~K. and {Bedding}, T.~R. and {Cami}, J. and 
+	{Cao}, H. and {Catala}, C. and {Cheng}, K.~P. and {Domiciano de Souza}, Jr., A. and 
+	{Janot-Pacheco}, E. and {Hao}, J.~X. and {Kaper}, L. and {Kaufer}, A. and 
+	{Leister}, N.~V. and {Neff}, J.~E. and {O'Toole}, S.~J. and 
+	{Sch{\"a}fer}, D. and {Smartt}, S.~J. and {Stahl}, O. and {Telting}, J. and 
+	{Tubbesing}, S. and {Zorec}, J.},
+    title = "{Non-radial pulsation, rotation and outburst in the Be star <ASTROBJ>omega Orionis</ASTROBJ> from the MuSiCoS 1998 campaign}",
+  journal = {\aap},
+ keywords = {stars: emission line, Be, stars: early-type, stars: individual: omega Ori},
+     year = 2002,
+    month = jun,
+   volume = 388,
+    pages = {899-916},
+      doi = {10.1051/0004-6361:20020522},
+   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...388..899N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...630L..33M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Schweizer}, F.},
+    title = "{Luminosity and Mass Limits for the Progenitor of the Type Ic Supernova 2004gt in NGC 4038}",
+  journal = {\apjl},
+   eprint = {astro-ph/0506436},
+ keywords = {Galaxies: Individual: NGC Number: NGC 4038, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (2004gt)},
+     year = 2005,
+    month = sep,
+   volume = 630,
+    pages = {L33-L36},
+      doi = {10.1086/491620},
+   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...630L..33M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...576L.121P,
+   author = {{Paulin-Henriksson}, S. and {Baillon}, P. and {Bouquet}, A. and 
+	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
+	{Kaplan}, J. and {Kerins}, E. and {Lastennet}, E. and {Le Du}, Y. and 
+	{Melchior}, A.-L. and {Smartt}, S.~J. and {Valls-Gabaud}, D. and 
+	{Point-Agape Collaboration}},
+    title = "{A Candidate M31/M32 Intergalactic Microlensing Event}",
+  journal = {\apjl},
+   eprint = {astro-ph/0206387},
+ keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Galaxies: Individual: Messier Number: M32, Galaxy: Halo, Cosmology: Gravitational Lensing},
+     year = 2002,
+    month = sep,
+   volume = 576,
+    pages = {L121-L124},
+      doi = {10.1086/343887},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...576L.121P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001A&A...366L...1R,
+   author = {{Royer}, P. and {Smartt}, S.~J. and {Manfroid}, J. and {Vreux}, J.-M.
+	},
+    title = "{The WR content of IC10 - first detection of WC9 stars in a low metallicity environment?}",
+  journal = {\aap},
+ keywords = {STARS: WOLF-RAYET, PHOTOMETRY: NARROW BANDS, GALAXIES: STARBURST, LOCAL GROUP},
+     year = 2001,
+    month = feb,
+   volume = 366,
+    pages = {L1-L4},
+      doi = {10.1051/0004-6361:20000571},
+   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...366L...1R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999A&A...352L..40M,
+   author = {{Muschielok}, B. and {Kudritzki}, R.~P. and {Appenzeller}, I. and 
+	{Bresolin}, F. and {Butler}, K. and {G{\"a}ssler}, W. and {H{\"a}fner}, R. and 
+	{Hess}, H.~J. and {Hummel}, W. and {Lennon}, D.~J. and {Mantel}, K.-H. and 
+	{Meisl}, W. and {Seifert}, W. and {Smartt}, S.~J. and {Szeifert}, T. and 
+	{Tarantik}, K.},
+    title = "{VLT FORS spectra of blue supergiants in the Local Group galaxy NGC 6822}",
+  journal = {\aap},
+ keywords = {ATOMIC DATA, LINE: FORMATION, STARS: HERTZSPRUNG-RUSSEL (HR) AND C-M DIAGRAMS, STARS: EARLY-TYPE, STARS: SUPERGIANTS},
+     year = 1999,
+    month = dec,
+   volume = 352,
+    pages = {L40-L44},
+   adsurl = {http://adsabs.harvard.edu/abs/1999A&A...352L..40M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...489..359Y,
+   author = {{Young}, D.~R. and {Smartt}, S.~J. and {Mattila}, S. and {Tanvir}, N.~R. and 
+	{Bersier}, D. and {Chambers}, K.~C. and {Kaiser}, N. and {Tonry}, J.~L.
+	},
+    title = "{Core-collapse supernovae in low-metallicity environments and future all-sky transient surveys}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0807.3070},
+ keywords = {surveys, stars: supernovae: general, gamma-rays: bursts},
+     year = 2008,
+    month = oct,
+   volume = 489,
+    pages = {359-375},
+      doi = {10.1051/0004-6361:20078662},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...489..359Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...795...45S,
+   author = {{Scolnic}, D. and {Rest}, A. and {Riess}, A. and {Huber}, M.~E. and 
+	{Foley}, R.~J. and {Brout}, D. and {Chornock}, R. and {Narayan}, G. and 
+	{Tonry}, J.~L. and {Berger}, E. and {Soderberg}, A.~M. and {Stubbs}, C.~W. and 
+	{Kirshner}, R.~P. and {Rodney}, S. and {Smartt}, S.~J. and {Schlafly}, E. and 
+	{Botticella}, M.~T. and {Challis}, P. and {Czekala}, I. and 
+	{Drout}, M. and {Hudson}, M.~J. and {Kotak}, R. and {Leibler}, C. and 
+	{Lunnan}, R. and {Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
+	{Pastorello}, A. and {Sanders}, N.~E. and {Smith}, K. and {Stafford}, E. and 
+	{Thilker}, D. and {Valenti}, S. and {Wood-Vasey}, W.~M. and 
+	{Zheng}, Z. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Denneau}, L. and 
+	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and {Wainscoat}, R. and 
+	{Waters}, C.},
+    title = "{Systematic Uncertainties Associated with the Cosmological Analysis of the First Pan-STARRS1 Type Ia Supernova Sample}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.3824},
+ keywords = {dark energy, supernovae: general},
+     year = 2014,
+    month = nov,
+   volume = 795,
+      eid = {45},
+    pages = {45},
+      doi = {10.1088/0004-637X/795/1/45},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795...45S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...779...18B,
+   author = {{Berger}, E. and {Leibler}, C.~N. and {Chornock}, R. and {Rest}, A. and 
+	{Foley}, R.~J. and {Soderberg}, A.~M. and {Price}, P.~A. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Flewelling}, H. and 
+	{Huber}, M.~E. and {Magnier}, E.~A. and {Metcalfe}, N. and {Stubbs}, C.~W. and 
+	{Tonry}, J.~L.},
+    title = "{A Search for Fast Optical Transients in the Pan-STARRS1 Medium-Deep Survey: M-Dwarf Flares, Asteroids, Limits on Extragalactic Rates, and Implications for LSST}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1307.5324},
+ primaryClass = "astro-ph.HE",
+ keywords = {minor planets, asteroids: general, novae, cataclysmic variables, stars: flare, supernovae: general, surveys},
+     year = 2013,
+    month = dec,
+   volume = 779,
+      eid = {18},
+    pages = {18},
+      doi = {10.1088/0004-637X/779/1/18},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...779...18B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2012ApJ...755L..29B,
+   author = {{Berger}, E. and {Chornock}, R. and {Lunnan}, R. and {Foley}, R. and 
+	{Czekala}, I. and {Rest}, A. and {Leibler}, C. and {Soderberg}, A.~M. and 
+	{Roth}, K. and {Narayan}, G. and {Huber}, M.~E. and {Milisavljevic}, D. and 
+	{Sanders}, N.~E. and {Drout}, M. and {Margutti}, R. and {Kirshner}, R.~P. and 
+	{Marion}, G.~H. and {Challis}, P.~J. and {Riess}, A.~G. and 
+	{Smartt}, S.~J. and {Burgett}, W.~S. and {Hodapp}, K.~W. and 
+	{Heasley}, J.~N. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Magnier}, E.~A. and {McCrum}, M. and {Price}, P.~A. and {Smith}, K. and 
+	{Tonry}, J.~L. and {Wainscoat}, R.~J.},
+    title = "{Ultraluminous Supernovae as a New Probe of the Interstellar Medium in Distant Galaxies}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1206.4050},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: ISM, supernovae: individual: PS1-11bam},
+     year = 2012,
+    month = aug,
+   volume = 755,
+      eid = {L29},
+    pages = {L29},
+      doi = {10.1088/2041-8205/755/2/L29},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...755L..29B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996A&A...305..164S,
+   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
+	},
+    title = "{A metal deficient early B-type star near the edge of the galactic disk.}",
+  journal = {\aap},
+ keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE},
+     year = 1996,
+    month = jan,
+   volume = 305,
+    pages = {164},
+   adsurl = {http://adsabs.harvard.edu/abs/1996A&A...305..164S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014A&A...562A..17E,
+   author = {{Ergon}, M. and {Sollerman}, J. and {Fraser}, M. and {Pastorello}, A. and 
+	{Taubenberger}, S. and {Elias-Rosa}, N. and {Bersten}, M. and 
+	{Jerkstrand}, A. and {Benetti}, S. and {Botticella}, M.~T. and 
+	{Fransson}, C. and {Harutyunyan}, A. and {Kotak}, R. and {Smartt}, S. and 
+	{Valenti}, S. and {Bufano}, F. and {Cappellaro}, E. and {Fiaschi}, M. and 
+	{Howell}, A. and {Kankare}, E. and {Magill}, L. and {Mattila}, S. and 
+	{Maund}, J. and {Naves}, R. and {Ochner}, P. and {Ruiz}, J. and 
+	{Smith}, K. and {Tomasella}, L. and {Turatto}, M.},
+    title = "{Optical and near-infrared observations of SN 2011dh - The first 100 days}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1305.1851},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2011dh, galaxies: clusters: individual: M51},
+     year = 2014,
+    month = feb,
+   volume = 562,
+      eid = {A17},
+    pages = {A17},
+      doi = {10.1051/0004-6361/201321850},
+   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...562A..17E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.357...17B,
+   author = {{Belokurov}, V. and {An}, J. and {Evans}, N.~W. and {Hewett}, P. and 
+	{Baillon}, P. and {Novati}, S.~C. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
+	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Jetzer}, P. and 
+	{Kaplan}, J. and {Kerins}, E. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y. and {Weston}, M.~J.
+	},
+    title = "{The POINT-AGAPE survey - II. An unrestricted search for microlensing events towards M31}",
+  journal = {\mnras},
+   eprint = {astro-ph/0411186},
+ keywords = {gravitational lensing, stars: variables: other, galaxies: individual: M31, dark matter},
+     year = 2005,
+    month = feb,
+   volume = 357,
+    pages = {17-37},
+      doi = {10.1111/j.1365-2966.2005.08629.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.357...17B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997A&A...326..763S,
+   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Lennon}, D.~J.},
+    title = "{Metallicities of 4 blue supergiants near the Galactic centre.}",
+  journal = {\aap},
+ keywords = {B-STARS, SUPERGIANTS, ABUNDANCES, THE GALAXY: CENTRE},
+     year = 1997,
+    month = oct,
+   volume = 326,
+    pages = {763-779},
+   adsurl = {http://adsabs.harvard.edu/abs/1997A&A...326..763S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...767..162C,
+   author = {{Chornock}, R. and {Berger}, E. and {Rest}, A. and {Milisavljevic}, D. and 
+	{Lunnan}, R. and {Foley}, R.~J. and {Soderberg}, A.~M. and {Smartt}, S.~J. and 
+	{Burgasser}, A.~J. and {Challis}, P. and {Chomiuk}, L. and {Czekala}, I. and 
+	{Drout}, M. and {Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
+	{Leibler}, C. and {McLeod}, B. and {Marion}, G.~H. and {Narayan}, G. and 
+	{Riess}, A.~G. and {Roth}, K.~C. and {Sanders}, N.~E. and {Scolnic}, D. and 
+	{Smith}, K. and {Stubbs}, C.~W. and {Tonry}, J.~L. and {Valenti}, S. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Price}, P.~A.},
+    title = "{PS1-10afx at z = 1.388: Pan-STARRS1 Discovery of a New Type of Superluminous Supernova}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1302.0009},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: individual: PS1-10afx, surveys},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {162},
+    pages = {162},
+      doi = {10.1088/0004-637X/767/2/162},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767..162C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...756..184S,
+   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Valenti}, S. and 
+	{Foley}, R.~J. and {Chornock}, R. and {Chomiuk}, L. and {Berger}, E. and 
+	{Smartt}, S. and {Hurley}, K. and {Barthelmy}, S.~D. and {Levesque}, E.~M. and 
+	{Narayan}, G. and {Botticella}, M.~T. and {Briggs}, M.~S. and 
+	{Connaughton}, V. and {Terada}, Y. and {Gehrels}, N. and {Golenetskii}, S. and 
+	{Mazets}, E. and {Cline}, T. and {von Kienlin}, A. and {Boynton}, W. and 
+	{Chambers}, K.~C. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
+	{Jedicke}, R. and {Kaiser}, N. and {Kirshner}, R.~P. and {Kudritzki}, R.-P. and 
+	{Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
+	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
+	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waterson}, M.~F.},
+    title = "{SN 2010ay is a Luminous and Broad-lined Type Ic Supernova within a Low-metallicity Host Galaxy}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1110.2363},
+ primaryClass = "astro-ph.HE",
+ keywords = {gamma-ray burst: general, supernovae: general, supernovae: individual: 2010ay},
+     year = 2012,
+    month = sep,
+   volume = 756,
+      eid = {184},
+    pages = {184},
+      doi = {10.1088/0004-637X/756/2/184},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..184S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999MNRAS.309L..33H,
+   author = {{Hambly}, N.~C. and {Smartt}, S.~J. and {Hodgkin}, S.~T. and 
+	{Jameson}, R.~F. and {Kemp}, S.~N. and {Rolleston}, W.~R.~J. and 
+	{Steele}, I.~A.},
+    title = "{On the parallax of WD 0346++246: a halo white dwarf candidate}",
+  journal = {\mnras},
+     year = 1999,
+    month = nov,
+   volume = 309,
+    pages = {L33-L36},
+      doi = {10.1046/j.1365-8711.1999.03085.x},
+   adsurl = {http://adsabs.harvard.edu/abs/1999MNRAS.309L..33H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996A&A...310..123S,
+   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
+	},
+    title = "{The chemical composition towards the galactic anti-centre. II. Differential abundance analyses and distance determinations.}",
+  journal = {\aap},
+ keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, GALAXY: ABUNDANCES},
+     year = 1996,
+    month = jun,
+   volume = 310,
+    pages = {123-131},
+   adsurl = {http://adsabs.harvard.edu/abs/1996A&A...310..123S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011A&A...530A..45J,
+   author = {{Jerkstrand}, A. and {Fransson}, C. and {Kozma}, C.},
+    title = "{The $^{44}$Ti-powered spectrum of SN 1987A}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1103.3653},
+ primaryClass = "astro-ph.HE",
+ keywords = {line: formation, line: identification, radiative transfer, supernovae: individual: 1987A},
+     year = 2011,
+    month = jun,
+   volume = 530,
+      eid = {A45},
+    pages = {A45},
+      doi = {10.1051/0004-6361/201015937},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530A..45J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+
+@INPROCEEDINGS{2012AAS...21943602J,
+   author = {{Jerkstrand}, A.},
+    title = "{The Progenitor Masses Of Type IIP Supernovae From Late-time Spectral Modeling}",
+booktitle = {American Astronomical Society Meeting Abstracts \#219},
+     year = 2012,
+   series = {American Astronomical Society Meeting Abstracts},
+   volume = 219,
+    month = jan,
+    pages = {#436.02},
+   adsurl = {http://adsabs.harvard.edu/abs/2012AAS...21943602J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.408...87M,
+   author = {{Mazzali}, P.~A. and {Maurer}, I. and {Valenti}, S. and {Kotak}, R. and 
+	{Hunter}, D.},
+    title = "{The Type Ic SN 2007gr: a census of the ejecta from late-time optical-infrared spectra}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.4259},
+ primaryClass = "astro-ph.HE",
+ keywords = {radiation mechanisms: thermal, supernovae: general, supernovae: individual: SN2007gr},
+     year = 2010,
+    month = oct,
+   volume = 408,
+    pages = {87-96},
+      doi = {10.1111/j.1365-2966.2010.17133.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408...87M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.408..827D,
+   author = {{Dessart}, L. and {Livne}, E. and {Waldman}, R.},
+    title = "{Determining the main-sequence mass of Type II supernova progenitors}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.2268},
+ primaryClass = "astro-ph.SR",
+ keywords = {hydrodynamics, radiative transfer, stars: atmospheres, stars: supernovae: general},
+     year = 2010,
+    month = oct,
+   volume = 408,
+    pages = {827-840},
+      doi = {10.1111/j.1365-2966.2010.17190.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408..827D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014A&A...572L..11G,
+   author = {{Groh}, J.~H.},
+    title = "{Early-time spectra of supernovae and their precursor winds. The luminous blue variable/yellow hypergiant progenitor of SN 2013cu}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1408.5397},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, stars: evolution, supernovae: individual: SN 2013cu, stars: winds, outflows},
+     year = 2014,
+    month = dec,
+   volume = 572,
+      eid = {L11},
+    pages = {L11},
+      doi = {10.1051/0004-6361/201424852},
+   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...572L..11G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2014Natur.509..471G,
+   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
+	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
+	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
+	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
+	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
+	{Wheeler}, J.~C.},
+    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1406.7640},
+ primaryClass = "astro-ph.HE",
+     year = 2014,
+    month = may,
+   volume = 509,
+    pages = {471-474},
+      doi = {10.1038/nature13304},
+   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@PHDTHESIS{2011PhDT........90J,
+   author = {{Jerkstrand}, A.},
+    title = "{Spectral modeling of nebular-phase supernovae}",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena},
+   school = {PhD Thesis, University of Stockholm, Faculty of Science,  Department of Astronomy (2011).~Advisor:  Claes Fransson},
+     year = 2011,
+    month = December,
+   adsurl = {http://adsabs.harvard.edu/abs/2011PhDT........90J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012A&A...546A..28J,
+   author = {{Jerkstrand}, A. and {Fransson}, C. and {Maguire}, K. and {Smartt}, S. and 
+	{Ergon}, M. and {Spyromilio}, J.},
+    title = "{The progenitor mass of the Type IIP supernova SN 2004et from late-time spectral modeling}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1208.2183},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: SN 2004et, line: formation, line: identification, radiative transfer},
+     year = 2012,
+    month = oct,
+   volume = 546,
+      eid = {A28},
+    pages = {A28},
+      doi = {10.1051/0004-6361/201219528},
+   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...546A..28J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436..222M,
+   author = {{Maguire}, K. and {Sullivan}, M. and {Patat}, F. and {Gal-Yam}, A. and 
+	{Hook}, I.~M. and {Dhawan}, S. and {Howell}, D.~A. and {Mazzali}, P. and 
+	{Nugent}, P.~E. and {Pan}, Y.-C. and {Podsiadlowski}, P. and 
+	{Simon}, J.~D. and {Sternberg}, A. and {Valenti}, S. and {Baltay}, C. and 
+	{Bersier}, D. and {Blagorodnova}, N. and {Chen}, T.-W. and {Ellman}, N. and 
+	{Feindt}, U. and {F{\"o}rster}, F. and {Fraser}, M. and {Gonz{\'a}lez-Gait{\'a}n}, S. and 
+	{Graham}, M.~L. and {Guti{\'e}rrez}, C. and {Hachinger}, S. and 
+	{Hadjiyska}, E. and {Inserra}, C. and {Knapic}, C. and {Laher}, R.~R. and 
+	{Leloudas}, G. and {Margheim}, S. and {McKinnon}, R. and {Molinaro}, M. and 
+	{Morrell}, N. and {Ofek}, E.~O. and {Rabinowitz}, D. and {Rest}, A. and 
+	{Sand}, D. and {Smareglia}, R. and {Smartt}, S.~J. and {Taddia}, F. and 
+	{Walker}, E.~S. and {Walton}, N.~A. and {Young}, D.~R.},
+    title = "{A statistical analysis of circumstellar material in Type Ia supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1308.3899},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, supernovae: general, distance scale},
+     year = 2013,
+    month = nov,
+   volume = 436,
+    pages = {222-240},
+      doi = {10.1093/mnras/stt1586},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..222M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.434.1636T,
+   author = {{Tomasella}, L. and {Cappellaro}, E. and {Fraser}, M. and {Pumo}, M.~L. and 
+	{Pastorello}, A. and {Pignata}, G. and {Benetti}, S. and {Bufano}, F. and 
+	{Dennefeld}, M. and {Harutyunyan}, A. and {Iijima}, T. and {Jerkstrand}, A. and 
+	{Kankare}, E. and {Kotak}, R. and {Magill}, L. and {Nascimbeni}, V. and 
+	{Ochner}, P. and {Siviero}, A. and {Smartt}, S. and {Sollerman}, J. and 
+	{Stanishev}, V. and {Taddia}, F. and {Taubenberger}, S. and 
+	{Turatto}, M. and {Valenti}, S. and {Wright}, D.~E. and {Zampieri}, L.
+	},
+    title = "{Comparison of progenitor mass estimates for the Type IIP SN 2012A}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1305.5789},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2012A, galaxies: individual: NGC 3239},
+     year = 2013,
+    month = sep,
+   volume = 434,
+    pages = {1636-1657},
+      doi = {10.1093/mnras/stt1130},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.434.1636T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...771...97L,
+   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Milisavljevic}, D. and 
+	{Drout}, M. and {Sanders}, N.~E. and {Challis}, P.~M. and {Czekala}, I. and 
+	{Foley}, R.~J. and {Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
+	{Leibler}, C. and {Marion}, G.~H. and {McCrum}, M. and {Narayan}, G. and 
+	{Rest}, A. and {Roth}, K.~C. and {Scolnic}, D. and {Smartt}, S.~J. and 
+	{Smith}, K. and {Soderberg}, A.~M. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Kudritzki}, R.-P. and 
+	{Magnier}, E.~A. and {Price}, P.~A.},
+    title = "{PS1-10bzj: A Fast, Hydrogen-poor Superluminous Supernova in a Metal-poor Host Galaxy}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.1531},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: PS1-10bzj },
+     year = 2013,
+    month = jul,
+   volume = 771,
+      eid = {97},
+    pages = {97},
+      doi = {10.1088/0004-637X/771/2/97},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...771...97L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...770...29C,
+   author = {{Childress}, M.~J. and {Scalzo}, R.~A. and {Sim}, S.~A. and 
+	{Tucker}, B.~E. and {Yuan}, F. and {Schmidt}, B.~P. and {Cenko}, S.~B. and 
+	{Silverman}, J.~M. and {Contreras}, C. and {Hsiao}, E.~Y. and 
+	{Phillips}, M. and {Morrell}, N. and {Jha}, S.~W. and {McCully}, C. and 
+	{Filippenko}, A.~V. and {Anderson}, J.~P. and {Benetti}, S. and 
+	{Bufano}, F. and {de Jaeger}, T. and {Forster}, F. and {Gal-Yam}, A. and 
+	{Le Guillou}, L. and {Maguire}, K. and {Maund}, J. and {Mazzali}, P.~A. and 
+	{Pignata}, G. and {Smartt}, S. and {Spyromilio}, J. and {Sullivan}, M. and 
+	{Taddia}, F. and {Valenti}, S. and {Bayliss}, D.~D.~R. and {Bessell}, M. and 
+	{Blanc}, G.~A. and {Carson}, D.~J. and {Clubb}, K.~I. and {de Burgh-Day}, C. and 
+	{Desjardins}, T.~D. and {Fang}, J.~J. and {Fox}, O.~D. and {Gates}, E.~L. and 
+	{Ho}, I.-T. and {Keller}, S. and {Kelly}, P.~L. and {Lidman}, C. and 
+	{Loaring}, N.~S. and {Mould}, J.~R. and {Owers}, M. and {Ozbilgen}, S. and 
+	{Pei}, L. and {Pickering}, T. and {Pracy}, M.~B. and {Rich}, J.~A. and 
+	{Schaefer}, B.~E. and {Scott}, N. and {Stritzinger}, M. and 
+	{Vogt}, F.~P.~A. and {Zhou}, G.},
+    title = "{Spectroscopic Observations of SN 2012fr: A Luminous, Normal Type Ia Supernova with Early High-velocity Features and a Late Velocity Plateau}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1302.2926},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: individual: NGC 1365, supernovae: general, supernovae: individual: SN 2012fr},
+     year = 2013,
+    month = jun,
+   volume = 770,
+      eid = {29},
+    pages = {29},
+      doi = {10.1088/0004-637X/770/1/29},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770...29C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...731L..11N,
+   author = {{Narayan}, G. and {Foley}, R.~J. and {Berger}, E. and {Botticella}, M.~T. and 
+	{Chornock}, R. and {Huber}, M.~E. and {Rest}, A. and {Scolnic}, D. and 
+	{Smartt}, S. and {Valenti}, S. and {Soderberg}, A.~M. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Flewelling}, H.~A. and {Gates}, G. and 
+	{Grav}, T. and {Kaiser}, N. and {Kirshner}, R.~P. and {Magnier}, E.~A. and 
+	{Morgan}, J.~S. and {Price}, P.~A. and {Riess}, A.~G. and {Stubbs}, C.~W. and 
+	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C. and {Wood-Vasey}, W.~M.},
+    title = "{Displaying the Heterogeneity of the SN 2002cx-like Subclass of Type Ia Supernovae with Observations of the Pan-STARRS-1 Discovered SN 2009ku}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1008.4353},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2009ku},
+     year = 2011,
+    month = apr,
+   volume = 731,
+      eid = {L11},
+    pages = {L11},
+      doi = {10.1088/2041-8205/731/1/L11},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...731L..11N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.410.2767C,
+   author = {{Crockett}, R.~M. and {Smartt}, S.~J. and {Pastorello}, A. and 
+	{Eldridge}, J.~J. and {Stephens}, A.~W. and {Maund}, J.~R. and 
+	{Mattila}, S.},
+    title = "{On the nature of the progenitors of three Type II-P supernovae: 2004et, 2006my and 2006ov}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0912.3302},
+ primaryClass = "astro-ph.CO",
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2004et, supernovae: individual: SN 2006my, supernovae: individual: SN 2006ov},
+     year = 2011,
+    month = feb,
+   volume = 410,
+    pages = {2767-2786},
+      doi = {10.1111/j.1365-2966.2010.17652.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.410.2767C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...749L..28V,
+   author = {{Valenti}, S. and {Taubenberger}, S. and {Pastorello}, A. and 
+	{Aramyan}, L. and {Botticella}, M.~T. and {Fraser}, M. and {Benetti}, S. and 
+	{Smartt}, S.~J. and {Cappellaro}, E. and {Elias-Rosa}, N. and 
+	{Ergon}, M. and {Magill}, L. and {Magnier}, E. and {Kotak}, R. and 
+	{Price}, P.~A. and {Sollerman}, J. and {Tomasella}, L. and {Turatto}, M. and 
+	{Wright}, D.~E.},
+    title = "{A Spectroscopically Normal Type Ic Supernova from a Very Massive Progenitor}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1203.1933},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2011bm},
+     year = 2012,
+    month = apr,
+   volume = 749,
+      eid = {L28},
+    pages = {L28},
+      doi = {10.1088/2041-8205/749/2/L28},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...749L..28V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012MNRAS.420.3451M,
+   author = {{Maguire}, K. and {Jerkstrand}, A. and {Smartt}, S.~J. and {Fransson}, C. and 
+	{Pastorello}, A. and {Benetti}, S. and {Valenti}, S. and {Bufano}, F. and 
+	{Leloudas}, G.},
+    title = "{Constraining the physical properties of Type II-Plateau supernovae using nebular phase spectra}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1112.0035},
+ primaryClass = "astro-ph.SR",
+ keywords = {line: formation, line: profiles, radiative transfer, supernovae: general},
+     year = 2012,
+    month = mar,
+   volume = 420,
+    pages = {3451-3468},
+      doi = {10.1111/j.1365-2966.2011.20276.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.420.3451M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.441..289B,
+   author = {{Benetti}, S. and {Nicholl}, M. and {Cappellaro}, E. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Elias-Rosa}, N. and {Drake}, A.~J. and 
+	{Tomasella}, L. and {Turatto}, M. and {Harutyunyan}, A. and 
+	{Taubenberger}, S. and {Hachinger}, S. and {Morales-Garoffolo}, A. and 
+	{Chen}, T.-W. and {Djorgovski}, S.~G. and {Fraser}, M. and {Gal-Yam}, A. and 
+	{Inserra}, C. and {Mazzali}, P. and {Pumo}, M.~L. and {Sollerman}, J. and 
+	{Valenti}, S. and {Young}, D.~R. and {Dennefeld}, M. and {Le Guillou}, L. and 
+	{Fleury}, M. and {L{\'e}get}, P.-F.},
+    title = "{The supernova CSS121015:004244+132827: a clue for understanding superluminous supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.1311},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: CSS121015:004244+132827},
+     year = 2014,
+    month = jun,
+   volume = 441,
+    pages = {289-303},
+      doi = {10.1093/mnras/stu538},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.441..289B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...763L..28C,
+   author = {{Chen}, T.-W. and {Smartt}, S.~J. and {Bresolin}, F. and {Pastorello}, A. and 
+	{Kudritzki}, R.-P. and {Kotak}, R. and {McCrum}, M. and {Fraser}, M. and 
+	{Valenti}, S.},
+    title = "{The Host Galaxy of the Super-luminous SN 2010gx and Limits on Explosive $^{56}$Ni Production}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1210.4027},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: SN 2010gx},
+     year = 2013,
+    month = feb,
+   volume = 763,
+      eid = {L28},
+    pages = {L28},
+      doi = {10.1088/2041-8205/763/2/L28},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...763L..28C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...580..213B,
+   author = {{Bresolin}, F. and {Kudritzki}, R.-P. and {Lennon}, D.~J. and 
+	{Smartt}, S.~J. and {Herrero}, A. and {Urbaneja}, M.~A. and 
+	{Puls}, J.},
+    title = "{Space Telescope Imaging Spectrograph Ultraviolet Spectroscopy of Early B Supergiants in M31}",
+  journal = {\apj},
+   eprint = {astro-ph/0207326},
+ keywords = {Galaxies: Individual: Messier Number: M31, Galaxies: Stellar Content, Stars: Atmospheres, Stars: Early-Type, Stars: Winds, Outflows, Stars: Supergiants},
+     year = 2002,
+    month = nov,
+   volume = 580,
+    pages = {213-224},
+      doi = {10.1086/343072},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...580..213B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.437.1519V,
+   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
+	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
+	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
+	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
+	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
+	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
+	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
+	{Young}, D.~R.},
+    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint Type I supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.2983},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2012hn},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {1519-1533},
+      doi = {10.1093/mnras/stt1983},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437.1519V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.437..656M,
+   author = {{McCrum}, M. and {Smartt}, S.~J. and {Kotak}, R. and {Rest}, A. and 
+	{Jerkstrand}, A. and {Inserra}, C. and {Rodney}, S.~A. and {Chen}, T.-W. and 
+	{Howell}, D.~A. and {Huber}, M.~E. and {Pastorello}, A. and 
+	{Tonry}, J.~L. and {Bresolin}, F. and {Kudritzki}, R.-P. and 
+	{Chornock}, R. and {Berger}, E. and {Smith}, K. and {Botticella}, M.~T. and 
+	{Foley}, R.~J. and {Fraser}, M. and {Milisavljevic}, D. and 
+	{Nicholl}, M. and {Riess}, A.~G. and {Stubbs}, C.~W. and {Valenti}, S. and 
+	{Wood-Vasey}, W.~M. and {Wright}, D. and {Young}, D.~R. and 
+	{Drout}, M. and {Czekala}, I. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Draper}, P. and {Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and 
+	{Magnier}, E.~A. and {Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and 
+	{Wainscoat}, R.~J.},
+    title = "{The superluminous supernova PS1-11ap: bridging the gap between low and high redshift}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.4417},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: PS1-11ap},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {656-674},
+      doi = {10.1093/mnras/stt1923},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..656M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...720L..77G,
+   author = {{Gezari}, S. and {Rest}, A. and {Huber}, M.~E. and {Narayan}, G. and 
+	{Forster}, K. and {Neill}, J.~D. and {Martin}, D.~C. and {Valenti}, S. and 
+	{Smartt}, S.~J. and {Chornock}, R. and {Berger}, E. and {Soderberg}, A.~M. and 
+	{Mattila}, S. and {Kankare}, E. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Dombeck}, T. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
+	{Jedicke}, R. and {Kaiser}, N. and {Kudritzki}, R. and {Luppino}, G. and 
+	{Lupton}, R.~H. and {Magnier}, E.~A. and {Monet}, D.~G. and 
+	{Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and {Rhoads}, P.~H. and 
+	{Siegmund}, W.~A. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
+	{Wainscoat}, R.~J. and {Waterson}, M.~F. and {Wynn-Williams}, C.~G.
+	},
+    title = "{GALEX and Pan-STARRS1 Discovery of SN IIP 2010aq: The First Few Days After Shock Breakout in a Red Supergiant Star}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1007.4551},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: individual: SN 2010aq, surveys, ultraviolet: general},
+     year = 2010,
+    month = sep,
+   volume = 720,
+    pages = {L77-L81},
+      doi = {10.1088/2041-8205/720/1/L77},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...720L..77G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010MNRAS.403L..11M,
+   author = {{Maguire}, K. and {Kotak}, R. and {Smartt}, S.~J. and {Pastorello}, A. and 
+	{Hamuy}, M. and {Bufano}, F.},
+    title = "{Type II-P supernovae as standardized candles: improvements using near-infrared data}",
+  journal = {\mnras},
+ keywords = {supernovae: general, galaxies: general, distance scale},
+     year = 2010,
+    month = mar,
+   volume = 403,
+    pages = {L11-L15},
+      doi = {10.1111/j.1745-3933.2009.00804.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.403L..11M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998A&A...334..987V,
+   author = {{Venn}, K.~A. and {Smartt}, S.~J. and {Lennon}, D.~J. and {Dufton}, P.~L.
+	},
+    title = "{New identifications for blue objects towards the Galactic center: post-AGB stars, Be/disk stars and others}",
+  journal = {\aap},
+ keywords = {STARS: ABUNDANCES, STARS: EMISSION-LINE, BE, STARS: FUNDAMENTAL PARAMETERS, STARS: AGB AND POST-AGB, STARS: SUPERGIANTS, GALAXY: CENTRE},
+     year = 1998,
+    month = jun,
+   volume = 334,
+    pages = {987-999},
+   adsurl = {http://adsabs.harvard.edu/abs/1998A&A...334..987V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...780...44C,
+   author = {{Chornock}, R. and {Berger}, E. and {Gezari}, S. and {Zauderer}, B.~A. and 
+	{Rest}, A. and {Chomiuk}, L. and {Kamble}, A. and {Soderberg}, A.~M. and 
+	{Czekala}, I. and {Dittmann}, J. and {Drout}, M. and {Foley}, R.~J. and 
+	{Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and {Lawrence}, A. and 
+	{Lunnan}, R. and {Marion}, G.~H. and {Narayan}, G. and {Riess}, A.~G. and 
+	{Roth}, K.~C. and {Sanders}, N.~E. and {Scolnic}, D. and {Smartt}, S.~J. and 
+	{Smith}, K. and {Stubbs}, C.~W. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Magnier}, E.~A. and {Martin}, D.~C. and {Neill}, J.~D. and 
+	{Price}, P.~A. and {Wainscoat}, R.},
+    title = "{The Ultraviolet-bright, Slowly Declining Transient PS1-11af as a Partial Tidal Disruption Event}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1309.3009},
+ primaryClass = "astro-ph.CO",
+ keywords = {accretion, accretion disks, black hole physics, galaxies: nuclei},
+     year = 2014,
+    month = jan,
+   volume = 780,
+      eid = {44},
+    pages = {44},
+      doi = {10.1088/0004-637X/780/1/44},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...44C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.418L.124V,
+   author = {{Voss}, R. and {Nielsen}, M.~T.~B. and {Nelemans}, G. and {Fraser}, M. and 
+	{Smartt}, S.~J.},
+    title = "{On the association of ULXs with young superclusters: M82 X-1 and a new candidate in NGC 7479}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1109.6336},
+ primaryClass = "astro-ph.HE",
+ keywords = {black hole physics, galaxies: star clusters: general, X-rays: binaries},
+     year = 2011,
+    month = nov,
+   volume = 418,
+    pages = {L124-L128},
+      doi = {10.1111/j.1745-3933.2011.01157.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.418L.124V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.388.1127H,
+   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Skillman}, E.~D. and 
+	{Evans}, C.~J. and {Trundle}, C. and {Lennon}, D.~J. and {Crowther}, P.~A. and 
+	{Hunter}, I.},
+    title = "{The blue supergiant Sher 25 and its intriguing hourglass nebula}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0803.4262},
+ keywords = {stars: abundances , stars: evolution , stars: individual: Sher25 , supergiants},
+     year = 2008,
+    month = aug,
+   volume = 388,
+    pages = {1127-1142},
+      doi = {10.1111/j.1365-2966.2008.13347.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.388.1127H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998A&A...332..681H,
+   author = {{Hibbins}, R.~E. and {Dufton}, P.~L. and {Smartt}, S.~J. and 
+	{Rolleston}, W.~R.~J.},
+    title = "{The carbon abundance in main-sequence B-type stars towards the Galactic anti-centre}",
+  journal = {\aap},
+ keywords = {STARS: ABUNDANCES, STARS: ATMOSPHERES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES},
+     year = 1998,
+    month = apr,
+   volume = 332,
+    pages = {681-685},
+   adsurl = {http://adsabs.harvard.edu/abs/1998A&A...332..681H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996A&AS..116..483S,
+   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
+	},
+    title = "{The chemical composition towards the Galactic anti-centre. I. Observations and model atmosphere analyses.}",
+  journal = {\aaps},
+ keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES},
+     year = 1996,
+    month = may,
+   volume = 116,
+    pages = {483-494},
+   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..116..483S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...787..138L,
+   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Laskar}, T. and 
+	{Fong}, W. and {Rest}, A. and {Sanders}, N.~E. and {Challis}, P.~M. and 
+	{Drout}, M.~R. and {Foley}, R.~J. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
+	{Leibler}, C. and {Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
+	{Narayan}, G. and {Scolnic}, D. and {Smartt}, S.~J. and {Smith}, K.~W. and 
+	{Soderberg}, A.~M. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Magnier}, E.~A. and {Price}, P.~A. and {Wainscoat}, R.~J.
+	},
+    title = "{Hydrogen-poor Superluminous Supernovae and Long-duration Gamma-Ray Bursts Have Similar Host Galaxies}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1311.0026},
+ primaryClass = "astro-ph.HE",
+ keywords = {galaxies: abundances, galaxies: dwarf, galaxies: star formation, supernovae: general},
+     year = 2014,
+    month = jun,
+   volume = 787,
+      eid = {138},
+    pages = {138},
+      doi = {10.1088/0004-637X/787/2/138},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..138L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.448.2482J,
+   author = {{Jerkstrand}, A. and {Smartt}, S.~J. and {Sollerman}, J. and 
+	{Inserra}, C. and {Fraser}, M. and {Spyromilio}, J. and {Fransson}, C. and 
+	{Chen}, T.-W. and {Barbarino}, C. and {Dall'Ora}, M. and {Botticella}, M.~T. and 
+	{Della Valle}, M. and {Gal-Yam}, A. and {Valenti}, S. and {Maguire}, K. and 
+	{Mazzali}, P. and {Tomasella}, L.},
+    title = "{Supersolar Ni/Fe production in the Type IIP SN 2012ec}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1410.8394},
+ primaryClass = "astro-ph.SR",
+ keywords = {line: formation, nuclear reactions, nucleosynthesis, abundances, stars: evolution, supernovae: general, supernovae: individual: SN 2012ec},
+     year = 2015,
+    month = apr,
+   volume = 448,
+    pages = {2482-2494},
+      doi = {10.1093/mnras/stv087},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.448.2482J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.439.3694J,
+   author = {{Jerkstrand}, A. and {Smartt}, S.~J. and {Fraser}, M. and {Fransson}, C. and 
+	{Sollerman}, J. and {Taddia}, F. and {Kotak}, R.},
+    title = "{The nebular spectra of SN 2012aw and constraints on stellar nucleosynthesis from oxygen emission lines}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1311.2031},
+ primaryClass = "astro-ph.SR",
+ keywords = {radiative transfer - stars: evolution, supernovae: general, supernovae: indi-vidual: SN 2012aw},
+     year = 2014,
+    month = apr,
+   volume = 439,
+    pages = {3694-3703},
+      doi = {10.1093/mnras/stu221},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.3694J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...779L...8F,
+   author = {{Fraser}, M. and {Magee}, M. and {Kotak}, R. and {Smartt}, S.~J. and 
+	{Smith}, K.~W. and {Polshaw}, J. and {Drake}, A.~J. and {Boles}, T. and 
+	{Lee}, C.-H. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
+	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C.},
+    title = "{Detection of an Outburst One Year Prior to the Explosion of SN 2011ht}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1309.4695},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: UGC 5460, stars: massive, supernovae: general, supernovae: individual: SN2011ht},
+     year = 2013,
+    month = dec,
+   volume = 779,
+      eid = {L8},
+    pages = {L8},
+      doi = {10.1088/2041-8205/779/1/L8},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...779L...8F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.438L.101V,
+   author = {{Valenti}, S. and {Sand}, D. and {Pastorello}, A. and {Graham}, M.~L. and 
+	{Howell}, D.~A. and {Parrent}, J.~T. and {Tomasella}, L. and 
+	{Ochner}, P. and {Fraser}, M. and {Benetti}, S. and {Yuan}, F. and 
+	{Smartt}, S.~J. and {Maund}, J.~R. and {Arcavi}, I. and {Gal-Yam}, A. and 
+	{Inserra}, C. and {Young}, D.},
+    title = "{The first month of evolution of the slow-rising Type IIP SN 2013ej in M74$^{â
+}$}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1309.4269},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae individual: SN 2013ej},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {L101-L105},
+      doi = {10.1093/mnrasl/slt171},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438L.101V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009A&A...504..211H,
+   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
+	{Evans}, C.~J.},
+    title = "{Erratum: The VLT-FLAMES survey of massive stars:  atmospheric parameters and rotational velocity  distributions for B-type stars in the Magellanic Clouds}",
+  journal = {\aap},
+ keywords = {stars: early-type, stars: fundamental parameters, stars: rotation, stars: evolution, errata, addenda},
+     year = 2009,
+    month = sep,
+   volume = 504,
+    pages = {211-211},
+      doi = {10.1051/0004-6361/20078511e},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...504..211H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009Natur.462..624G,
+   author = {{Gal-Yam}, A. and {Mazzali}, P. and {Ofek}, E.~O. and {Nugent}, P.~E. and 
+	{Kulkarni}, S.~R. and {Kasliwal}, M.~M. and {Quimby}, R.~M. and 
+	{Filippenko}, A.~V. and {Cenko}, S.~B. and {Chornock}, R. and 
+	{Waldman}, R. and {Kasen}, D. and {Sullivan}, M. and {Beshore}, E.~C. and 
+	{Drake}, A.~J. and {Thomas}, R.~C. and {Bloom}, J.~S. and {Poznanski}, D. and 
+	{Miller}, A.~A. and {Foley}, R.~J. and {Silverman}, J.~M. and 
+	{Arcavi}, I. and {Ellis}, R.~S. and {Deng}, J.},
+    title = "{Supernova 2007bi as a pair-instability explosion}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1001.1156},
+ primaryClass = "astro-ph.CO",
+     year = 2009,
+    month = dec,
+   volume = 462,
+    pages = {624-627},
+      doi = {10.1038/nature08579},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.462..624G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009Natur.458..865G,
+   author = {{Gal-Yam}, A. and {Leonard}, D.~C.},
+    title = "{A massive hypergiant star as the progenitor of the supernova SN 2005gl}",
+  journal = {\nat},
+     year = 2009,
+    month = apr,
+   volume = 458,
+    pages = {865-867},
+      doi = {10.1038/nature07934},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.458..865G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012Sci...337..927G,
+   author = {{Gal-Yam}, A.},
+    title = "{Luminous Supernovae}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {1208.3217},
+ primaryClass = "astro-ph.CO",
+     year = 2012,
+    month = aug,
+   volume = 337,
+    pages = {927-},
+      doi = {10.1126/science.1203601},
+   adsurl = {http://adsabs.harvard.edu/abs/2012Sci...337..927G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...736..159G,
+   author = {{Gal-Yam}, A. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Green}, Y. and 
+	{Yaron}, O. and {Ben-Ami}, S. and {Xu}, D. and {Sternberg}, A. and 
+	{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Ofek}, E.~O. and 
+	{Walters}, R. and {Nugent}, P.~E. and {Poznanski}, D. and {Bloom}, J.~S. and 
+	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Li}, W. and {Silverman}, J.~M. and 
+	{Walker}, E.~S. and {Sullivan}, M. and {Maguire}, K. and {Howell}, D.~A. and 
+	{Mazzali}, P.~A. and {Frail}, D.~A. and {Bersier}, D. and {James}, P.~A. and 
+	{Akerlof}, C.~W. and {Yuan}, F. and {Law}, N. and {Fox}, D.~B. and 
+	{Gehrels}, N.},
+    title = "{Real-time Detection and Rapid Multiwavelength Follow-up Observations of a Highly Subluminous Type II-P Supernova from the Palomar Transient Factory Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1106.0400},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: PTF10vdl},
+     year = 2011,
+    month = aug,
+   volume = 736,
+      eid = {159},
+    pages = {159},
+      doi = {10.1088/0004-637X/736/2/159},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...736..159G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014Natur.509..471G,
+   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
+	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
+	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
+	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
+	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
+	{Wheeler}, J.~C.},
+    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1406.7640},
+ primaryClass = "astro-ph.HE",
+     year = 2014,
+    month = may,
+   volume = 509,
+    pages = {471-474},
+      doi = {10.1038/nature13304},
+   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.438..368T,
+   author = {{Tak{\'a}ts}, K. and {Pumo}, M.~L. and {Elias-Rosa}, N. and 
+	{Pastorello}, A. and {Pignata}, G. and {Paillas}, E. and {Zampieri}, L. and 
+	{Anderson}, J.~P. and {Vink{\'o}}, J. and {Benetti}, S. and 
+	{Botticella}, M.-T. and {Bufano}, F. and {Campillay}, A. and 
+	{Cartier}, R. and {Ergon}, M. and {Folatelli}, G. and {Foley}, R.~J. and 
+	{F{\"o}rster}, F. and {Hamuy}, M. and {Hentunen}, V.-P. and 
+	{Kankare}, E. and {Leloudas}, G. and {Morrell}, N. and {Nissinen}, M. and 
+	{Phillips}, M.~M. and {Smartt}, S.~J. and {Stritzinger}, M. and 
+	{Taubenberger}, S. and {Valenti}, S. and {Van Dyk}, S.~D. and 
+	{Haislip}, J.~B. and {LaCluyze}, A.~P. and {Moore}, J.~P. and 
+	{Reichart}, D.},
+    title = "{SN 2009N: linking normal and subluminous Type II-P SNe}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1311.2525},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2008in, supernovae: individual: SN 2009N, galaxies: individual: NGC 4487},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {368-387},
+      doi = {10.1093/mnras/stt2203},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..368T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.437L..51I,
+   author = {{Inserra}, C. and {Smartt}, S.~J. and {Scalzo}, R. and {Fraser}, M. and 
+	{Pastorello}, A. and {Childress}, M. and {Pignata}, G. and {Jerkstrand}, A. and 
+	{Kotak}, R. and {Benetti}, S. and {Della Valle}, M. and {Gal-Yam}, A. and 
+	{Mazzali}, P. and {Smith}, K. and {Sullivan}, M. and {Valenti}, S. and 
+	{Yaron}, O. and {Young}, D. and {Reichart}, D.},
+    title = "{SN2012ca: a stripped envelope core-collapse SN interacting with dense circumstellar medium}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1307.1791},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN2012ca},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {L51-L55},
+      doi = {10.1093/mnrasl/slt138},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437L..51I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.431L.102M,
+   author = {{Maund}, J.~R. and {Fraser}, M. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
+	{Barbarino}, C. and {Childress}, M. and {Gal-Yam}, A. and {Inserra}, C. and 
+	{Pignata}, G. and {Reichart}, D. and {Schmidt}, B. and {Sollerman}, J. and 
+	{Taddia}, F. and {Tomasella}, L. and {Valenti}, S. and {Yaron}, O.
+	},
+    title = "{Supernova 2012ec: identification of the progenitor and early monitoring with PESSTO}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.0170},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2012ec, galaxies: individual: NGC 1084},
+     year = 2013,
+    month = apr,
+   volume = 431,
+    pages = {L102-L106},
+      doi = {10.1093/mnrasl/slt017},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L.102M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.444.2096N,
+   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
+	{Anderson}, J.~P. and {Baltay}, C. and {Benetti}, S. and {Chen}, T.-W. and 
+	{Elias-Rosa}, N. and {Feindt}, U. and {Fraser}, M. and {Gal-Yam}, A. and 
+	{Hadjiyska}, E. and {Howell}, D.~A. and {Kotak}, R. and {Lawrence}, A. and 
+	{Leloudas}, G. and {Margheim}, S. and {Mattila}, S. and {McCrum}, M. and 
+	{McKinnon}, R. and {Mead}, A. and {Nugent}, P. and {Rabinowitz}, D. and 
+	{Rest}, A. and {Smith}, K.~W. and {Sollerman}, J. and {Sullivan}, M. and 
+	{Taddia}, F. and {Valenti}, S. and {Walker}, E.~S. and {Young}, D.~R.
+	},
+    title = "{Superluminous supernovae from PESSTO}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1405.1325},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: LSQ12dlf, supernovae: individual: SN 2013dg, supernovae: individual: SSS120810:231802-560926},
+     year = 2014,
+    month = nov,
+   volume = 444,
+    pages = {2096-2113},
+      doi = {10.1093/mnras/stu1579},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.444.2096N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...787..139D,
+   author = {{Dall'Ora}, M. and {Botticella}, M.~T. and {Pumo}, M.~L. and 
+	{Zampieri}, L. and {Tomasella}, L. and {Pignata}, G. and {Bayless}, A.~J. and 
+	{Pritchard}, T.~A. and {Taubenberger}, S. and {Kotak}, R. and 
+	{Inserra}, C. and {Della Valle}, M. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Benitez}, S. and {Bufano}, F. and {Elias-Rosa}, N. and 
+	{Fraser}, M. and {Haislip}, J.~B. and {Harutyunyan}, A. and 
+	{Howell}, D.~A. and {Hsiao}, E.~Y. and {Iijima}, T. and {Kankare}, E. and 
+	{Kuin}, P. and {Maund}, J.~R. and {Morales-Garoffolo}, A. and 
+	{Morrell}, N. and {Munari}, U. and {Ochner}, P. and {Pastorello}, A. and 
+	{Patat}, F. and {Phillips}, M.~M. and {Reichart}, D. and {Roming}, P.~W.~A. and 
+	{Siviero}, A. and {Smartt}, S.~J. and {Sollerman}, J. and {Taddia}, F. and 
+	{Valenti}, S. and {Wright}, D.},
+    title = "{The Type IIP Supernova 2012aw in M95: Hydrodynamical Modeling of the Photospheric Phase from Accurate Spectrophotometric Monitoring}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1404.1294},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: M95, supernovae: general, supernovae: individual: 2012aw},
+     year = 2014,
+    month = jun,
+   volume = 787,
+      eid = {139},
+    pages = {139},
+      doi = {10.1088/0004-637X/787/2/139},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..139D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.439.2873S,
+   author = {{Spiro}, S. and {Pastorello}, A. and {Pumo}, M.~L. and {Zampieri}, L. and 
+	{Turatto}, M. and {Smartt}, S.~J. and {Benetti}, S. and {Cappellaro}, E. and 
+	{Valenti}, S. and {Agnoletto}, I. and {Altavilla}, G. and {Aoki}, T. and 
+	{Brocato}, E. and {Corsini}, E.~M. and {Di Cianno}, A. and {Elias-Rosa}, N. and 
+	{Hamuy}, M. and {Enya}, K. and {Fiaschi}, M. and {Folatelli}, G. and 
+	{Desidera}, S. and {Harutyunyan}, A. and {Howell}, D.~A. and 
+	{Kawka}, A. and {Kobayashi}, Y. and {Leibundgut}, B. and {Minezaki}, T. and 
+	{Navasardyan}, H. and {Nomoto}, K. and {Mattila}, S. and {Pietrinferni}, A. and 
+	{Pignata}, G. and {Raimondo}, G. and {Salvo}, M. and {Schmidt}, B.~P. and 
+	{Sollerman}, J. and {Spyromilio}, J. and {Taubenberger}, S. and 
+	{Valentini}, G. and {Vennes}, S. and {Yoshii}, Y.},
+    title = "{Low luminosity Type II supernovae - II. Pointing towards moderate mass precursors}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1401.5426},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 1999gn, supernovae: individual: SN 2002gd, supernovae: individual: SN 2003Z, supernovae: individual: SN 2004eg, supernovae: individual: SN 2006ov},
+     year = 2014,
+    month = apr,
+   volume = 439,
+    pages = {2873-2892},
+      doi = {10.1093/mnras/stu156},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.2873S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.439L..56F,
+   author = {{Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J. and {Kotak}, R. and 
+	{Lawrence}, A. and {Bruce}, A. and {Valenti}, S. and {Yuan}, F. and 
+	{Benetti}, S. and {Chen}, T.-W. and {Gal-Yam}, A. and {Inserra}, C. and 
+	{Young}, D.~R.},
+    title = "{On the progenitor of the Type IIP SN 2013ej in M74}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1309.4268},
+ primaryClass = "astro-ph.CO",
+ keywords = {stars: massive, supernovae: general, supernovae: individual: SN 2013ej, galaxies: individual: NGC 628},
+     year = 2014,
+    month = mar,
+   volume = 439,
+    pages = {L56-L60},
+      doi = {10.1093/mnrasl/slt179},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439L..56F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ApJ...598..993K,
+   author = {{Kerins}, E. and {An}, J. and {Evans}, N.~W. and {Baillon}, P. and 
+	{Carr}, B.~J. and {Giraud-H{\'e}raud}, Y. and {Gould}, A. and 
+	{Hewett}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
+	{Smartt}, S.~J. and {Tsapras}, Y. and {Valls-Gabaud}, D. and 
+	{Point-Agape Collaboration}},
+    title = "{Theory of Pixel Lensing toward M31. II. The Velocity Anisotropy and Flattening of the MACHO Distribution}",
+  journal = {\apj},
+   eprint = {astro-ph/0307284},
+ keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing},
+     year = 2003,
+    month = dec,
+   volume = 598,
+    pages = {993-999},
+      doi = {10.1086/379060},
+   adsurl = {http://adsabs.harvard.edu/abs/2003ApJ...598..993K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997ApJ...490..267R,
+   author = {{Ryans}, R.~S.~I. and {Dufton}, P.~L. and {Keenan}, F.~P. and 
+	{Smartt}, S.~J. and {Sembach}, K.~R. and {Lennon}, D.~J. and 
+	{Venn}, K.~A.},
+    title = "{LS 4825: A Blue Supergiant on the Far Side of the Galaxy}",
+  journal = {\apj},
+ keywords = {Galaxy: Kinematics and Dynamics, ISM: Kinematics and Dynamics, Stars: Abundances, Stars: Early-Type, Stars: Individual: Alphanumeric: LS 4825},
+     year = 1997,
+    month = nov,
+   volume = 490,
+    pages = {267-272},
+   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...490..267R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@PHDTHESIS{1996PhDT.......102S,
+   author = {{Smartt}, S.~J.},
+   school = {, Queen's University of Belfast, (1996)},
+     year = 1996,
+    month = December,
+   adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...769...39S,
+   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Foley}, R.~J. and 
+	{Chornock}, R. and {Milisavljevic}, D. and {Margutti}, R. and 
+	{Drout}, M.~R. and {Moe}, M. and {Berger}, E. and {Brown}, W.~R. and 
+	{Lunnan}, R. and {Smartt}, S.~J. and {Fraser}, M. and {Kotak}, R. and 
+	{Magill}, L. and {Smith}, K.~W. and {Wright}, D. and {Huang}, K. and 
+	{Urata}, Y. and {Mulchaey}, J.~S. and {Rest}, A. and {Sand}, D.~J. and 
+	{Chomiuk}, L. and {Friedman}, A.~S. and {Kirshner}, R.~P. and 
+	{Marion}, G.~H. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
+	{Chambers}, K.~C. and {Hodapp}, K.~W. and {Kudritzki}, R.~P. and 
+	{Price}, P.~A.},
+    title = "{PS1-12sk is a Peculiar Supernova from a He-rich Progenitor System in a Brightest Cluster Galaxy Environment}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.1818},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: clusters: general, galaxies: star formation, stars: winds, outflows, supernovae: general, supernovae: individual: PS1-12sk},
+     year = 2013,
+    month = may,
+   volume = 769,
+      eid = {39},
+    pages = {39},
+      doi = {10.1088/0004-637X/769/1/39},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769...39S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004A&A...419..713M,
+   author = {{Munn}, K.~E. and {Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.
+	},
+    title = "{A chemical analysis of five hot stars towards the Galactic centre}",
+  journal = {\aap},
+ keywords = {stars: early-type, stars: atmospheres, stars: abundances, Galaxy: evolution, Galaxy: center, Galaxy: abundances},
+     year = 2004,
+    month = may,
+   volume = 419,
+    pages = {713-723},
+      doi = {10.1051/0004-6361:20034560},
+   adsurl = {http://adsabs.harvard.edu/abs/2004A&A...419..713M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.431.2050M,
+   author = {{Mattila}, S. and {Fraser}, M. and {Smartt}, S.~J. and {Meikle}, W.~P.~S. and 
+	{Romero-Ca{\~n}izales}, C. and {Crockett}, R.~M. and {Stephens}, A.
+	},
+    title = "{Supernovae and radio transients in M82}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1207.1889},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: SN 2004am, supernovae: individual: SN 2008iz, galaxies: individual: M82, galaxies: starburst, infrared: galaxies},
+     year = 2013,
+    month = may,
+   volume = 431,
+    pages = {2050-2062},
+      doi = {10.1093/mnras/stt202},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431.2050M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011A&A...536A..65D,
+   author = {{Dunstall}, P.~R. and {Brott}, I. and {Dufton}, P.~L. and {Lennon}, D.~J. and 
+	{Evans}, C.~J. and {Smartt}, S.~J. and {Hunter}, I.},
+    title = "{The VLT-FLAMES survey of massive stars: Nitrogen abundances for Be-type stars in the Magellanic Clouds}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1109.6661},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: early-type, stars: atmospheres, stars: emission-line, Be, stars: rotation},
+     year = 2011,
+    month = dec,
+   volume = 536,
+      eid = {A65},
+    pages = {A65},
+      doi = {10.1051/0004-6361/201117588},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...536A..65D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009A&A...500.1013P,
+   author = {{Pastorello}, A. and {Crockett}, R.~M. and {Martin}, R. and 
+	{Smartt}, S.~J. and {Altavilla}, G. and {Benetti}, S. and {Botticella}, M.~T. and 
+	{Cappellaro}, E. and {Mattila}, S. and {Maund}, J.~R. and {Ryder}, S.~D. and 
+	{Salvo}, M. and {Taubenberger}, S. and {Turatto}, M.},
+    title = "{SN 1999ga: a low-luminosity linear type II supernova?}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0904.0637},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: supernovae: general, stars: supernovae: individual: SN 1999ga, stars: supernovae: individual: SN 1979C, stars: supernovae: individual: SN 1980K, stars: supernovae: individual: SN 1990K},
+     year = 2009,
+    month = jun,
+   volume = 500,
+    pages = {1013-1023},
+      doi = {10.1051/0004-6361/200911993},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...500.1013P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.445...30S,
+   author = {{Scalzo}, R.~A. and {Childress}, M. and {Tucker}, B. and {Yuan}, F. and 
+	{Schmidt}, B. and {Brown}, P.~J. and {Contreras}, C. and {Morrell}, N. and 
+	{Hsiao}, E. and {Burns}, C. and {Phillips}, M.~M. and {Campillay}, A. and 
+	{Gonzalez}, C. and {Krisciunas}, K. and {Stritzinger}, M. and 
+	{Graham}, M.~L. and {Parrent}, J. and {Valenti}, S. and {Lidman}, C. and 
+	{Schaefer}, B. and {Scott}, N. and {Fraser}, M. and {Gal-Yam}, A. and 
+	{Inserra}, C. and {Maguire}, K. and {Smartt}, S.~J. and {Sollerman}, J. and 
+	{Sullivan}, M. and {Taddia}, F. and {Yaron}, O. and {Young}, D.~R. and 
+	{Taubenberger}, S. and {Baltay}, C. and {Ellman}, N. and {Feindt}, U. and 
+	{Hadjiyska}, E. and {McKinnon}, R. and {Nugent}, P.~E. and {Rabinowitz}, D. and 
+	{Walker}, E.~S.},
+    title = "{Early ultraviolet emission in the Type Ia supernova LSQ12gdj: No evidence for ongoing shock interaction}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1404.1002},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, supernovae: general, supernovae: individual: SN 2003fg, SN 2007if, SN 2009dc, LSQ12gdj, white dwarfs},
+     year = 2014,
+    month = nov,
+   volume = 445,
+    pages = {30-48},
+      doi = {10.1093/mnras/stu1723},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445...30S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011JPhCS.328a2022D,
+   author = {{de Koter}, A. and {Sana}, H. and {Evans}, C.~J. and {Bagnoli}, T. and 
+	{Bastian}, N. and {Bestenlehner}, J.~M. and {Bonanos}, A. and 
+	{Bressert}, E. and {Brott}, I. and {Cantiello}, M. and {Carraro}, G. and 
+	{Clark}, S. and {Crowther}, P. and {de Mink}, S.~E. and {Doran}, E. and 
+	{Dufton}, P. and {Dunstall}, P. and {Garcia}, M. and {Gr{\"a}fener}, G. and 
+	{H{\'e}nault-Brunet}, V. and {Herrero}, A. and {Howarth}, I. and 
+	{Izzard}, R. and {K{\"o}hler}, K. and {Langer}, N. and {Lennon}, D. and 
+	{Ma{\'{\i}}z Apell{\'a}niz}, J. and {Markova}, N. and {Najarro}, P. and 
+	{Puls}, J. and {Ramirez}, O. and {Sab{\'{\i}}n-Sanjuli{\'a}n}, C. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S. and {Stroud}, V. and 
+	{van Loon}, J.~T. and {Taylor}, W. and {Vink}, J.~S.},
+    title = "{The O stars in the VLT-FLAMES Tarantula Survey}",
+  journal = {Journal of Physics Conference Series},
+     year = 2011,
+    month = dec,
+   volume = 328,
+   number = 1,
+      eid = {012022},
+    pages = {012022},
+      doi = {10.1088/1742-6596/328/1/012022},
+   adsurl = {http://adsabs.harvard.edu/abs/2011JPhCS.328a2022D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007A&A...464..289E,
+   author = {{Evans}, C.~J. and {Lennon}, D.~J. and {Smartt}, S.~J. and {Trundle}, C.
+	},
+    title = "{The VLT-FLAMES survey of massive stars: observations centered on the Magellanic Cloud clusters NGC 330, NGC 346, NGC 2004, and the N11 region}",
+  journal = {\aap},
+ keywords = {stars: early-type, stars: emission-line, Be, stars: fundamental parameters, Magellanic Clouds, binaries: spectroscopic, errata, addenda},
+     year = 2007,
+    month = mar,
+   volume = 464,
+    pages = {289-289},
+      doi = {10.1051/0004-6361:20064988e},
+   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...464..289E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012A&A...537A..29R,
+   author = {{Ritchie}, B.~W. and {Stroud}, V.~E. and {Evans}, C.~J. and 
+	{Clark}, J.~S. and {Hunter}, I. and {Lennon}, D.~J. and {Langer}, N. and 
+	{Smartt}, S.~J.},
+    title = "{The VLT-FLAMES survey of massive stars: NGC 346-013 as a test case for massive close binary evolution}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1110.6325},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: early-type, stars: fundamental parameters, binaries: spectroscopic, Magellanic Clouds},
+     year = 2012,
+    month = jan,
+   volume = 537,
+      eid = {A29},
+    pages = {A29},
+      doi = {10.1051/0004-6361/201117716},
+   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...537A..29R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999A&AS..139..231D,
+   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.},
+    title = "{A UKST survey of blue objects towards the galactic centre - a search for early-type stars}",
+  journal = {\aaps},
+ keywords = {STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, STARS: IMAGING, GALAXY: CENTER},
+     year = 1999,
+    month = oct,
+   volume = 139,
+    pages = {231-244},
+      doi = {10.1051/aas:1999390},
+   adsurl = {http://adsabs.harvard.edu/abs/1999A&AS..139..231D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...794...23D,
+   author = {{Drout}, M.~R. and {Chornock}, R. and {Soderberg}, A.~M. and 
+	{Sanders}, N.~E. and {McKinnon}, R. and {Rest}, A. and {Foley}, R.~J. and 
+	{Milisavljevic}, D. and {Margutti}, R. and {Berger}, E. and 
+	{Calkins}, M. and {Fong}, W. and {Gezari}, S. and {Huber}, M.~E. and 
+	{Kankare}, E. and {Kirshner}, R.~P. and {Leibler}, C. and {Lunnan}, R. and 
+	{Mattila}, S. and {Marion}, G.~H. and {Narayan}, G. and {Riess}, A.~G. and 
+	{Roth}, K.~C. and {Scolnic}, D. and {Smartt}, S.~J. and {Tonry}, J.~L. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Hodapp}, K.~W. and 
+	{Jedicke}, R. and {Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and 
+	{Morgan}, J.~S. and {Price}, P.~A. and {Waters}, C.},
+    title = "{Rapidly Evolving and Luminous Transients from Pan-STARRS1}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1405.3668},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general},
+     year = 2014,
+    month = oct,
+   volume = 794,
+      eid = {23},
+    pages = {23},
+      doi = {10.1088/0004-637X/794/1/23},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...794...23D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...796...87I,
+   author = {{Inserra}, C. and {Smartt}, S.~J.},
+    title = "{Superluminous supernovae as standardizable candles and high-redshift distance probes.}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1409.4429},
+ primaryClass = "astro-ph.SR",
+     year = 2014,
+   volume = 796,
+    pages = {87},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...796...87I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013RSPTA.37120498O,
+   author = {{O'Brien}, P.~T. and {Smartt}, S.~J.},
+    title = "{Interpreting signals from astrophysical transient experiments}",
+  journal = {Royal Society of London Philosophical Transactions Series A},
+archivePrefix = "arXiv",
+   eprint = {1306.0792},
+ primaryClass = "astro-ph.IM",
+     year = 2013,
+    month = apr,
+   volume = 371,
+    pages = {20498},
+      doi = {10.1098/rsta.2012.0498},
+   adsurl = {http://adsabs.harvard.edu/abs/2013RSPTA.37120498O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...765...57C,
+   author = {{Czekala}, I. and {Berger}, E. and {Chornock}, R. and {Pastorello}, A. and 
+	{Marion}, G.~H. and {Margutti}, R. and {Botticella}, M.~T. and 
+	{Challis}, P. and {Ergon}, M. and {Smartt}, S. and {Sollerman}, J. and 
+	{Vink{\'o}}, J. and {Wheeler}, J.~C.},
+    title = "{The Unusually Luminous Extragalactic Nova SN 2010U}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1210.1573},
+ primaryClass = "astro-ph.HE",
+ keywords = {novae, cataclysmic variables, supernovae: individual: SN 2010U, X-rays: stars},
+     year = 2013,
+    month = mar,
+   volume = 765,
+      eid = {57},
+    pages = {57},
+      doi = {10.1088/0004-637X/765/1/57},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...765...57C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011A&A...530C...1H,
+   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
+	{Evans}, C.~J.},
+    title = "{The VLT-FLAMES survey of massive stars: atmospheric parameters and rotational velocity distributions for B-type stars in the Magellanic Clouds (Corrigendum)}",
+  journal = {\aap},
+ keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: evolution, galaxies: Magellanic Clouds, errata, addenda},
+     year = 2011,
+    month = jun,
+   volume = 530,
+      eid = {C1},
+    pages = {C1},
+      doi = {10.1051/0004-6361/201016073},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530C...1H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008MNRAS.387.1344M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
+	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
+	{Gilmore}, G.~F. and {Benn}, C.~R.},
+    title = "{Erratum: Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
+  journal = {\mnras},
+ keywords = {errata, addenda , stars: individual: NGC 2403-V37 , supernovae: general , supernovae: individual: 2002kg , supernovae: individual: 2003gm , stars: variables: other , galaxies: individual: NGC 5334},
+     year = 2008,
+    month = jul,
+   volume = 387,
+    pages = {1344-1344},
+      doi = {10.1111/j.1365-2966.2008.13228.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.387.1344M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002Ap&SS.281..187S,
+   author = {{Smartt}, S.~J.},
+    title = "{Detecting the progenitors of core collapse supernovae}",
+  journal = {\apss},
+   eprint = {astro-ph/0112176},
+     year = 2002,
+    month = jul,
+   volume = 281,
+    pages = {187-190},
+      doi = {10.1023/A:1019596907206},
+   adsurl = {http://adsabs.harvard.edu/abs/2002Ap&SS.281..187S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ATel.4535....1G,
+   author = {{Graur}, O. and {Maoz}, D.},
+    title = "{Type-Ia SN 2012fr: no progenitor detected in pre-explosion HST image to M\_V \~{} -5.9 mag}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Optical, Supernovae},
+     year = 2012,
+    month = nov,
+   volume = 4535,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4535....1G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436L.109E,
+   author = {{Elias-Rosa}, N. and {Pastorello}, A. and {Maund}, J.~R. and 
+	{Tak{\'a}ts}, K. and {Fraser}, M. and {Smartt}, S.~J. and {Benetti}, S. and 
+	{Pignata}, G. and {Sand}, D. and {Valenti}, S.},
+    title = "{On the progenitor of the Type Ic SN 2013dk in the Antennae galaxies}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1307.7755},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: general, stars: evolution, supernovae: general, supernovae: individual: SN 2013dk, galaxies: individual: NGC 4038},
+     year = 2013,
+    month = nov,
+   volume = 436,
+    pages = {L109-L113},
+      doi = {10.1093/mnrasl/slt124},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436L.109E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012Natur.491..205S,
+   author = {{Smartt}, S.~J.},
+    title = "{Astrophysics: Cosmic explosions in the young Universe}",
+  journal = {\nat},
+     year = 2012,
+    month = nov,
+   volume = 491,
+    pages = {205-206},
+      doi = {10.1038/nature11643},
+   adsurl = {http://adsabs.harvard.edu/abs/2012Natur.491..205S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011BSRSL..80..430T,
+   author = {{Taylor}, W.~D. and {Evans}, C.~J. and {H{\'e}nault-Brunet}, V. and 
+	{Bastian}, N. and {Beletsky}, Y. and {Bestenlehner}, J. and 
+	{Brott}, I. and {Cantiello}, M. and {Carraro}, G. and {Clark}, J.~S. and 
+	{Crowther}, P.~A. and {de Koter}, A. and {de Mink}, S.~E. and 
+	{Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P. and {Gieles}, M. and 
+	{Gr{\"a}fener}, G. and {Herrero}, A. and {Howarth}, I.~D. and 
+	{Langer}, N. and {Lennon}, D.~J. and {Ma{\'{\i}}z Apell{\'a}niz}, J. and 
+	{Markova}, N. and {Najarro}, P. and {Puls}, J. and {Sana}, H. and 
+	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Stroud}, V.~E. and 
+	{van Loon}, J.~T. and {Vink}, J.~S. and {Walborn}, N.~R.},
+    title = "{The VLT-FLAMES Tarantula Survey}",
+  journal = {Bulletin de la Societe Royale des Sciences de Liege},
+     year = 2011,
+    month = jan,
+   volume = 80,
+    pages = {430-434},
+   adsurl = {http://adsabs.harvard.edu/abs/2011BSRSL..80..430T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997ARA&A..35..309F,
+   author = {{Filippenko}, A.~V.},
+    title = "{Optical Spectra of Supernovae}",
+  journal = {\araa},
+     year = 1997,
+   volume = 35,
+    pages = {309-355},
+      doi = {10.1146/annurev.astro.35.1.309},
+   adsurl = {http://adsabs.harvard.edu/abs/1997ARA&A..35..309F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...491..507U,
+   author = {{Utrobin}, V.~P. and {Chugai}, N.~N.},
+    title = "{Progenitor mass of the type IIP supernova 2005cs}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0809.3766},
+ keywords = {stars: supernovae: general, stars: supernovae:, individual: SN 2005cs},
+     year = 2008,
+    month = nov,
+   volume = 491,
+    pages = {507-513},
+      doi = {10.1051/0004-6361:200810272},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...491..507U},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...741...41P,
+   author = {{Pumo}, M.~L. and {Zampieri}, L.},
+    title = "{Radiation-hydrodynamical Modeling of Core-collapse Supernovae: Light Curves and the Evolution of Photospheric Velocity and Temperature}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1108.0688},
+ primaryClass = "astro-ph.SR",
+ keywords = {distance scale, hydrodynamics, methods: numerical, radiative transfer, supernovae: general, supernovae: individual: SN 1987A},
+     year = 2011,
+    month = nov,
+   volume = 741,
+      eid = {41},
+    pages = {41},
+      doi = {10.1088/0004-637X/741/1/41},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741...41P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.439.2873S,
+   author = {{Spiro}, S. and {Pastorello}, A. and {Pumo}, M.~L. and {Zampieri}, L. and 
+	{Turatto}, M. and {Smartt}, S.~J. and {Benetti}, S. and {Cappellaro}, E. and 
+	{Valenti}, S. and {Agnoletto}, I. and {Altavilla}, G. and {Aoki}, T. and 
+	{Brocato}, E. and {Corsini}, E.~M. and {Di Cianno}, A. and {Elias-Rosa}, N. and 
+	{Hamuy}, M. and {Enya}, K. and {Fiaschi}, M. and {Folatelli}, G. and 
+	{Desidera}, S. and {Harutyunyan}, A. and {Howell}, D.~A. and 
+	{Kawka}, A. and {Kobayashi}, Y. and {Leibundgut}, B. and {Minezaki}, T. and 
+	{Navasardyan}, H. and {Nomoto}, K. and {Mattila}, S. and {Pietrinferni}, A. and 
+	{Pignata}, G. and {Raimondo}, G. and {Salvo}, M. and {Schmidt}, B.~P. and 
+	{Sollerman}, J. and {Spyromilio}, J. and {Taubenberger}, S. and 
+	{Valentini}, G. and {Vennes}, S. and {Yoshii}, Y.},
+    title = "{Low luminosity Type II supernovae - II. Pointing towards moderate mass precursors}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1401.5426},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 1999gn, supernovae: individual: SN 2002gd, supernovae: individual: SN 2003Z, supernovae: individual: SN 2004eg, supernovae: individual: SN 2006ov},
+     year = 2014,
+    month = apr,
+   volume = 439,
+    pages = {2873-2892},
+      doi = {10.1093/mnras/stu156},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.2873S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009A&A...506..829U,
+   author = {{Utrobin}, V.~P. and {Chugai}, N.~N.},
+    title = "{High mass of the type IIP supernova 2004et inferred from hydrodynamic modeling}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0908.2403},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: supernovae: individual: SN 2004et, stars: supernovae: general},
+     year = 2009,
+    month = nov,
+   volume = 506,
+    pages = {829-834},
+      doi = {10.1051/0004-6361/200912273},
+   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...506..829U},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...793L..22F,
+   author = {{Folatelli}, G. and {Bersten}, M.~C. and {Benvenuto}, O.~G. and 
+	{Van Dyk}, S.~D. and {Kuncarayakti}, H. and {Maeda}, K. and 
+	{Nozawa}, T. and {Nomoto}, K. and {Hamuy}, M. and {Quimby}, R.~M.
+	},
+    title = "{A Blue Point Source at the Location of Supernova 2011dh}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1409.0700},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: close, supernovae: general, supernovae: individual: SN 2011dh},
+     year = 2014,
+    month = oct,
+   volume = 793,
+      eid = {L22},
+    pages = {L22},
+      doi = {10.1088/2041-8205/793/2/L22},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...793L..22F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{1994ApJ...429..300W,
+   author = {{Woosley}, S.~E. and {Eastman}, R.~G. and {Weaver}, T.~A. and 
+	{Pinto}, P.~A.},
+    title = "{SN 1993J: A Type IIb supernova}",
+  journal = {\apj},
+ keywords = {Binary Stars, Gamma Ray Observatory, Stellar Evolution, Supernovae, Ubv Spectra, Astronomical Models, Metallic Stars, Neutron Stars, Roche Limit, Stellar Spectrophotometry},
+     year = 1994,
+    month = jul,
+   volume = 429,
+    pages = {300-318},
+      doi = {10.1086/174319},
+   adsurl = {http://adsabs.harvard.edu/abs/1994ApJ...429..300W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1993Natur.364..507N,
+   author = {{Nomoto}, K. and {Suzuki}, T. and {Shigeyama}, T. and {Kumagai}, S. and 
+	{Yamaoka}, H. and {Saio}, H.},
+    title = "{A type IIb model for supernova 1993J}",
+  journal = {\nat},
+ keywords = {Astronomical Models, Light Curve, Line Spectra, Stellar Spectra, Supernovae, Asymptotic Giant Branch Stars, B Stars, Binary Stars, Hydrogen, Stellar Envelopes, Stellar Spectrophotometry, Supergiant Stars},
+     year = 1993,
+    month = aug,
+   volume = 364,
+    pages = {507-509},
+      doi = {10.1038/364507a0},
+   adsurl = {http://adsabs.harvard.edu/abs/1993Natur.364..507N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1993ApJ...415L.103F,
+   author = {{Filippenko}, A.~V. and {Matheson}, T. and {Ho}, L.~C.},
+    title = "{The ``Type IIb'' Supernova 1993J in M81: A Close Relative of Type Ib Supernovae}",
+  journal = {\apjl},
+     year = 1993,
+    month = oct,
+   volume = 415,
+    pages = {L103},
+      doi = {10.1086/187043},
+   adsurl = {http://adsabs.harvard.edu/abs/1993ApJ...415L.103F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2000AJ....120.1499M,
+   author = {{Matheson}, T. and {Filippenko}, A.~V. and {Ho}, L.~C. and {Barth}, A.~J. and 
+	{Leonard}, D.~C.},
+    title = "{Detailed Analysis of Early to Late-Time Spectra of Supernova 1993J}",
+  journal = {\aj},
+   eprint = {astro-ph/0006264},
+ keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1993J, Techniques: Spectroscopic},
+     year = 2000,
+    month = sep,
+   volume = 120,
+    pages = {1499-1515},
+      doi = {10.1086/301519},
+   adsurl = {http://adsabs.harvard.edu/abs/2000AJ....120.1499M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1992ApJ...391..246P,
+   author = {{Podsiadlowski}, P. and {Joss}, P.~C. and {Hsu}, J.~J.~L.},
+    title = "{Presupernova evolution in massive interacting binaries}",
+  journal = {\apj},
+ keywords = {Binary Stars, Massive Stars, Stellar Evolution, Supernovae, Computational Astrophysics, Monte Carlo Method, Stellar Envelopes, Stellar Mass Accretion, Stellar Models, Supernova 1987a},
+     year = 1992,
+    month = may,
+   volume = 391,
+    pages = {246-264},
+      doi = {10.1086/171341},
+   adsurl = {http://adsabs.harvard.edu/abs/1992ApJ...391..246P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{1995PhR...256..173N,
+   author = {{Nomoto}, K.~I. and {Iwamoto}, K. and {Suzuki}, T.},
+    title = "{The evolution and explosion of massive binary stars and Type Ib-Ic-IIb-IIL supernovae.}",
+  journal = {\physrep},
+ keywords = {Supernovae: Progenitors, Supernovae: Binaries, Supernovae: Stellar Evolution},
+     year = 1995,
+    month = may,
+   volume = 256,
+    pages = {173-191},
+      doi = {10.1016/0370-1573(94)00107-E},
+   adsurl = {http://adsabs.harvard.edu/abs/1995PhR...256..173N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004A&A...425..649H,
+   author = {{Hirschi}, R. and {Meynet}, G. and {Maeder}, A.},
+    title = "{Stellar evolution with rotation. XII. Pre-supernova models}",
+  journal = {\aap},
+   eprint = {astro-ph/0406552},
+ keywords = {stars: evolution, stars: rotation, stars: Wolf-Rayet, stars: supernova: general},
+     year = 2004,
+    month = oct,
+   volume = 425,
+    pages = {649-670},
+      doi = {10.1051/0004-6361:20041095},
+   adsurl = {http://adsabs.harvard.edu/abs/2004A&A...425..649H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2000A&A...361..101M,
+   author = {{Meynet}, G. and {Maeder}, A.},
+    title = "{Stellar evolution with rotation. V. Changes in all the outputs of massive star models}",
+  journal = {\aap},
+   eprint = {astro-ph/0006404},
+ keywords = {STARS: ROTATION, STARS: EVOLUTION, STARS: ABUNDANCES, STARS: EARLY-TYPE},
+     year = 2000,
+    month = sep,
+   volume = 361,
+    pages = {101-120},
+   adsurl = {http://adsabs.harvard.edu/abs/2000A&A...361..101M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...756..111M,
+   author = {{Mattila}, S. and {Dahlen}, T. and {Efstathiou}, A. and {Kankare}, E. and 
+	{Melinder}, J. and {Alonso-Herrero}, A. and {P{\'e}rez-Torres}, M.~{\'A}. and 
+	{Ryder}, S. and {V{\"a}is{\"a}nen}, P. and {{\"O}stlin}, G.},
+    title = "{Core-collapse Supernovae Missed by Optical Surveys}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1206.1314},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: individual: Arp 299, galaxies: starburst, infrared: galaxies, supernovae: general, supernovae: individual: SN 2005at SN 2010P},
+     year = 2012,
+    month = sep,
+   volume = 756,
+      eid = {111},
+    pages = {111},
+      doi = {10.1088/0004-637X/756/2/111},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..111M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007PhR...442..269W,
+   author = {{Woosley}, S.~E. and {Heger}, A.},
+    title = "{Nucleosynthesis and remnants in massive stars of solar metallicity}",
+  journal = {\physrep},
+   eprint = {astro-ph/0702176},
+     year = 2007,
+    month = apr,
+   volume = 442,
+    pages = {269-283},
+      doi = {10.1016/j.physrep.2007.02.009},
+   adsurl = {http://adsabs.harvard.edu/abs/2007PhR...442..269W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012A&A...544L..11Y,
+   author = {{Yoon}, S.-C. and {Gr{\"a}fener}, G. and {Vink}, J.~S. and {Kozyreva}, A. and 
+	{Izzard}, R.~G.},
+    title = "{On the nature and detectability of Type Ib/c supernova progenitors}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1207.3683},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: Wolf-Rayet, binaries: general, supernovae: general},
+     year = 2012,
+    month = aug,
+   volume = 544,
+      eid = {L11},
+    pages = {L11},
+      doi = {10.1051/0004-6361/201219790},
+   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...544L..11Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010ApJ...725..940Y,
+   author = {{Yoon}, S.-C. and {Woosley}, S.~E. and {Langer}, N.},
+    title = "{Type Ib/c Supernovae in Binary Systems. I. Evolution and Properties of the Progenitor Stars}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1004.0843},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: close, stars: evolution, stars: massive, stars: rotation, supernovae: general},
+     year = 2010,
+    month = dec,
+   volume = 725,
+    pages = {940-954},
+      doi = {10.1088/0004-637X/725/1/940},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...725..940Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2008MNRAS.384.1109E,
+   author = {{Eldridge}, J.~J. and {Izzard}, R.~G. and {Tout}, C.~A.},
+    title = "{The effect of massive binaries on stellar populations and supernova progenitors}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0711.3079},
+ keywords = {binaries: general , stars: evolution , supergiants , supernovae: general , stars: Wolf-Rayet},
+     year = 2008,
+    month = mar,
+   volume = 384,
+    pages = {1109-1118},
+      doi = {10.1111/j.1365-2966.2007.12738.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.384.1109E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2001NewAR..45...53P,
+   author = {{Pollacco}, D.~L. and {Smartt}, S.~J.},
+    title = "{Wide field optical and IR spectroscopy at the ING: present and future prospects}",
+  journal = {\nar},
+     year = 2001,
+    month = jan,
+   volume = 45,
+    pages = {53-57},
+      doi = {10.1016/S1387-6473(00)00128-7},
+   adsurl = {http://adsabs.harvard.edu/abs/2001NewAR..45...53P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1993Natur.364..509P,
+   author = {{Podsiadlowski}, P. and {Hsu}, J.~J.~L. and {Joss}, P.~C. and 
+	{Ross}, R.~R.},
+    title = "{The progenitor of supernova 1993J - A stripped supergiant in a binary system?}",
+  journal = {\nat},
+ keywords = {Binary Stars, Stellar Envelopes, Stellar Models, Supergiant Stars, Supernovae, Companion Stars, Light Curve, Radioactive Decay, Stellar Winds, Ubv Spectra},
+     year = 1993,
+    month = aug,
+   volume = 364,
+    pages = {509-511},
+      doi = {10.1038/364509a0},
+   adsurl = {http://adsabs.harvard.edu/abs/1993Natur.364..509P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.442.1483T,
+   author = {{Taylor}, W.~D. and {Evans}, C.~J. and {Sim{\'o}n-D{\'{\i}}az}, S. and 
+	{Sana}, H. and {Langer}, N. and {Smith}, N. and {Smartt}, S.~J.
+	},
+    title = "{Sher 25: pulsating but apparently alone}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1405.2101},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: early-type, stars: evolution, stars: individual: Sher 25},
+     year = 2014,
+    month = aug,
+   volume = 442,
+    pages = {1483-1490},
+      doi = {10.1093/mnras/stu925},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.442.1483T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011BlgAJ..15...29M,
+   author = {{Markova}, N. and {Evans}, C.~J. and {Bastian}, N. and {Beletsky}, Y. and 
+	{Bestenlehner}, J. and {Brott}, I. and {Cantiello}, M. and {Carraro}, G. and 
+	{Clark}, J.~S. and {Crowther}, P.~A. and {de Koter}, A. and 
+	{de Mink}, S.~E. and {Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P. and 
+	{Gieles}, M. and {Gr{\"a}efener}, G. and {Henault-Brunet}, V. and 
+	{Herrero}, A. and {Howarth}, I.~D. and {Langer}, N. and {Lennon}, D.~J. and 
+	{Ma{\'{\i}}z Apell{\'a}niz}, J. and {Najarro}, F. and {Puls}, J. and 
+	{Sana}, H. and {Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and 
+	{Stroud}, V.~E. and {Taylor}, W.~D. and {van Loon}, J.~T. and 
+	{Vink}, J.~S. and {Walborn}, N.~R.},
+    title = "{The VLT-FLAMES Tarantula Survey}",
+  journal = {Bulgarian Astronomical Journal},
+archivePrefix = "arXiv",
+   eprint = {1103.1242},
+ primaryClass = "astro-ph.CO",
+ keywords = {open clusters and associations: individual: 30 Doradus, stars: early-type, stars: fundamental parameters, binary stars: spectroscopic},
+     year = 2011,
+   volume = 15,
+    pages = {29},
+   adsurl = {http://adsabs.harvard.edu/abs/2011BlgAJ..15...29M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001A&A...373..608D,
+   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.},
+    title = "{A UKST survey of blue objects towards the Galactic centre - seven additional fields}",
+  journal = {\aap},
+ keywords = {STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, STARS: IMAGING, GALAXY: CENTER},
+     year = 2001,
+    month = jul,
+   volume = 373,
+    pages = {608-624},
+      doi = {10.1051/0004-6361:20010613},
+   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...373..608D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001NewAR..45..111W,
+   author = {{Walton}, N.~A. and {Smartt}, S.~J.},
+    title = "{The ING instrumentation conference discussion {\mdash} options for a competitive observatory}",
+  journal = {\nar},
+   eprint = {astro-ph/0008163},
+     year = 2001,
+    month = jan,
+   volume = 45,
+    pages = {111-124},
+      doi = {10.1016/S1387-6473(00)00139-1},
+   adsurl = {http://adsabs.harvard.edu/abs/2001NewAR..45..111W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009Sci...324..486M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
+    title = "{The Disappearance of the Progenitors of Supernovae 1993J and 2003gd}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {0903.3772},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = apr,
+   volume = 324,
+    pages = {486-},
+      doi = {10.1126/science.1170198},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Sci...324..486M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014AcA....64..197W,
+   author = {{Wyrzykowski}, {\L}. and {Kostrzewa-Rutkowska}, Z. and {Koz{\l}owski}, S. and 
+	{Udalski}, A. and {Poleski}, R. and {Skowron}, J. and {Blagorodnova}, N. and 
+	{Kubiak}, M. and {Szyma{\'n}ski}, M.~K. and {Pietrzy{\'n}ski}, G. and 
+	{Soszy{\'n}ski}, I. and {Ulaczyk}, K. and {Pietrukowicz}, P. and 
+	{Mr{\'o}z}, P.},
+    title = "{OGLE-IV Real-Time Transient Search}",
+  journal = {\actaa},
+archivePrefix = "arXiv",
+   eprint = {1409.1095},
+ keywords = {Surveys, supernovae: general, novae, cataclysmic variables},
+     year = 2014,
+    month = sep,
+   volume = 64,
+    pages = {197-232},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AcA....64..197W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2009aaxo.conf..312K,
+   author = {{Kulkarni}, S. and {Kasliwal}, M.~M.},
+    title = "{Transients in the Local Universe}",
+booktitle = {Astrophysics with All-Sky X-Ray Observations},
+     year = 2009,
+archivePrefix = "arXiv",
+   eprint = {0903.0218},
+ primaryClass = "astro-ph.HE",
+   editor = {{Kawai}, N. and {Mihara}, T. and {Kohama}, M. and {Suzuki}, M.
+	},
+    month = mar,
+    pages = {312},
+   adsurl = {http://adsabs.harvard.edu/abs/2009aaxo.conf..312K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008AN....329..275K,
+   author = {{Klotz}, A. and {Vachier}, F. and {Bo{\"e}r}, M.},
+    title = "{TAROT: Robotic observatories for gamma-ray bursts and other sources}",
+  journal = {Astronomische Nachrichten},
+ keywords = {gamma rays: bursts, methods: data analysis, telescopes},
+     year = 2008,
+    month = mar,
+   volume = 329,
+    pages = {275},
+      doi = {10.1002/asna.200710921},
+   adsurl = {http://cdsads.u-strasbg.fr/abs/2008AN....329..275K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010AdAst2010E..30L,
+   author = {{Lipunov}, V. and {Kornilov}, V. and {Gorbovskoy}, E. and {Shatskij}, N. and 
+	{Kuvshinov}, D. and {Tyurina}, N. and {Belinski}, A. and {Krylov}, A. and 
+	{Balanutsa}, P. and {Chazov}, V. and {Kuznetsov}, A. and {Kortunov}, P. and 
+	{Sankovich}, A. and {Tlatov}, A. and {Parkhomenko}, A. and {Krushinsky}, V. and 
+	{Zalozhnyh}, I. and {Popov}, A. and {Kopytova}, T. and {Ivanov}, K. and 
+	{Yazev}, S. and {Yurkov}, V.},
+    title = "{Master Robotic Net}",
+  journal = {Advances in Astronomy},
+archivePrefix = "arXiv",
+   eprint = {0907.0827},
+ primaryClass = "astro-ph.HE",
+     year = 2010,
+   volume = 2010,
+      eid = {349171},
+      doi = {10.1155/2010/349171},
+   adsurl = {http://adsabs.harvard.edu/abs/2010AdAst2010E..30L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...634.1190H,
+   author = {{Howell}, D.~A. and {Sullivan}, M. and {Perrett}, K. and {Bronder}, T.~J. and 
+	{Hook}, I.~M. and {Astier}, P. and {Aubourg}, E. and {Balam}, D. and 
+	{Basa}, S. and {Carlberg}, R.~G. and {Fabbro}, S. and {Fouchez}, D. and 
+	{Guy}, J. and {Lafoux}, H. and {Neill}, J.~D. and {Pain}, R. and 
+	{Palanque-Delabrouille}, N. and {Pritchet}, C.~J. and {Regnault}, N. and 
+	{Rich}, J. and {Taillet}, R. and {Knop}, R. and {McMahon}, R.~G. and 
+	{Perlmutter}, S. and {Walton}, N.~A.},
+    title = "{Gemini Spectroscopy of Supernovae from the Supernova Legacy Survey: Improving High-Redshift Supernova Selection and Classification}",
+  journal = {\apj},
+   eprint = {astro-ph/0509195},
+ keywords = {Cosmology: Observations, Methods: Data Analysis, Stars: Supernovae: General, Techniques: Spectroscopic, Surveys},
+     year = 2005,
+    month = dec,
+   volume = 634,
+    pages = {1190-1201},
+      doi = {10.1086/497119},
+   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...634.1190H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005NCimC..28..767R,
+   author = {{Reichart}, D. and {Nysewander}, M. and {Moran}, J. and {Bartelme}, J. and 
+	{Bayliss}, M. and {Foster}, A. and {Clemens}, J.~C. and {Price}, P. and 
+	{Evans}, C. and {Salmonson}, J. and {Trammell}, S. and {Carney}, B. and 
+	{Keohane}, J. and {Gotwals}, R.},
+    title = "{PROMPT: Panchromatic Robotic Optical Monitoring and Polarimetry Telescopes}",
+  journal = {Nuovo Cimento C Geophysics Space Physics C},
+   eprint = {astro-ph/0502429},
+     year = 2005,
+    month = jul,
+   volume = 28,
+    pages = {767},
+      doi = {10.1393/ncc/i2005-10149-6},
+   adsurl = {http://adsabs.harvard.edu/abs/2005NCimC..28..767R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@INPROCEEDINGS{2012SPIE.8444E..4HP,
+   author = {{Perez}, F. and {Bagish}, A. and {Bredthauer}, G. and {Espoz}, J. and 
+	{Jones}, P. and {Pinto}, P.},
+    title = "{Modernization of the 1 meter Swope and 2.5 meter Du Pont telescopes at Las Campanas Observatory}",
+booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+     year = 2012,
+   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+   volume = 8444,
+    month = sep,
+      eid = {84444H},
+      doi = {10.1117/12.927150},
+   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8444E..4HP},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2014SPIE.9149E..1EB,
+   author = {{Boroson}, T. and {Brown}, T. and {Hjelstrom}, A. and {Howell}, D.~A. and 
+	{Lister}, T. and {Pickles}, A. and {Rosing}, W. and {Saunders}, E. and 
+	{Street}, R. and {Walker}, Z.},
+    title = "{Science operations for LCOGT: a global telescope network}",
+booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+     year = 2014,
+   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+   volume = 9149,
+    month = aug,
+      eid = {91491E},
+      doi = {10.1117/12.2054776},
+   adsurl = {http://adsabs.harvard.edu/abs/2014SPIE.9149E..1EB},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008ApJ...674...51E,
+   author = {{Ellis}, R.~S. and {Sullivan}, M. and {Nugent}, P.~E. and {Howell}, D.~A. and 
+	{Gal-Yam}, A. and {Astier}, P. and {Balam}, D. and {Balland}, C. and 
+	{Basa}, S. and {Carlberg}, R.~G. and {Conley}, A. and {Fouchez}, D. and 
+	{Guy}, J. and {Hardin}, D. and {Hook}, I. and {Pain}, R. and 
+	{Perrett}, K. and {Pritchet}, C.~J. and {Regnault}, N.},
+    title = "{Verifying the Cosmological Utility of Type Ia Supernovae: Implications of a Dispersion in the Ultraviolet Spectra}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0710.3896},
+ keywords = {Cosmology: Cosmological Parameters, Stars: Supernovae: General, Surveys},
+     year = 2008,
+    month = feb,
+   volume = 674,
+    pages = {51-69},
+      doi = {10.1086/524981},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...674...51E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.444.3258M,
+   author = {{Maguire}, K. and {Sullivan}, M. and {Pan}, Y.-C. and {Gal-Yam}, A. and 
+	{Hook}, I.~M. and {Howell}, D.~A. and {Nugent}, P.~E. and {Mazzali}, P. and 
+	{Chotard}, N. and {Clubb}, K.~I. and {Filippenko}, A.~V. and 
+	{Kasliwal}, M.~M. and {Kandrashoff}, M.~T. and {Poznanski}, D. and 
+	{Saunders}, C.~M. and {Silverman}, J.~M. and {Walker}, E. and 
+	{Xu}, D.},
+    title = "{Exploring the spectral diversity of low-redshift Type Ia supernovae using the Palomar Transient Factory}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1408.1430},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, galaxies: general, distance scale},
+     year = 2014,
+    month = nov,
+   volume = 444,
+    pages = {3258-3274},
+      doi = {10.1093/mnras/stu1607},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.444.3258M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013A&G....54f6.17S,
+   author = {{Sullivan}, M.},
+    title = "{Gone in a flash}",
+  journal = {Astronomy and Geophysics},
+     year = 2013,
+    month = dec,
+   volume = 54,
+   number = 6,
+    pages = {060006-6},
+      doi = {10.1093/astrogeo/att202},
+   adsurl = {http://adsabs.harvard.edu/abs/2013A&G....54f6.17S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013MNRAS.436..222M,
+   author = {{Maguire}, K. and {Sullivan}, M. and {Patat}, F. and {Gal-Yam}, A. and 
+	{Hook}, I.~M. and {Dhawan}, S. and {Howell}, D.~A. and {Mazzali}, P. and 
+	{Nugent}, P.~E. and {Pan}, Y.-C. and {Podsiadlowski}, P. and 
+	{Simon}, J.~D. and {Sternberg}, A. and {Valenti}, S. and {Baltay}, C. and 
+	{Bersier}, D. and {Blagorodnova}, N. and {Chen}, T.-W. and {Ellman}, N. and 
+	{Feindt}, U. and {F{\"o}rster}, F. and {Fraser}, M. and {Gonz{\'a}lez-Gait{\'a}n}, S. and 
+	{Graham}, M.~L. and {Guti{\'e}rrez}, C. and {Hachinger}, S. and 
+	{Hadjiyska}, E. and {Inserra}, C. and {Knapic}, C. and {Laher}, R.~R. and 
+	{Leloudas}, G. and {Margheim}, S. and {McKinnon}, R. and {Molinaro}, M. and 
+	{Morrell}, N. and {Ofek}, E.~O. and {Rabinowitz}, D. and {Rest}, A. and 
+	{Sand}, D. and {Smareglia}, R. and {Smartt}, S.~J. and {Taddia}, F. and 
+	{Walker}, E.~S. and {Walton}, N.~A. and {Young}, D.~R.},
+    title = "{A statistical analysis of circumstellar material in Type Ia supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1308.3899},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, supernovae: general, distance scale},
+     year = 2013,
+    month = nov,
+   volume = 436,
+    pages = {222-240},
+      doi = {10.1093/mnras/stt1586},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..222M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.437.1519V,
+   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
+	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
+	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
+	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
+	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
+	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
+	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
+	{Young}, D.~R.},
+    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint Type I supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.2983},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2012hn},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {1519-1533},
+      doi = {10.1093/mnras/stt1983},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437.1519V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.437L..51I,
+   author = {{Inserra}, C. and {Smartt}, S.~J. and {Scalzo}, R. and {Fraser}, M. and 
+	{Pastorello}, A. and {Childress}, M. and {Pignata}, G. and {Jerkstrand}, A. and 
+	{Kotak}, R. and {Benetti}, S. and {Della Valle}, M. and {Gal-Yam}, A. and 
+	{Mazzali}, P. and {Smith}, K. and {Sullivan}, M. and {Valenti}, S. and 
+	{Yaron}, O. and {Young}, D. and {Reichart}, D.},
+    title = "{SN2012ca: a stripped envelope core-collapse SN interacting with dense circumstellar medium}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1307.1791},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN2012ca},
+     year = 2014,
+    month = jan,
+   volume = 437,
+    pages = {L51-L55},
+      doi = {10.1093/mnrasl/slt138},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437L..51I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.438L.101V,
+   author = {{Valenti}, S. and {Sand}, D. and {Pastorello}, A. and {Graham}, M.~L. and 
+	{Howell}, D.~A. and {Parrent}, J.~T. and {Tomasella}, L. and 
+	{Ochner}, P. and {Fraser}, M. and {Benetti}, S. and {Yuan}, F. and 
+	{Smartt}, S.~J. and {Maund}, J.~R. and {Arcavi}, I. and {Gal-Yam}, A. and 
+	{Inserra}, C. and {Young}, D.},
+    title = "{The first month of evolution of the slow-rising Type IIP SN 2013ej in M74$^{â
+}$}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1309.4269},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae individual: SN 2013ej},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {L101-L105},
+      doi = {10.1093/mnrasl/slt171},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438L.101V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.441..289B,
+   author = {{Benetti}, S. and {Nicholl}, M. and {Cappellaro}, E. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Elias-Rosa}, N. and {Drake}, A.~J. and 
+	{Tomasella}, L. and {Turatto}, M. and {Harutyunyan}, A. and 
+	{Taubenberger}, S. and {Hachinger}, S. and {Morales-Garoffolo}, A. and 
+	{Chen}, T.-W. and {Djorgovski}, S.~G. and {Fraser}, M. and {Gal-Yam}, A. and 
+	{Inserra}, C. and {Mazzali}, P. and {Pumo}, M.~L. and {Sollerman}, J. and 
+	{Valenti}, S. and {Young}, D.~R. and {Dennefeld}, M. and {Le Guillou}, L. and 
+	{Fleury}, M. and {L{\'e}get}, P.-F.},
+    title = "{The supernova CSS121015:004244+132827: a clue for understanding superluminous supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1310.1311},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: CSS121015:004244+132827},
+     year = 2014,
+    month = jun,
+   volume = 441,
+    pages = {289-303},
+      doi = {10.1093/mnras/stu538},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.441..289B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ATel.4495....1W,
+   author = {{Wyrzykowski}, L. and {Udalski}, A. and {Kozlowski}, S.},
+    title = "{18 supernovae candidates detected by the OGLE-IV survey}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Optical, Supernovae, Transient},
+     year = 2012,
+    month = oct,
+   volume = 4495,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4495....1W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013AcA....63....1K,
+   author = {{Koz{\l}owski}, S. and {Udalski}, A. and {Wyrzykowski}, {\L}. and 
+	{Poleski}, R. and {Pietrukowicz}, P. and {Skowron}, J. and {Szyma{\'n}ski}, M.~K. and 
+	{Kubiak}, M. and {Pietrzy{\'n}ski}, G. and {Soszy{\'n}ski}, I. and 
+	{Ulaczyk}, K.},
+    title = "{Supernovae and Other Transients in the OGLE-IV Magellanic Bridge Data}",
+  journal = {\actaa},
+archivePrefix = "arXiv",
+   eprint = {1301.3909},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, Magellanic Clouds, Surveys},
+     year = 2013,
+    month = mar,
+   volume = 63,
+    pages = {1-19},
+   adsurl = {http://adsabs.harvard.edu/abs/2013AcA....63....1K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010AdAst2010E..30L,
+   author = {{Lipunov}, V. and {Kornilov}, V. and {Gorbovskoy}, E. and {Shatskij}, N. and 
+	{Kuvshinov}, D. and {Tyurina}, N. and {Belinski}, A. and {Krylov}, A. and 
+	{Balanutsa}, P. and {Chazov}, V. and {Kuznetsov}, A. and {Kortunov}, P. and 
+	{Sankovich}, A. and {Tlatov}, A. and {Parkhomenko}, A. and {Krushinsky}, V. and 
+	{Zalozhnyh}, I. and {Popov}, A. and {Kopytova}, T. and {Ivanov}, K. and 
+	{Yazev}, S. and {Yurkov}, V.},
+    title = "{Master Robotic Net}",
+  journal = {Advances in Astronomy},
+archivePrefix = "arXiv",
+   eprint = {0907.0827},
+ primaryClass = "astro-ph.HE",
+     year = 2010,
+   volume = 2010,
+      eid = {349171},
+      doi = {10.1155/2010/349171},
+   adsurl = {http://adsabs.harvard.edu/abs/2010AdAst2010E..30L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014Natur.509..471G,
+   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
+	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
+	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
+	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
+	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
+	{Wheeler}, J.~C.},
+    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1406.7640},
+ primaryClass = "astro-ph.HE",
+     year = 2014,
+    month = may,
+   volume = 509,
+    pages = {471-474},
+      doi = {10.1038/nature13304},
+   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008Natur.453..469S,
+   author = {{Soderberg}, A.~M. and {Berger}, E. and {Page}, K.~L. and {Schady}, P. and 
+	{Parrent}, J. and {Pooley}, D. and {Wang}, X.-Y. and {Ofek}, E.~O. and 
+	{Cucchiara}, A. and {Rau}, A. and {Waxman}, E. and {Simon}, J.~D. and 
+	{Bock}, D.~C.-J. and {Milne}, P.~A. and {Page}, M.~J. and {Barentine}, J.~C. and 
+	{Barthelmy}, S.~D. and {Beardmore}, A.~P. and {Bietenholz}, M.~F. and 
+	{Brown}, P. and {Burrows}, A. and {Burrows}, D.~N. and {Byrngelson}, G. and 
+	{Cenko}, S.~B. and {Chandra}, P. and {Cummings}, J.~R. and {Fox}, D.~B. and 
+	{Gal-Yam}, A. and {Gehrels}, N. and {Immler}, S. and {Kasliwal}, M. and 
+	{Kong}, A.~K.~H. and {Krimm}, H.~A. and {Kulkarni}, S.~R. and 
+	{Maccarone}, T.~J. and {M{\'e}sz{\'a}ros}, P. and {Nakar}, E. and 
+	{O'Brien}, P.~T. and {Overzier}, R.~A. and {de Pasquale}, M. and 
+	{Racusin}, J. and {Rea}, N. and {York}, D.~G.},
+    title = "{An extremely luminous X-ray outburst at the birth of a supernova}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0802.1712},
+     year = 2008,
+    month = may,
+   volume = 453,
+    pages = {469-474},
+      doi = {10.1038/nature06997},
+   adsurl = {http://adsabs.harvard.edu/abs/2008Natur.453..469S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...775L...7C,
+   author = {{Cao}, Y. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Horesh}, A. and 
+	{Hancock}, P. and {Valenti}, S. and {Cenko}, S.~B. and {Kulkarni}, S.~R. and 
+	{Gal-Yam}, A. and {Gorbikov}, E. and {Ofek}, E.~O. and {Sand}, D. and 
+	{Yaron}, O. and {Graham}, M. and {Silverman}, J.~M. and {Wheeler}, J.~C. and 
+	{Marion}, G.~H. and {Walker}, E.~S. and {Mazzali}, P. and {Howell}, D.~A. and 
+	{Li}, K.~L. and {Kong}, A.~K.~H. and {Bloom}, J.~S. and {Nugent}, P.~E. and 
+	{Surace}, J. and {Masci}, F. and {Carpenter}, J. and {Degenaar}, N. and 
+	{Gelino}, C.~R.},
+    title = "{Discovery, Progenitor and Early Evolution of a Stripped Envelope Supernova iPTF13bvn}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1307.1470},
+ primaryClass = "astro-ph.SR",
+ keywords = {instrumentation: adaptive optics, shock waves, stars: Wolf-Rayet, supernovae: individual: iPTF13bvn, surveys},
+     year = 2013,
+    month = sep,
+   volume = 775,
+      eid = {L7},
+    pages = {L7},
+      doi = {10.1088/2041-8205/775/1/L7},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775L...7C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ATel.5850....1S,
+   author = {{Smartt}, S.~J. and {Smith}, K.~W. and {Wright}, D. and {Young}, D.~R. and 
+	{Kotak}, R. and {Nicholl}, M. and {Polshaw}, J. and {Inserra}, C. and 
+	{Chen}, T.-W. and {Terreran}, G. and {Gall}, E. and {Fraser}, M. and 
+	{McCrum}, M. and {Valenti}, S. and {Foley}, R. and {Lawrence}, A. and 
+	{Gezari}, S. and {Burgett}, W. and {Chambers}, K. and {Huber}, M. and 
+	{Kudritzki}, R.~P. and {Magnier}, E. and {Morgan}, J. and {Tonry}, J. and 
+	{Sweeney}, W. and {Stubbs}, C.~W.~C. and {Kirshner}, R. and 
+	{Metcalfe}, N. and {Rest}, P.~D.~A.},
+    title = "{Pan-STARRS1 3Pi transients}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Optical, AGN, Supernovae, Transient},
+     year = 2014,
+    month = feb,
+   volume = 5850,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ATel.5850....1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...788...48S,
+   author = {{Shappee}, B.~J. and {Prieto}, J.~L. and {Grupe}, D. and {Kochanek}, C.~S. and 
+	{Stanek}, K.~Z. and {De Rosa}, G. and {Mathur}, S. and {Zu}, Y. and 
+	{Peterson}, B.~M. and {Pogge}, R.~W. and {Komossa}, S. and {Im}, M. and 
+	{Jencson}, J. and {Holoien}, T.~W.-S. and {Basu}, U. and {Beacom}, J.~F. and 
+	{Szczygie{\l}}, D.~M. and {Brimacombe}, J. and {Adams}, S. and 
+	{Campillay}, A. and {Choi}, C. and {Contreras}, C. and {Dietrich}, M. and 
+	{Dubberley}, M. and {Elphick}, M. and {Foale}, S. and {Giustini}, M. and 
+	{Gonzalez}, C. and {Hawkins}, E. and {Howell}, D.~A. and {Hsiao}, E.~Y. and 
+	{Koss}, M. and {Leighly}, K.~M. and {Morrell}, N. and {Mudd}, D. and 
+	{Mullins}, D. and {Nugent}, J.~M. and {Parrent}, J. and {Phillips}, M.~M. and 
+	{Pojmanski}, G. and {Rosing}, W. and {Ross}, R. and {Sand}, D. and 
+	{Terndrup}, D.~M. and {Valenti}, S. and {Walker}, Z. and {Yoon}, Y.
+	},
+    title = "{The Man behind the Curtain: X-Rays Drive the UV through NIR Variability in the 2013 Active Galactic Nucleus Outburst in NGC 2617}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1310.2241},
+ primaryClass = "astro-ph.HE",
+ keywords = {galaxies: active, galaxies: nuclei, galaxies: Seyfert, line: formation, line: profiles},
+     year = 2014,
+    month = jun,
+   volume = 788,
+      eid = {48},
+    pages = {48},
+      doi = {10.1088/0004-637X/788/1/48},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788...48S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2003PASP..115.1289V,
+    author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{On the Progenitor of the Type II-Plateau Supernova 2003gd in M74}",
+    journal = {\pasp},
+    year = 2003,
+    month = nov,
+    volume = 115,
+    pages = {1289-1295},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003PASP..115.1289V&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2003IAUC.8150....2E,
+    author = {{Evans}, R. and {McNaught}, R.~H.},
+    title = "{Supernova 2003gd in M74}",
+    journal = {\iauc},
+    year = 2003,
+    month = jun,
+    volume = 8150,
+    pages = {2-+},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003IAUC.8150....2E&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003IAUC.8150....3G,
+    author = {{Garnavich}, P. and {Bass}, E.},
+    title = "{Supernova 2003gd in M74}",
+    journal = {\iauc},
+    year = 2003,
+    volume = 8150,
+    month = jun,
+    pages = {3-+},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003IAUC.8150....3G&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003IAUC.8152....1K,
+    author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Smartt}, S.~J. and {Benn}, C.},
+    title = "{Supernova 2003gd in M74}",
+    journal = {\iauc},
+    year = 2003,
+    volume = 8152,
+    month = jun,
+    pages = {1-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003IAUC.8152....1K&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2002ApJ...566L..63H,
+    author = {{Hamuy}, M. and {Pinto}, P.~A.},
+    title = "{Type II Supernovae as Standardized Candles}",
+    journal = {\apjl},
+    year = 2002,
+    month = feb,
+    volume = 566,
+    pages = {L63-L65},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002ApJ...566L..63H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1968AJ.....73.1021K,
+    author = {{Kowal}, C.~T.},
+    title = "{Absolute magnitudes of supernovae.}",
+    journal = {\aj},
+    year = 1968,
+    month = dec,
+    volume = 73,
+    pages = {1021-1024},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1968AJ.....73.1021K&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999AJ....117..707R,
+    author = {{Riess}, A.~G. and {Kirshner}, R.~P. and {Schmidt}, B.~P. and 
+	{Jha}, S. and {Challis}, P. and {Garnavich}, P.~M. and {Esin}, A.~A. and {Carpenter}, C. and {et al.}},
+    title = "{BVRI Light Curves for 22 Type IA Supernovae}",
+    journal = {\aj},
+    year = 1999,
+    month = feb,
+    volume = 117,
+    pages = {707-724},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1999AJ....117..707R&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...553...47F,
+    author = {{Freedman}, W.~L. and {Madore}, B.~F. and {Gibson}, B.~K. and 
+	{Ferrarese}, L. and {Kelson}, D.~D. and {Sakai}, S. and {Mould}, J.~R. and {Kennicutt}, R.~C. and {et al.}},
+    title = "{Final Results from the Hubble Space Telescope Key Project to Measure the Hubble Constant}",
+    journal = {\apj},
+    year = 2001,
+    month = may,
+    volume = 553,
+    pages = {47-72},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001ApJ...553...47F&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ApJ...594....1T,
+    author = {{Tonry}, J.~L. and {Schmidt}, B.~P. and {Barris}, B. and {Candia}, P. and {Challis}, P. and {Clocchiatti}, A. and {Coil}, A.~L. and {Filippenko}, A.~V. and {\rm et al.}},
+    title = "{Cosmological Results from High-z Supernovae}",
+    journal = {\apj},
+    year = 2003,
+    month = sep,
+    volume = 594,
+    pages = {1-24},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003ApJ...594....1T&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999ApJ...517..565P,
+    author = {{Perlmutter}, S. and {Aldering}, G. and {Goldhaber}, G. and 
+	{Knop}, R.~A. and {Nugent}, P. and {Castro}, P.~G. and {Deustua}, S. and 
+	{Fabbro}, S. and {et al.}},
+    title = "{Measurements of Omega and Lambda from 42 High-Redshift Supernovae}",
+    journal = {\apj},
+    year = 1999,
+    month = jun,
+    volume = 517,
+    pages = {565-586},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1999ApJ...517..565P&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{astro-ph/0310057,
+    author = {{Zampieri}, L. and {Ramina}, M. and {Pastorello}, A.},
+    title = "{Understanding Type II Supernovae, astro-ph/0310057}",
+    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
+    year = 2004,
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{astro-ph/0309122,
+    author = {{Hamuy}, M.},
+    title = "{The Standard Candle Method for Type II Supernovae and the Hubble Constant, astro-ph/0309122}",
+    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
+    year = 2004,
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...558..615H,
+    author = {{Hamuy}, M. and {Pinto}, P.~A. and {Maza}, J. and {Suntzeff}, N.~B. and 
+	{Phillips}, M.~M. and {Eastman}, R.~G. and {Smith}, R.~C. and 
+	{Corbally}, C.~J. and {et al.}},
+    title = "{The Distance to SN 1999em from the Expanding Photosphere Method}",
+    journal = {\apj},
+    year = 2001,
+    month = sep,
+    volume = 558,
+    pages = {615-642},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001ApJ...558..615H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ApJ...582..905H,
+    author = {{Hamuy}, M.},
+    title = "{Observed and Physical Properties of Core-Collapse Supernovae}",
+    journal = {\apj},
+    year = 2003,
+    month = jan,
+    volume = 582,
+    pages = {905-914},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003ApJ...582..905H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1992ApJ...395..366S,
+    author = {{Schmidt}, B.~P. and {Kirshner}, R.~P. and {Eastman}, R.~G.},
+    title = "{Expanding photospheres of type II supernovae and the extragalactic distance scale}",
+    journal = {\apj},
+    year = 1992,
+    month = aug,
+    volume = 395,
+    pages = {366-386},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992ApJ...395..366S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996ApJ...466..911E,
+    author = {{Eastman}, R.~G. and {Schmidt}, B.~P. and {Kirshner}, R.},
+    title = "{The Atmospheres of Type II Supernovae and the Expanding Photosphere Method}",
+    journal = {\apj},
+    year = 1996,
+    month = aug,
+    volume = 466,
+    pages = {911-+},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1996ApJ...466..911E&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000ApJ...545..444B,
+    author = {{Baron}, E. and {Branch}, D. and {Hauschildt}, P.~H. and {Filippenko}, A.~V. and 
+	{Kirshner}, R.~P. and {Challis}, P.~M. and {Jha}, S. and {Chevalier}, R. and {et al.}},
+    title = "{Preliminary Spectral Analysis of the Type II Supernova 1999EM}",
+    journal = {\apj},
+    year = 2000,
+    month = dec,
+    volume = 545,
+    pages = {444-448},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000ApJ...545..444B&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1989ApJ...345..245C,
+    author = {{Cardelli}, J.~A. and {Clayton}, G.~C. and {Mathis}, J.~S.},
+    title = "{The relationship between infrared, optical, and ultraviolet extinction}",
+    journal = {\apj},
+    year = 1989,
+    month = oct,
+    volume = 345,
+    pages = {245-256},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1989ApJ...345..245C&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002PASP..114...35L,
+    author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Gates}, E.~L. and 
+	{Li}, W. and {Eastman}, R.~G. and {Barth}, A.~J. and {Bus}, S.~J. and 
+	{Chornock}, R. and {et al.}},
+    title = "{The Distance to SN 1999em in NGC 1637 from the Expanding Photosphere Method}",
+    journal = {\pasp},
+    year = 2002,
+    month = jan,
+    volume = 114,
+    pages = {35-64},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002PASP..114...35L&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002AJ....124.2490L,
+    author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Li}, W. and {Matheson}, T. and 
+	{Kirshner}, R.~P. and {Chornock}, R. and {Van Dyk}, S.~D. and 
+	{Berlind}, P. and {et al.}},
+    title = "{A Study of the Type II-Plateau Supernova 1999gi and the Distance to its Host Galaxy, NGC 3184}",
+    journal = {\aj},
+    year = 2002,
+    month = nov,
+    volume = 124,
+    pages = {2490-2505},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002AJ....124.2490L&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001PhDTHamuy,
+    author = {{Hamuy}, M.},
+    title = "{Type II Supernovae as Distance Indicators}",
+    journal = {Ph.D.~Thesis},
+    year = 2001
+}
+
+@ARTICLE{2002GCN..1242....1H,
+    author = {{Henden}, A.},
+    title = "{SN2002ap (SN/GRB?) UBVRI field photometry.}",
+    journal = {GRB Circular Network},
+    year = 2002,
+    volume = 1242,
+    pages = {1-+},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002GCN..1242....1H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ApJ...594..247L,
+    author = {{Leonard}, D.~C. and {Kanbur}, S.~M. and {Ngeow}, C.~C. and 
+	{Tanvir}, N.~R.},
+    title = "{The Cepheid Distance to NGC 1637: A Direct Test of the Expanding Photosphere Method Distance to SN 1999em}",
+    journal = {\apj},
+    year = 2003,
+    month = sep,
+    volume = 594,
+    pages = {247-278},
+    adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2003ApJ...594..247L&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1981ApJS...47..357B,
+    author = {{Bahcall}, J.~N. and {Soneira}, R.~M.},
+    title = "{Predicted star counts in selected fields and photometric bands Applications to galactic structure, the disk luminosity function, and the detection of a massive halo}",
+    journal = {\apjs},
+    year = 1981,
+    month = dec,
+    volume = 47,
+    pages = {357-403},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1981ApJS...47..357B&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@BOOK{2000asqu.book.....C,
+    author = {{Drilling}, J.~S. and {Landolt}, A.~U.},
+    title = "{in Allen's astrophysical quantities}",
+    publisher = {4th ed. Publisher: New York: AIP Press; Springer, 2000. Edited by Arthur N.~Cox. ISBN: 0387987460},
+    year = 2000,
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000asqu.book.....C&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996AJ....111.2280S,
+    author = {{Sohn}, Y. and {Davidge}, T.~J.},
+    title = "{Multicolor CCD Photometry of Supergiants in the Disk of NGC 628}",
+    journal = {\aj},
+    year = 1996,
+    month = jun,
+    volume = 111,
+    pages = {2280-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1996AJ....111.2280S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996A&AS..119..499S,
+    author = {{Sharina}, M.~E. and {Karachentsev}, I.~D. and {Tikhonov}, N.~A.
+	},
+    title = "{Photometric distances to NGC 628 and its four companions.}",
+    journal = {\aaps},
+    year = 1996,
+    month = nov,
+    volume = 119,
+    pages = {499-507},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1996A&AS..119..499S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1994MNRAS.271..530R,
+    author = {{Rozanski}, R. and {Rowan-Robinson}, M.},
+    title = "{The Accuracy of the Brightest Stars in Galaxies as Distance Indicators}",
+    journal = {\mnras},
+    year = 1994,
+    month = dec,
+    volume = 271,
+    pages = {530-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1994MNRAS.271..530R&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998AJ....115..130S,
+    author = {{Sohn}, Y. and {Davidge}, T.~J.},
+    title = "{VRI CCD photometry of supergiant stars in the barred galaxies NGC 925 and NGC 1637}",
+    journal = {\aj},
+    year = 1998,
+    month = jan,
+    volume = 115,
+    pages = {130-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....115..130S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998ApJ...500..525S,
+    author = {{Schlegel}, D.~J. and {Finkbeiner}, D.~P. and {Davis}, M.},
+    title = "{Maps of Dust Infrared Emission for Use in Estimation of Reddening and Cosmic Microwave Background Radiation Foregrounds}",
+    journal = {\apj},
+    year = 1998,
+    month = jun,
+    volume = 500,
+    pages = {525-+},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1998ApJ...500..525S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1984A&A...132...20S,
+    author = {{Shostak}, G.~S. and {van der Kruit}, P.~C.},
+    title = "{Studies of nearly face-on spiral galaxies. II - H I synthesis observations and optical surface photometry of NGC 628}",
+    journal = {\aap},
+    year = 1984,
+    month = mar,
+    volume = 132,
+    pages = {20-32},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1984A&A...132...20S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001NewAR..45..105I,
+    author = {{Irwin}, M. and {Lewis}, J.},
+    title = "{INT WFS pipeline processing}",
+    journal = {New Astronomy Review},
+    year = 2001,
+    month = jan,
+    volume = 45,
+    pages = {105-110},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001NewAR..45..105I&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@BOOK{SUN50.24,
+    author = {{Howarth}, I.~D. and {Murray}, J. and {Mills}, D. and {Berry}, D.~S.},
+    title = "{Starlink User Note 50.24}",
+    publisher = {Rutherford Appleton Laboratory},
+    year = 2003,
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000asqu.book.....C&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.338..939E,
+    author = {{Elmhamdi}, A. and {Danziger}, I.~J. and {Chugai}, N. and {Pastorello}, A. and 
+        {Turatto}, M. and {Cappellaro}, E. and {Altavilla}, G. and {Benetti}, S. and 
+        {Patat}, F. and {Salvo}, M.},
+    title = "{Photometry and spectroscopy of the Type IIP SN 1999em from outburst to dust formation}",
+    journal = {\mnras},
+    year = 2003,
+    month = feb,
+    volume = 338,
+    pages = {939-956},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003MNRAS.338..939E&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1992ApJS...78...61B,
+    author = {{Belley}, J. and {Roy}, J.},
+    title = "{The abundance gradients across the spiral galaxies NGC 628 and NGC 6946}",
+    journal = {\apjs},
+    year = 1992,
+    month = jan,
+    volume = 78,
+    pages = {61-85},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992ApJS...78...61B&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998AJ....116..673F,
+    author = {{Ferguson}, A.~M.~N. and {Gallagher}, J.~S. and {Wyse}, R.~F.~G.
+	},
+    title = "{The Extreme Outer Regions of Disk Galaxies. I. Chemical Abundances of H II Regions}",
+    journal = {\aj},
+    year = 1998,
+    month = aug,
+    volume = 116,
+    pages = {673-690},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....116..673F&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@BOOK{1988ngc..book.....T,
+    author = {{Tully}, R.~B.},
+    title = "{Nearby galaxies catalog}",
+    publisher = {Cambridge and New York, Cambridge University Press, 1988, 221 p.},
+    year = 1988,
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1988ngc..book.....T&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998A&AS..130..333T,
+    author = {{Theureau}, G. and {Bottinelli}, L. and {Coudreau-Durand}, N. and 
+	{Gouguenheim}, L. and {Hallet}, N. and {Loulergue}, M. and {Paturel}, G. and 
+	{Teerikorpi}, P.},
+    title = "{Kinematics of the local universe. VII. New 21-cm line measurements of 2112 galaxies}",
+    journal = {\aaps},
+    year = 1998,
+    month = jun,
+    volume = 130,
+    pages = {333-339},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998A&AS..130..333T&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000ApJ...530..625T,
+    author = {{Tonry}, J.~L. and {Blakeslee}, J.~P. and {Ajhar}, E.~A. and 
+	{Dressler}, A.},
+    title = "{The Surface Brightness Fluctuation Survey of Galaxy Distances. II. Local and Large-Scale Flows}",
+    journal = {\apj},
+    year = 2000,
+    month = feb,
+    volume = 530,
+    pages = {625-651},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000ApJ...530..625T&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1994A&A...286..718K,
+    author = {{Karachentsev}, I.~D. and {Tikhonov}, N.~A.},
+    title = "{New photometric distances for dwarf galaxies in the Local Volume}",
+    journal = {\aap},
+    year = 1994,
+    month = jun,
+    volume = 286,
+    pages = {718-724},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1994A&A...286..718K&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1992MmSAI..63..465P,
+    author = {{Piotto}, G. and {Capaccioli}, M. and {Bresolin}, F.},
+    title = "{On the distances of nearby galaxies}",
+    journal = {Memorie della Societa Astronomica Italiana},
+    year = 1992,
+    volume = 63,
+    pages = {465-478},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1992MmSAI..63..465P&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998ApJ...498L.129T,
+    author = {{Turatto}, M. and {Mazzali}, P.~A. and {Young}, T.~R. and {Nomoto}, K. and 
+	{Iwamoto}, K. and {Benetti}, S. and {Cappallaro}, E. and {Danziger}, I.~J. and {et al.}},
+    title = "{The Peculiar Type II Supernova 1997D: A Case for a Very Low 56Ni Mass}",
+    journal = {\apjl},
+    year = 1998,
+    month = may,
+    volume = 498,
+    pages = {L129+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998ApJ...498L.129T&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005PASP..117..773V,
+   author = {{van den Bergh}, S. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{Classifications of the Host Galaxies of Supernovae, Set III}",
+  journal = {\pasp},
+   eprint = {astro-ph/0504668},
+     year = 2005,
+    month = aug,
+   volume = 117,
+    pages = {773-782},
+      doi = {10.1086/431435},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005PASP..117..773V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1994ApJ...430...53P,
+    author = {{Pierce}, M.~J.},
+    title = "{Luminosity-line-width relations and the extragalactic distance scale. 2: A comparison with Types IA and II supernovae}",
+    journal = {\apj},
+    year = 1994,
+    month = jul,
+    volume = 430,
+    pages = {53-62},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1994ApJ...430...53P&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1979ApJ...227..729D,
+    author = {{de Vaucouleurs}, G.},
+    title = "{The extragalactic distance scale. VI - Distances of 458 spiral galaxies from tertiary indicators}",
+    journal = {\apj},
+    year = 1979,
+    month = feb,
+    volume = 227,
+    pages = {729-755},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1979ApJ...227..729D&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004Sci...303..499S,
+    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Tout}, C.~A. and 
+	{Gilmore}, G.~F. and {Mattila}, S. and {Benn}, C.~R.},
+    title = "{Detection of a Red Supergiant Progenitor Star of a Type II-Plateau Supernova}",
+    journal = {Science},
+    year = 2004,
+    month = jan,
+    volume = 303,
+    pages = {499-503},
+    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2004Sci...303..499S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...645.1102L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
+	{Plez}, B. and {Meynet}, G. and {Maeder}, A.},
+    title = "{The Effective Temperatures and Physical Properties of Magellanic Cloud Red Supergiants: The Effects of Metallicity}",
+  journal = {\apj},
+   eprint = {astro-ph/0603596},
+ keywords = {ISM: Dust, Extinction, Stars: Atmospheres, Stars: Fundamental Parameters, Stars: Late-Type, Stars: Supergiants},
+     year = 2006,
+    month = jul,
+   volume = 645,
+    pages = {1102-1117},
+      doi = {10.1086/504417},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...645.1102L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007ApJ...667..202L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
+	{Plez}, B.},
+    title = "{Late-Type Red Supergiants: Too Cool for the Magellanic Clouds?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0705.3431},
+ keywords = {Stars: Evolution, Stars: Late-Type, Stars: Mass Loss, Stars: Supergiants},
+     year = 2007,
+    month = sep,
+   volume = 667,
+    pages = {202-212},
+      doi = {10.1086/520797},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...667..202L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...628..973L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
+	{Plez}, B. and {Josselin}, E. and {Maeder}, A. and {Meynet}, G.
+	},
+    title = "{The Effective Temperature Scale of Galactic Red Supergiants: Cool, but Not As Cool As We Thought}",
+  journal = {\apj},
+   eprint = {astro-ph/0504337},
+ keywords = {ISM: Dust, Extinction, Stars: Atmospheres, Stars: Fundamental Parameters, Stars: Late-Type, Stars: Supergiants},
+     year = 2005,
+    month = aug,
+   volume = 628,
+    pages = {973-985},
+      doi = {10.1086/430901},
+   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...628..973L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{1988AJ.....96..909S,
+    author = {{Stetson}, P.~B. and {Harris}, W.~E.},
+    title = "{CCD photometry of the globular cluster M92}",
+    journal = {\aj},
+    year = 1988,
+    month = sep,
+    volume = 96,
+    pages = {909-975},
+    adsurl = 
+{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1988AJ.....96..909S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000PASP..112.1383D,
+    author = {{Dolphin}, A.~E.},
+    title = "{WFPC2 Stellar Photometry with HSTPHOT}",
+    journal = {\pasp},
+    year = 2000,
+    month = oct,
+    volume = 112,
+    pages = {1383-1396},
+    adsurl = 
+{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000PASP..112.1383D&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2000PASP..112.1397D,
+    author = {{Dolphin}, A.~E.},
+    title = "{The Charge-Transfer Efficiency and Calibration of WFPC2}",
+    journal = {\pasp},
+    year = 2000,
+    month = oct,
+    volume = 112,
+    pages = {1397-1410},
+    adsurl = 
+{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000PASP..112.1397D&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1995PASP..107.1065H,
+    author = {{Holtzman}, J.~A. and {Burrows}, C.~J. and {Casertano}, S. 
+and 
+	{Hester}, J.~J. and {Trauger}, J.~T. and {Watson}, A.~M. and 
+	{Worthey}, G.},
+    title = "{The Photometric Performance and Calibration of WFPC2}",
+    journal = {\pasp},
+    year = 1995,
+    month = nov,
+    volume = 107,
+    pages = {1065-+},
+    adsurl = 
+{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995PASP..107.1065H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1987PASP...99..191S,
+    author = {{Stetson}, P.~B.},
+    title = "{DAOPHOT - A computer program for crowded-field stellar photometry}",
+    journal = {\pasp},
+    year = 1987,
+    month = mar,
+    volume = 99,
+    pages = {191-222},
+    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=1987PASP...99..191S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2004mmu..sympE...2H,
+    author = {{Hamuy}, M.},
+    title = "{The Latest Version of the Standardized Candle Method for Type II Supernovae, astro-ph/0301281}",
+    booktitle = {Measuring and Modeling the Universe, from the Carnegie Observatories Centennial Symposia. Carnegie Observatories Astrophysics Series. Edited by W. L. Freedman, 2004.  Pasadena: Carnegie Observatories,},
+    year = 2004,
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.338..711Z,
+    author = {{Zampieri}, L. and {Pastorello}, A. and {Turatto}, M. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Altavilla}, G. and {Mazzali}, P. and {Hamuy}, M.
+	},
+    title = "{Peculiar, low-luminosity Type II supernovae: low-energy explosions in massive progenitors?}",
+    journal = {\mnras},
+    year = 2003,
+    month = jan,
+    volume = 338,
+    pages = {711-716},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.338..711Z&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.343..735S,
+    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Gilmore}, G.~F. and 
+        {Tout}, C.~A. and {Kilkenny}, D. and {Benetti}, S.},
+    title = "{Mass limits for the progenitor star of supernova 2001du and other Type II-P supernovae}",
+    journal = {\mnras},
+    year = 2003,
+    month = aug,
+    volume = 343,
+    pages = {735-749},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.343..735S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2003fthp.conf....3H,
+    author = {{Heger}, A. and {Woosley}, S.~E. and {Fryer}, C.~L. and {Langer}, N.
+        },
+    title = "{Massive Star Evolution Through the Ages}",
+    booktitle = {From Twilight to Highlight: The Physics of Supernovae},
+    year = 2003,
+    pages = {3-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003fthp.conf....3H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ApJ...591..288H,
+    author = {{Heger}, A. and {Fryer}, C.~L. and {Woosley}, S.~E. and {Langer}, N. and 
+        {Hartmann}, D.~H.},
+    title = "{How Massive Single Stars End Their Life}",
+    journal = {\apj},
+    year = 2003,
+    month = jul,
+    volume = 591,
+    pages = {288-300},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ApJ...591..288H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.346...97N,
+    author = {{Nadyozhin}, D.~K.},
+    title = "{Explosion energies, nickel masses and distances of Type II plateau supernovae}",
+    journal = {\mnras},
+    year = 2003,
+    month = nov,
+    volume = 346,
+    pages = {97-104},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.346...97N&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1985SvAL...11..145L,
+    author = {{Litvinova}, I.~Y. and {Nadezhin}, D.~K.},
+    title = "{Determination of Integrated Parameters for Type-II Supernovae}",
+    journal = {Soviet Astronomy Letters},
+    year = 1985,
+    month = may,
+    volume = 11,
+    pages = {145-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1985SvAL...11..145L&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572L..61M,
+    author = {{Mazzali}, P.~A. and {Deng}, J. and {Maeda}, K. and {Nomoto}, K. and 
+	{Umeda}, H. and {Hatano}, K. and {Iwamoto}, K. and {Yoshii}, Y. and 
+	{et al.}},
+    title = "{The Type Ic Hypernova SN 2002ap}",
+    journal = {\apjl},
+    year = 2002,
+    month = jun,
+    volume = 572,
+    pages = {L61-L65},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJ...572L..61M&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572L.147S,
+    author = {{Smartt}, S.~J. and {Vreeswijk}, P.~M. and {Ramirez-Ruiz}, E. and 
+	{Gilmore}, G.~F. and {Meikle}, W.~P.~S. and {Ferguson}, A.~M.~N. and 
+	{Knapen}, J.~H.},
+    title = "{On the Progenitor of the Type Ic Supernova 2002ap}",
+    journal = {\apjl},
+    year = 2002,
+    month = jun,
+    volume = 572,
+    pages = {L147-L151},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJ...572L.147S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002MNRAS.332L..73G,
+    author = {{Gal-Yam}, A. and {Ofek}, E.~O. and {Shemmer}, O.},
+    title = "{Supernova 2002ap: the first month}",
+    journal = {\mnras},
+    year = 2002,
+    month = jun,
+    volume = 332,
+    pages = {L73-L77},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002MNRAS.332L..73G&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...565.1089S,
+    author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Tout}, C.~A. and {Hodgkin}, S.~T.
+	},
+    title = "{The Nature of the Progenitor of the Type II-P Supernova 1999em}",
+    journal = {\apj},
+    year = 2002,
+    month = feb,
+    volume = 565,
+    pages = {1089-1100},
+    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002ApJ...565.1089S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{1994AJ....107..662A,
+   author = {{Aldering}, G. and {Humphreys}, R.~M. and {Richmond}, M.},
+    title = "{SN 1993J: The optical properties of its progenitor}",
+  journal = {\aj},
+ keywords = {B Stars, Binary Stars, Blue Stars, Magellanic Clouds, O Stars, Optical Properties, Spectral Energy Distribution, Stellar Evolution, Stellar Models, Stellar Spectra, Supergiant Stars, Supernovae, Ubv Spectra, Astronomical Photography, Astronomical Photometry, Charge Coupled Devices, Hertzsprung-Russell Diagram, Light Curve, Stellar Mass},
+     year = 1994,
+    month = feb,
+   volume = 107,
+    pages = {662-672},
+      doi = {10.1086/116886},
+   adsurl = {http://adsabs.harvard.edu/abs/1994AJ....107..662A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012MNRAS.424.1372A,
+   author = {{Anderson}, J.~P. and {Habergham}, S.~M. and {James}, P.~A. and 
+	{Hamuy}, M.},
+    title = "{Progenitor mass constraints for core-collapse supernovae from correlations with host galaxy star formation}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1205.3802},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, galaxies: statistics},
+     year = 2012,
+    month = aug,
+   volume = 424,
+    pages = {1372-1391},
+      doi = {10.1111/j.1365-2966.2012.21324.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.424.1372A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008MNRAS.390.1527A,
+   author = {{Anderson}, J.~P. and {James}, P.~A.},
+    title = "{Constraints on core-collapse supernova progenitors from correlations with H{$\alpha$} emission}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0809.0236},
+ keywords = {supernovae: general , galaxies: general , galaxies: statistics},
+     year = 2008,
+    month = nov,
+   volume = 390,
+    pages = {1527-1538},
+      doi = {10.1111/j.1365-2966.2008.13843.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.390.1527A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009MNRAS.399..559A,
+   author = {{Anderson}, J.~P. and {James}, P.~A.},
+    title = "{Comparisons of the radial distributions of core-collapse supernovae with those of young and old stellar populations}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0907.0034},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general , galaxies: general , galaxies: statistics},
+     year = 2009,
+    month = oct,
+   volume = 399,
+    pages = {559-573},
+      doi = {10.1111/j.1365-2966.2009.15324.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.399..559A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2004MNRAS.349.1344A,
+    author = {{Altavilla}, G. and {Fiorentino}, G. and {Marconi}, M. and {Musella}, I. and 
+	{Cappellaro}, E. and {Barbon}, R. and {Benetti}, S. and {Pastorello}, A. and 
+	{Riello}, M. and {Turatto}, M. and {Zampieri}, L.},
+    title = "{Cepheid calibration of Type Ia supernovae and the Hubble constant}",
+    journal = {\mnras},
+    year = 2004,
+    month = apr,
+    volume = 349,
+    pages = {1344-1352},
+    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2004MNRAS.349.1344A&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001MNRAS.322..361B,
+    author = {{Benetti}, S. and {Turatto}, M. and {Balberg}, S. and {Zampieri}, L. and 
+	{Shapiro}, S.~L. and {Cappellaro}, E. and {Nomoto}, K. and {Nakamura}, T. and 
+	{Mazzali}, P.~A. and {Patat}, F.},
+    title = "{The fading of supernova 1997D}",
+    journal = {\mnras},
+    year = 2001,
+    month = apr,
+    volume = 322,
+    pages = {361-368},
+    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2001MNRAS.322..361B&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PhDT,
+    author = {{Pastorello}, A.},
+    title = "{H-Rich Core-Collapse Supernovae}",
+    journal = {Ph.D.~Thesis},
+    year = 2003
+}
+
+@ARTICLE{2004MNRAS.347...74P,
+    author = {{Pastorello}, A. and {Zampieri}, L. and {Turatto}, M. and {Cappellaro}, E. and 
+	{Meikle}, W.~P.~S. and {Benetti}, S. and {Branch}, D. and {Baron}, E. and 
+	{Patat}, F. and {Armstrong}, M. and {Altavilla}, G. and {Salvo}, M. and 
+	{Riello}, M.},
+    title = "{Low-luminosity Type II supernovae: spectroscopic and photometric evolution}",
+    journal = {\mnras},
+    year = 2004,
+    month = jan,
+    volume = 347,
+    pages = {74-94},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.347...74P&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{astro-ph/0310056,
+    author = {{Pastorello}, A. and {Ramina}, M. and {Zampieri}, L. and {Navasardyan}, H. and {Salvo}, M. and {Fiaschi}, M.},
+    title = "{Observational Properties of Type II Plateau Supernovae, astro-ph/0310056}",
+    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
+    year = 2004,
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003IAUC.8152....4S,
+    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Benn}, C.~R.},
+    title = "{Supernova 2003gd in M74}",
+    journal = {IAUC 8152},
+    year = 2003,
+    month = jun,
+    volume = 8152,
+    pages = {4-+},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003IAUC.8152....4S&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003MNRAS.340..191R,
+    author = {{Rigon}, L. and {Turatto}, M. and {Benetti}, S. and {Pastorello}, A. and 
+	{Cappellaro}, E. and {Aretxaga}, I. and {Vega}, O. and {Chavushyan}, V. and 
+	{Patat}, F. and {Danziger}, I.~J. and {Salvo}, M.},
+    title = "{SN 1999E: another piece in the supernova-gamma-ray burst connection puzzle}",
+    journal = {\mnras},
+    year = 2003,
+    month = mar,
+    volume = 340,
+    pages = {191-196},
+    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.340..191R&amp;db_key=AST},
+    adsnote = {Provided by the NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006PASP..118....2H,
+   author = {{Hamuy}, M. and {Folatelli}, G. and {Morrell}, N.~I. and {Phillips}, M.~M. and 
+	{Suntzeff}, N.~B. and {Persson}, S.~E. and {Roth}, M. and {Gonzalez}, S. and 
+	{Krzeminski}, W. and {Contreras}, C. and {Freedman}, W.~L. and 
+	{Murphy}, D.~C. and {Madore}, B.~F. and {Wyatt}, P. and {Maza}, J. and 
+	{Filippenko}, A.~V. and {Li}, W. and {Pinto}, P.~A.},
+    title = "{The Carnegie Supernova Project: The Low-Redshift Survey}",
+  journal = {\pasp},
+   eprint = {astro-ph/0512039},
+     year = 2006,
+    month = jan,
+   volume = 118,
+    pages = {2-20},
+      doi = {10.1086/500228},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006PASP..118....2H&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000MmSAI..71..573T,
+   author = {{Turatto}, M.},
+    title = "{The ESO-Asiago SN monitoring program and archive}",
+  journal = {Memorie della Societa Astronomica Italiana},
+     year = 2000,
+   volume = 71,
+    pages = {573-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000MmSAI..71..573T&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006AJ....131.2233R,
+   author = {{Richardson}, D. and {Branch}, D. and {Baron}, E.},
+    title = "{Absolute Magnitude Distributions and Light Curves of Stripped-Envelope Supernovae}",
+  journal = {\aj},
+   eprint = {astro-ph/0601136},
+     year = 2006,
+    month = apr,
+   volume = 131,
+    pages = {2233-2244},
+      doi = {10.1086/500578},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006AJ....131.2233R&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002AJ....123..745R,
+   author = {{Richardson}, D. and {Branch}, D. and {Casebeer}, D. and {Millard}, J. and 
+	{Thomas}, R.~C. and {Baron}, E.},
+    title = "{A Comparative Study of the Absolute Magnitude Distributions of Supernovae}",
+  journal = {\aj},
+   eprint = {astro-ph/0112051},
+     year = 2002,
+    month = feb,
+   volume = 123,
+    pages = {745-752},
+      doi = {10.1086/338318},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002AJ....123..745R&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999IAUC.7152....2F,
+   author = {{Filippenko}, A.~V. and {Li}, W.~D. and {Modjaz}, M.},
+    title = "{Supernova 1999bw in NGC 3198}",
+  journal = {\iauc},
+     year = 1999,
+    month = apr,
+   volume = 7152,
+    pages = {2-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1999IAUC.7152....2F&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004PASP..116..326W,
+   author = {{Wagner}, R.~M. and {Vrba}, F.~J. and {Henden}, A.~A. and {Canzian}, B. and 
+	{Luginbuhl}, C.~B. and {Filippenko}, A.~V. and {Chornock}, R. and 
+	{Li}, W. and {Coil}, A.~L. and {Schmidt}, G.~D. and {Smith}, P.~S. and 
+	{Starrfield}, S. and {Klose}, S. and {Tich{\'a}}, J. and {Tich{\'y}}, M. and 
+	{Gorosabel}, J. and {Hudec}, R. and {Simon}, V.},
+    title = "{Discovery and Evolution of an Unusual Luminous Variable Star in NGC 3432 (Supernova 2000ch)}",
+  journal = {\pasp},
+   eprint = {astro-ph/0404035},
+     year = 2004,
+    month = apr,
+   volume = 116,
+    pages = {326-336},
+      doi = {10.1086/382997},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004PASP..116..326W&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001IAUC.7597....3M,
+   author = {{Matheson}, T. and {Calkins}, M.},
+    title = "{Supernova 2001ac in NGC 3504}",
+  journal = {\iauc},
+     year = 2001,
+    month = mar,
+   volume = 7597,
+    pages = {3-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001IAUC.7597....3M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369..390M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
+	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
+	{Gilmore}, G.~F. and {Benn}, C.~R.},
+    title = "{Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
+  journal = {\mnras},
+   eprint = {astro-ph/0603056},
+     year = 2006,
+    month = jun,
+   volume = 369,
+    pages = {390-406},
+      doi = {10.1111/j.1365-2966.2006.10308.x},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369..390M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005A&A...429L..13W,
+   author = {{Weis}, K. and {Bomans}, D.~J.},
+    title = "{SN 2002kg - the brightening of LBV V37 in NGC 2403}",
+  journal = {\aap},
+   eprint = {astro-ph/0411504},
+     year = 2005,
+    month = jan,
+   volume = 429,
+    pages = {L13-L16},
+      doi = {10.1051/0004-6361:200400105},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005A&A...429L..13W&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006astro.ph..3025V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V. and {Humphreys}, R.~M. and 
+	{Chornock}, R. and {Foley}, R. and {Challis}, P.~M.},
+    title = "{The Type IIn Supernova 2002kg: The Outburst of a Luminous Blue Variable Star in NGC 2403}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0603025},
+     year = 2006,
+    month = mar,
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006astro.ph..3025V&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005PASP..117..773V,
+   author = {{van den Bergh}, S. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{Classifications of the Host Galaxies of Supernovae, Set III}",
+  journal = {\pasp},
+   eprint = {astro-ph/0504668},
+     year = 2005,
+    month = aug,
+   volume = 117,
+    pages = {773-782},
+      doi = {10.1086/431435},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005PASP..117..773V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2004AAS...205.7102L,
+   author = {{Leaman}, J. and {Li}, W. and {Filippenko}, A.},
+    title = "{The Supernova Rate in Nearby Galaxies Determined from the Lick Observatory Supernova Search}",
+booktitle = {Bulletin of the American Astronomical Society},
+     year = 2004,
+    month = dec,
+    pages = {1464-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004AAS...205.7102L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999A&A...351..459C,
+   author = {{Cappellaro}, E. and {Evans}, R. and {Turatto}, M.},
+    title = "{A new determination of supernova rates and a comparison with indicators for galactic star formation}",
+  journal = {\aap},
+   eprint = {astro-ph/9904225},
+     year = 1999,
+    month = nov,
+   volume = 351,
+    pages = {459-466},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1999A&A...351..459C&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1985ApJS...57...91E,
+   author = {{Elias}, J.~H. and {Frogel}, J.~A. and {Humphreys}, R.~M.},
+    title = "{M supergiants in the Milky Way and the Magellanic Clouds Colors, spectral types, and luminosities}",
+  journal = {\apjs},
+     year = 1985,
+    month = jan,
+   volume = 57,
+    pages = {91-131},
+      doi = {10.1086/190997},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1985ApJS...57...91E&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006AJ....131.2245Z,
+   author = {{Zhang}, T. and {Wang}, X. and {Li}, W. and {Zhou}, X. and {Ma}, J. and 
+	{Jiang}, Z. and {Chen}, J.},
+    title = "{Optical Photometry of the Type II-P Supernova 2004dj in NGC 2403}",
+  journal = {\aj},
+   eprint = {astro-ph/0512526},
+     year = 2006,
+    month = apr,
+   volume = 131,
+    pages = {2245-2255},
+      doi = {10.1086/500972},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006AJ....131.2245Z&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...626L..89W,
+   author = {{Wang}, X. and {Yang}, Y. and {Zhang}, T. and {Ma}, J. and {Zhou}, X. and 
+	{Li}, W. and {Lou}, Y.-Q. and {Li}, Z.},
+    title = "{The Progenitor of SN 2004dj in a Star Cluster}",
+  journal = {\apjl},
+   eprint = {astro-ph/0505305},
+     year = 2005,
+    month = jun,
+   volume = 626,
+    pages = {L89-L92},
+      doi = {10.1086/431903},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...626L..89W&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004ApJ...615L.113M,
+   author = {{Ma{\'{\i}}z-Apell{\'a}niz}, J. and {Bond}, H.~E. and {Siegel}, M.~H. and 
+	{Lipkin}, Y. and {Maoz}, D. and {Ofek}, E.~O. and {Poznanski}, D.
+	},
+    title = "{The Progenitor of the Type II-P SN 2004dj in NGC 2403}",
+  journal = {\apjl},
+   eprint = {astro-ph/0408265},
+     year = 2004,
+    month = nov,
+   volume = 615,
+    pages = {L113-L116},
+      doi = {10.1086/426120},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...615L.113M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2003ApJ...594..247L,
+   author = {{Leonard}, D.~C. and {Kanbur}, S.~M. and {Ngeow}, C.~C. and 
+	{Tanvir}, N.~R.},
+    title = "{The Cepheid Distance to NGC 1637: A Direct Test of the Expanding Photosphere Method Distance to SN 1999em}",
+  journal = {\apj},
+   eprint = {astro-ph/0305259},
+     year = 2003,
+    month = sep,
+   volume = 594,
+    pages = {247-278},
+      doi = {10.1086/376831},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ApJ...594..247L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2000ApJ...545..444B,
+   author = {{Baron}, E. and {Branch}, D. and {Hauschildt}, P.~H. and {Filippenko}, A.~V. and 
+	{Kirshner}, R.~P. and {Challis}, P.~M. and {Jha}, S. and {Chevalier}, R. and 
+	{Fransson}, C. and {Lundqvist}, P. and {Garnavich}, P. and {Leibundgut}, B. and 
+	{McCray}, R. and {Michael}, E. and {Panagia}, N. and {Phillips}, M.~M. and 
+	{Pun}, C.~S.~J. and {Schmidt}, B. and {Sonneborn}, G. and {Suntzeff}, N.~B. and 
+	{Wang}, L. and {Wheeler}, J.~C.},
+    title = "{Preliminary Spectral Analysis of the Type II Supernova 1999EM}",
+  journal = {\apj},
+   eprint = {astro-ph/0010614},
+     year = 2000,
+    month = dec,
+   volume = 545,
+    pages = {444-448},
+      doi = {10.1086/317795},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000ApJ...545..444B&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2002A&A...389...19P,
+   author = {{Paturel}, G. and {Teerikorpi}, P. and {Theureau}, G. and {Fouqu{\'e}}, P. and 
+	{Musella}, I. and {Terry}, J.~N.},
+    title = "{Calibration of the distance scale from galactic Cepheids. II. Use of the HIPPARCOS calibration}",
+  journal = {\aap},
+   eprint = {astro-ph/0204328},
+     year = 2002,
+    month = jul,
+   volume = 389,
+    pages = {19-28},
+      doi = {10.1051/0004-6361:20020492},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002A&A...389...19P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...628..973L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
+	{Plez}, B. and {Josselin}, E. and {Maeder}, A. and {Meynet}, G.
+	},
+    title = "{The Effective Temperature Scale of Galactic Red Supergiants: Cool, but Not As Cool As We Thought}",
+  journal = {\apj},
+   eprint = {astro-ph/0504337},
+     year = 2005,
+    month = aug,
+   volume = 628,
+    pages = {973-985},
+      doi = {10.1086/430901},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...628..973L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005MNRAS.360..288M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
+    title = "{Hubble Space Telescope imaging of the progenitor sites of six nearby core-collapse supernovae}",
+  journal = {\mnras},
+   eprint = {astro-ph/0501323},
+     year = 2005,
+    month = jun,
+   volume = 360,
+    pages = {288-304},
+      doi = {10.1111/j.1365-2966.2005.09034.x},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005MNRAS.360..288M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000ApJ...530..625T,
+   author = {{Tonry}, J.~L. and {Blakeslee}, J.~P. and {Ajhar}, E.~A. and 
+	{Dressler}, A.},
+    title = "{The Surface Brightness Fluctuation Survey of Galaxy Distances. II. Local and Large-Scale Flows}",
+  journal = {\apj},
+   eprint = {astro-ph/9907062},
+     year = 2000,
+    month = feb,
+   volume = 530,
+    pages = {625-651},
+      doi = {10.1086/308409},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000ApJ...530..625T&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002PASP..114..833P,
+   author = {{Poznanski}, D. and {Gal-Yam}, A. and {Maoz}, D. and {Filippenko}, A.~V. and 
+	{Leonard}, D.~C. and {Matheson}, T.},
+    title = "{Not Color-Blind: Using Multiband Photometry to Classify Supernovae}",
+  journal = {\pasp},
+   eprint = {astro-ph/0202198},
+ keywords = {Stars: Supernovae: General, Techniques: Photometric},
+     year = 2002,
+    month = aug,
+   volume = 114,
+    pages = {833-845},
+      doi = {10.1086/341741},
+   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..833P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007MNRAS.382.1169P,
+   author = {{Poznanski}, D. and {Maoz}, D. and {Yasuda}, N. and {Foley}, R.~J. and 
+	{Doi}, M. and {Filippenko}, A.~V. and {Fukugita}, M. and {Gal-Yam}, A. and 
+	{Jannuzi}, B.~T. and {Morokuma}, T. and {Oda}, T. and {Schweiker}, H. and 
+	{Sharon}, K. and {Silverman}, J.~M. and {Totani}, T.},
+    title = "{Supernovae in the Subaru Deep Field: an initial sample and Type Ia rate out to redshift 1.6}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0707.0393},
+ keywords = {surveys, supernovae: general, cosmology: miscellaneous, cosmology: observations},
+     year = 2007,
+    month = dec,
+   volume = 382,
+    pages = {1169-1186},
+      doi = {10.1111/j.1365-2966.2007.12424.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.382.1169P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ApJ...694.1067P,
+   author = {{Poznanski}, D. and {Butler}, N. and {Filippenko}, A.~V. and 
+	{Ganeshalingam}, M. and {Li}, W. and {Bloom}, J.~S. and {Chornock}, R. and 
+	{Foley}, R.~J. and {Nugent}, P.~E. and {Silverman}, J.~M. and 
+	{Cenko}, S.~B. and {Gates}, E.~L. and {Leonard}, D.~C. and {Miller}, A.~A. and 
+	{Modjaz}, M. and {Serduke}, F.~J.~D. and {Smith}, N. and {Swift}, B.~J. and 
+	{Wong}, D.~S.},
+    title = "{Improved Standardization of Type II-P Supernovae: Application to an Expanded Sample}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0810.4923},
+ keywords = {cosmology: observations, distance scale, dust, extinction, supernovae: general},
+     year = 2009,
+    month = apr,
+   volume = 694,
+    pages = {1067-1079},
+      doi = {10.1088/0004-637X/694/2/1067},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...694.1067P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012MNRAS.426.1465P,
+   author = {{Poznanski}, D. and {Prochaska}, J.~X. and {Bloom}, J.~S.},
+    title = "{An empirical relation between sodium absorption and dust extinction}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1206.6107},
+ primaryClass = "astro-ph.IM",
+ keywords = {ISM: atoms, dust, extinction},
+     year = 2012,
+    month = oct,
+   volume = 426,
+    pages = {1465-1474},
+      doi = {10.1111/j.1365-2966.2012.21796.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.426.1465P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.415L..81P,
+   author = {{Poznanski}, D. and {Ganeshalingam}, M. and {Silverman}, J.~M. and 
+	{Filippenko}, A.~V.},
+    title = "{Low-resolution sodium D absorption is a bad proxy for extinction}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1106.1469},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, dust, extinction, galaxies: ISM},
+     year = 2011,
+    month = jul,
+   volume = 415,
+    pages = {L81-L84},
+      doi = {10.1111/j.1745-3933.2011.01084.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.415L..81P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007AJ....134.1285P,
+   author = {{Poznanski}, D. and {Maoz}, D. and {Gal-Yam}, A.},
+    title = "{Bayesian Single-Epoch Photometric Classification of Supernovae}",
+  journal = {\aj},
+   eprint = {astro-ph/0610129},
+ keywords = {supernovae: general},
+     year = 2007,
+    month = sep,
+   volume = 134,
+    pages = {1285-1297},
+      doi = {10.1086/520956},
+   adsurl = {http://adsabs.harvard.edu/abs/2007AJ....134.1285P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010Sci...327...58P,
+   author = {{Poznanski}, D. and {Chornock}, R. and {Nugent}, P.~E. and {Bloom}, J.~S. and 
+	{Filippenko}, A.~V. and {Ganeshalingam}, M. and {Leonard}, D.~C. and 
+	{Li}, W. and {Thomas}, R.~C.},
+    title = "{An Unusually Fast-Evolving Supernova}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {0911.2699},
+ primaryClass = "astro-ph.SR",
+     year = 2010,
+    month = jan,
+   volume = 327,
+    pages = {58-},
+      doi = {10.1126/science.1181709},
+   adsurl = {http://adsabs.harvard.edu/abs/2010Sci...327...58P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...721..956P,
+   author = {{Poznanski}, D. and {Nugent}, P.~E. and {Filippenko}, A.~V.},
+    title = "{Type II-P Supernovae as Standard Candles: The SDSS-II Sample Revisited}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1008.0877},
+ primaryClass = "astro-ph.CO",
+ keywords = {cosmology: observations, distance scale, supernovae: general},
+     year = 2010,
+    month = oct,
+   volume = 721,
+    pages = {956-959},
+      doi = {10.1088/0004-637X/721/2/956},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...721..956P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436.3224P,
+   author = {{Poznanski}, D.},
+    title = "{An emerging coherent picture of red supergiant supernova explosions}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1304.4967},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general},
+     year = 2013,
+    month = dec,
+   volume = 436,
+    pages = {3224-3230},
+      doi = {10.1093/mnras/stt1800},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3224P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115....1V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images}",
+  journal = {\pasp},
+   eprint = {astro-ph/0210347},
+     year = 2003,
+    month = jan,
+   volume = 115,
+    pages = {1-20},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003PASP..115....1V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.347...74P,
+   author = {{Pastorello}, A. and {Zampieri}, L. and {Turatto}, M. and {Cappellaro}, E. and 
+	{Meikle}, W.~P.~S. and {Benetti}, S. and {Branch}, D. and {Baron}, E. and 
+	{Patat}, F. and {Armstrong}, M. and {Altavilla}, G. and {Salvo}, M. and 
+	{Riello}, M.},
+    title = "{Low-luminosity Type II supernovae: spectroscopic and photometric evolution}",
+  journal = {\mnras},
+   eprint = {astro-ph/0309264},
+     year = 2004,
+    month = jan,
+   volume = 347,
+    pages = {74-94},
+      doi = {10.1111/j.1365-2966.2004.07173.x},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.347...74P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2001ApJ...556L..29S,
+   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Trentham}, N. and 
+	{Tout}, C.~A. and {Frayn}, C.~M.},
+    title = "{An Upper Mass Limit for the Progenitor of the Type II-P Supernova SN 1999gi}",
+  journal = {\apjl},
+   eprint = {astro-ph/0105453},
+     year = 2001,
+    month = jul,
+   volume = 556,
+    pages = {L29-L32},
+      doi = {10.1086/322868},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001ApJ...556L..29S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@PHDTHESIS{2006PhDTHendry,
+   author = {{Hendry}, M.~A.},
+   school = {, University of Cambridge, (2006)},
+     year = 2006,
+    month = February,
+}
+
+@ARTICLE{2001NewAR..45..105I,
+   author = {{Irwin}, M. and {Lewis}, J.},
+    title = "{INT WFS pipeline processing}",
+  journal = {New Astronomy Review},
+     year = 2001,
+    month = jan,
+   volume = 45,
+    pages = {105-110},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2001NewAR..45..105I&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.368.1169P,
+   author = {{Pozzo}, M. and {Meikle}, W.~P.~S. and {Rayner}, J.~T. and {Joseph}, R.~D. and 
+	{Filippenko}, A.~V. and {Foley}, R.~J. and {Li}, W. and {Mattila}, S. and 
+	{Sollerman}, J.},
+    title = "{Optical and infrared observations of the TypeIIP SN2002hh from days 3 to 397}",
+  journal = {\mnras},
+   eprint = {astro-ph/0602372},
+     year = 2006,
+    month = may,
+   volume = 368,
+    pages = {1169-1195},
+      doi = {10.1111/j.1365-2966.2006.10204.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.368.1169P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000A&A...362..544K,
+   author = {{Karachentsev}, I.~D. and {Sharina}, M.~E. and {Huchtmeier}, W.~K.
+	},
+    title = "{A group of galaxies around the giant spiral NGC 6946}",
+  journal = {\aap},
+   eprint = {astro-ph/0010148},
+     year = 2000,
+    month = oct,
+   volume = 362,
+    pages = {544-556},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000A&A...362..544K&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014AN....335..841T,
+   author = {{Tomasella }, L. and {Benetti}, S. and {Cappellaro}, E. and 
+	{Pastorello}, A. and {Turatto}, M. and {Barbon}, R. and {Elias-Rosa}, N. and 
+	{Harutyunyan}, A. and {Ochner}, P. and {Tartaglia}, L. and {Valenti}, S.
+	},
+    title = "{Asiago Supernova classification program: Blowing out the first two hundred candles}",
+  journal = {Astronomische Nachrichten},
+archivePrefix = "arXiv",
+   eprint = {1403.7233},
+ primaryClass = "astro-ph.HE",
+ keywords = {catalogs, supernovae: general, surveys},
+     year = 2014,
+    month = oct,
+   volume = 335,
+    pages = {841},
+      doi = {10.1002/asna.201412068},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AN....335..841T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006MNRAS.369.1303H,
+   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Crockett}, R.~M. and 
+	{Maund}, J.~R. and {Gal-Yam}, A. and {Moon}, D.-S. and {Cenko}, S.~B. and 
+	{Fox}, D.~W. and {Kudritzki}, R.~P. and {Benn}, C.~R. and {{\O}stensen}, R.
+	},
+    title = "{SN 2004A: another Type II-P supernova with a red supergiant progenitor}",
+  journal = {\mnras},
+   eprint = {astro-ph/0603670},
+     year = 2006,
+    month = jul,
+   volume = 369,
+    pages = {1303-1320},
+      doi = {10.1111/j.1365-2966.2006.10374.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369.1303H&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.359..906H,
+   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Maund}, J.~R.and {Pastorello}, A. and 
+	{Zampieri}, L. and {Benetti}, S. and {Turatto}, M. and {Cappellaro}, E. and 
+	{et al.}
+        },
+    title = "{A study of the Type II-P supernova 2003gd in M74}",
+  journal = {\mnras},
+   eprint = {astro-ph/0501341},
+     year = 2005,
+    month = may,
+   volume = 359,
+    pages = {906-926},
+      doi = {10.1111/j.1365-2966.2005.08928.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005MNRAS.359..906H&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1987AJ.....94.1156H,
+   author = {{Humphreys}, R.~M. and {Aaronson}, M.},
+    title = "{The visually brightest early-type supergiants in the spiral galaxies NGC 2403, M81, and M101}",
+  journal = {\aj},
+     year = 1987,
+    month = nov,
+   volume = 94,
+    pages = {1156-1168},
+      doi = {10.1086/114553},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1987AJ.....94.1156H&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2006MNRAS.370..513S,
+   author = {{Smith}, L.~J. and {Westmoquette}, M.~S. and {Gallagher}, J.~S. and 
+	{O'Connell}, R.~W. and {Rosario}, D.~J. and {de Grijs}, R.},
+    title = "{HST/STIS optical spectroscopy of five super star clusters in the starburst galaxy M82}",
+  journal = {\mnras},
+   eprint = {astro-ph/0605095},
+     year = 2006,
+    month = jul,
+   volume = 370,
+    pages = {513-527},
+      doi = {10.1111/j.1365-2966.2006.10507.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.370..513S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369.1780V,
+   author = {{Vink{\'o}}, J. and {Tak{\'a}ts}, K. and {S{\'a}rneczky}, K. and 
+	{Szab{\'o}}, G.~M. and {et al.}
+	},
+    title = "{The first year of SN 2004dj in NGC 2403}",
+  journal = {\mnras},
+   eprint = {astro-ph/0604230},
+     year = 2006,
+    month = jul,
+   volume = 369,
+    pages = {1780-1796},
+      doi = {10.1111/j.1365-2966.2006.10416.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369.1780V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.438..368T,
+   author = {{Tak{\'a}ts}, K. and {Pumo}, M.~L. and {Elias-Rosa}, N. and 
+	{Pastorello}, A. and {Pignata}, G. and {Paillas}, E. and {Zampieri}, L. and 
+	{Anderson}, J.~P. and {Vink{\'o}}, J. and {Benetti}, S. and 
+	{Botticella}, M.-T. and {Bufano}, F. and {Campillay}, A. and 
+	{Cartier}, R. and {Ergon}, M. and {Folatelli}, G. and {Foley}, R.~J. and 
+	{F{\"o}rster}, F. and {Hamuy}, M. and {Hentunen}, V.-P. and 
+	{Kankare}, E. and {Leloudas}, G. and {Morrell}, N. and {Nissinen}, M. and 
+	{Phillips}, M.~M. and {Smartt}, S.~J. and {Stritzinger}, M. and 
+	{Taubenberger}, S. and {Valenti}, S. and {Van Dyk}, S.~D. and 
+	{Haislip}, J.~B. and {LaCluyze}, A.~P. and {Moore}, J.~P. and 
+	{Reichart}, D.},
+    title = "{SN 2009N: linking normal and subluminous Type II-P SNe}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1311.2525},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2008in, supernovae: individual: SN 2009N, galaxies: individual: NGC 4487},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {368-387},
+      doi = {10.1093/mnras/stt2203},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..368T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009CBET.1656....1L,
+   author = {{Li}, W. and {Cenko}, S.~B. and {Filippenko}, A.~V.},
+    title = "{Supernova 2009H in NGC 1084}",
+  journal = {Central Bureau Electronic Telegrams},
+     year = 2009,
+    month = jan,
+   volume = 1656,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2009CBET.1656....1L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005PASP..117..121L,
+   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C.
+	},
+    title = "{On the Progenitor of the Type II Supernova 2004et in NGC 6946}",
+  journal = {\pasp},
+   eprint = {astro-ph/0412487},
+     year = 2005,
+    month = feb,
+   volume = 117,
+    pages = {121-131},
+      doi = {10.1086/428278},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005PASP..117..121L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001A&A...366..538L,
+   author = {{Lejeune}, T. and {Schaerer}, D.},
+    title = "{Database of Geneva stellar evolution tracks and isochrones for (UBV)_{J}(RI)_{C} JHKLL'M, HST-WFPC2, Geneva and Washington photometric systems}",
+  journal = {\aap},
+   eprint = {astro-ph/0011497},
+     year = 2001,
+    month = feb,
+   volume = 366,
+    pages = {538-546},
+      doi = {10.1051/0004-6361:20000214},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2001A&A...366..538L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{
+W2007astro.ph..1152E,
+   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
+    title = "{Ruling out a massive-assymptoic giant-branch star as the progenitor of supernova 2005cs}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0701152},
+     year = 2007,
+    month = jan,
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2007astro.ph..1152E&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...769...99B,
+   author = {{Brown}, J.~M. and {Woosley}, S.~E.},
+    title = "{Nucleosynthetic Constraints on the Mass of the Heaviest Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1302.6973},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: abundances, hydrodynamics, nuclear reactions, nucleosynthesis, abundances, stars: abundances, supernovae: general},
+     year = 2013,
+    month = jun,
+   volume = 769,
+      eid = {99},
+    pages = {99},
+      doi = {10.1088/0004-637X/769/2/99},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769...99B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006astro.ph.12541B,
+   author = {{Brown}, P.~J. and {Dessart}, L. and {Holland}, S.~T. and {Immler}, S. and 
+	{Landsman}, W. and {Blondin}, S. and {Blustin}, A.~J. and {Breeveld}, A. and 
+	{Dewangan}, G.~C. and {Gehrels}, N. and {Hutchins}, R.~B. and 
+	{Kirshner}, R.~P. and {Mason}, K.~O. and {Mazzali}, P.~A. and 
+	{Milne}, P. and {Modjaz}, M. and {Roming}, P.~W.~A.},
+    title = "{Early Ultraviolet, Optical and X-Ray Observations of the Type IIP SN 2005cs in M51 with Swift}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0612541},
+     year = 2006,
+    month = dec,
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006astro.ph.12541B&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...460..769T,
+   author = {{Tsvetkov}, D.~Y. and {Volnova}, A.~A. and {Shulga}, A.~P. and 
+	{Korotkiy}, S.~A. and {Elmhamdi}, A. and {Danziger}, I.~J. and 
+	{Ereshko}, M.~V.},
+    title = "{Observations and analysis of two type IIP supernovae: the intrinsically faint object SN 2005cs and the ambiguous object SN 2005ay}",
+  journal = {\aap},
+   eprint = {astro-ph/0605184},
+     year = 2006,
+    month = dec,
+   volume = 460,
+    pages = {769-776},
+      doi = {10.1051/0004-6361:20065704},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006A&A...460..769T&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.372.1735T,
+   author = {{Tak{\'a}ts}, K. and {Vink{\'o}}, J.},
+    title = "{Distance estimate and progenitor characteristics of SN 2005cs in M51}",
+  journal = {\mnras},
+   eprint = {astro-ph/0608430},
+     year = 2006,
+    month = nov,
+   volume = 372,
+    pages = {1735-1740},
+      doi = {10.1111/j.1365-2966.2006.10974.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.372.1735T&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006astro.ph.11186D,
+   author = {{Danziger}, I.~J. and {Elmhamdi}, A. and {Tsvetkov}, D.~Y. and 
+	{Volnova}, A.~A. and {Shulga}, A.~P.},
+    title = "{SNe 2005ay and 2005cs: Two interesting II-Plateau events}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0611186},
+     year = 2006,
+    month = nov,
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006astro.ph.11186D&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006ApJ...641.1060L,
+   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
+	{Jha}, S. and {Bloom}, J.~S. and {Riess}, A.~G. and {Livio}, M.
+	},
+    title = "{Identification of the Red Supergiant Progenitor of Supernova 2005cs: Do the Progenitors of Type II-P Supernovae Have Low Mass?}",
+  journal = {\apj},
+   eprint = {astro-ph/0507394},
+     year = 2006,
+    month = apr,
+   volume = 641,
+    pages = {1060-1070},
+      doi = {10.1086/499916},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006ApJ...641.1060L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.364L..33M,
+   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Danziger}, I.~J.},
+    title = "{The progenitor of SN 2005cs in the Whirlpool Galaxy}",
+  journal = {\mnras},
+   eprint = {astro-ph/0507502},
+     year = 2005,
+    month = nov,
+   volume = 364,
+    pages = {L33-L37},
+      doi = {10.1111/j.1745-3933.2005.00100.x},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005MNRAS.364L..33M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006CBET..636....1B,
+   author = {{Blondin}, S. and {Masters}, K. and {Modjaz}, M. and {Kirshner}, R. and 
+	{Challis}, P. and {Matheson}, T. and {Berlind}, P.},
+    title = "{2006fp in UGC 12182}",
+  journal = {Central Bureau Electronic Telegrams, 636, 1 (2006).~ Edited by Green, D.~W.~E.},
+     year = 2006,
+    month = sep,
+   volume = 636,
+    pages = {1-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006CBET..636....1B&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{dJ,
+   author = {{de Jager}, C. and {Nieuwenhuijzen}, H. and {van der Hucht}, K.~A.
+	},
+    title = "{Mass loss rates in the Hertzsprung-Russell diagram}",
+  journal = {\aaps},
+     year = 1988,
+    month = feb,
+   volume = 72,
+    pages = {259-289},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1988A&AS...72..259D&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{red2blue,
+   author = {{Langer}, N. and {Maeder}, A.},
+    title = "{The problem of the blue-to-red supergiant ratio in galaxies.}",
+  journal = {\aap},
+     year = 1995,
+    month = mar,
+   volume = 295,
+    pages = {685-+},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995A&A...295..685L&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{VKL2001,
+   author = {{Vink}, J.~S. and {de Koter}, A. and {Lamers}, H.~J.~G.~L.~M.
+	},
+    title = "{Mass-loss predictions for O and B stars as a function of metallicity}",
+  journal = {\aap},
+   eprint = {astro-ph/0101509},
+     year = 2001,
+    month = apr,
+   volume = 369,
+    pages = {574-588},
+      doi = {10.1051/0004-6361:20010127},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001A&A...369..574V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{E03,
+   author = {{Eldridge}, J.~J. and {Tout}, C.~A.},
+    title = "{A more detailed look at the opacities for enriched carbon and oxygen mixtures}",
+  journal = {\mnras},
+   eprint = {astro-ph/0310255},
+     year = 2004,
+    month = feb,
+   volume = 348,
+    pages = {201-206},
+      doi = {10.1111/j.1365-2966.2004.07344.x},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2004MNRAS.348..201E&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+@ARTICLE{MM03,
+   author = {{Meynet}, G. and {Maeder}, A.},
+    title = "{Stellar evolution with rotation. X. Wolf-Rayet star populations at solar metallicity}",
+  journal = {\aap},
+   eprint = {astro-ph/0304069},
+     year = 2003,
+    month = jun,
+   volume = 404,
+    pages = {975-990},
+      doi = {10.1051/0004-6361:20030512},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003A&A...404..975M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{FA05,
+   author = {{Ferguson}, J.~W. and {Alexander}, D.~R. and {Allard}, F. and 
+	{Barman}, T. and {Bodnarik}, J.~G. and {Hauschildt}, P.~H. and 
+	{Heffner-Wong}, A. and {Tamanai}, A.},
+    title = "{Low-Temperature Opacities}",
+  journal = {\apj},
+   eprint = {astro-ph/0502045},
+     year = 2005,
+    month = apr,
+   volume = 623,
+    pages = {585-596},
+      doi = {10.1086/428642},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2005ApJ...623..585F&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{schaller,
+   author = {{Schaller}, G. and {Schaerer}, D. and {Meynet}, G. and {Maeder}, A.
+	},
+    title = "{New grids of stellar models from 0.8 to 120 solar masses at Z = 0.020 and Z = 0.001}",
+  journal = {\aaps},
+     year = 1992,
+    month = dec,
+   volume = 96,
+    pages = {269-331},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992A&AS...96..269S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+@INPROCEEDINGS{someone,
+   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J.},
+    title = "{The Solar Chemical Composition}",
+booktitle = {ASP Conf. Ser. 336: Cosmic Abundances as Records of Stellar Evolution and Nucleosynthesis},
+     year = 2005,
+   editor = {{Barnes}, III, T.~G. and {Bash}, F.~N.},
+    month = sep,
+    pages = {25-+},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2005ASPC..336...25A&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+@ARTICLE{E71,
+   author = {{Eggleton}, P.~P.},
+    title = "{The evolution of low mass stars}",
+  journal = {\mnras},
+     year = 1971,
+   volume = 151,
+    pages = {351-+},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1971MNRAS.151..351E&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+@ARTICLE{P95,
+   author = {{Pols}, O.~R. and {Tout}, C.~A. and {Eggleton}, P.~P. and {Han}, Z.
+	},
+    title = "{Approximate input physics for stellar modelling}",
+  journal = {\mnras},
+   eprint = {astro-ph/9504025},
+     year = 1995,
+    month = jun,
+   volume = 274,
+    pages = {964-974},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995MNRAS.274..964P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.370.1817S,
+   author = {{Stancliffe}, R.~J.},
+    title = "{Does simultaneous solution matter for stellar evolution codes?}",
+  journal = {\mnras},
+   eprint = {astro-ph/0605583},
+     year = 2006,
+    month = aug,
+   volume = 370,
+    pages = {1817-1822},
+      doi = {10.1111/j.1365-2966.2006.10595.x},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006MNRAS.370.1817S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006astro.ph..8410B,
+   author = {{Bresolin}, F.},
+    title = "{Measuring Chemical Abundances in Extragalactic Metal-Rich HII Regions}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0608410},
+     year = 2006,
+    month = aug,
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006astro.ph..8410B&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998AJ....116.2805V,
+   author = {{van Zee}, L. and {Salzer}, J.~J. and {Haynes}, M.~P. and {O'Donoghue}, A.~A. and 
+	{Balonek}, T.~J.},
+    title = "{Spectroscopy of Outlying H II Regions in Spiral Galaxies: Abundances and Radial Gradients}",
+  journal = {\aj},
+   eprint = {astro-ph/9808315},
+     year = 1998,
+    month = dec,
+   volume = 116,
+    pages = {2805-2833},
+      doi = {10.1086/300647},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....116.2805V&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...631..231P,
+   author = {{Pilyugin}, L.~S. and {Thuan}, T.~X.},
+    title = "{Oxygen Abundance Determination in H II Regions: The Strong Line Intensities-Abundance Calibration Revisited}",
+  journal = {\apj},
+     year = 2005,
+    month = sep,
+   volume = 631,
+    pages = {231-243},
+      doi = {10.1086/432408},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...631..231P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004ApJ...615..228B,
+   author = {{Bresolin}, F. and {Garnett}, D.~R. and {Kennicutt}, Jr., R.~C.
+	},
+    title = "{Abundances of Metal-rich H II Regions in M51}",
+  journal = {\apj},
+   eprint = {astro-ph/0407065},
+     year = 2004,
+    month = nov,
+   volume = 615,
+    pages = {228-241},
+      doi = {10.1086/424377},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...615..228B&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.348L..59P,
+   author = {{Pettini}, M. and {Pagel}, B.~E.~J.},
+    title = "{[OIII]/[NII] as an abundance indicator at high redshift}",
+  journal = {\mnras},
+   eprint = {astro-ph/0401128},
+     year = 2004,
+    month = mar,
+   volume = 348,
+    pages = {L59-L63},
+      doi = {10.1111/j.1365-2966.2004.07591.x},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.348L..59P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJS..142...35K,
+   author = {{Kewley}, L.~J. and {Dopita}, M.~A.},
+    title = "{Using Strong Lines to Estimate Abundances in Extragalactic H II Regions and Starburst Galaxies}",
+  journal = {\apjs},
+   eprint = {astro-ph/0206495},
+     year = 2002,
+    month = sep,
+   volume = 142,
+    pages = {35-52},
+      doi = {10.1086/341326},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJS..142...35K&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002A&A...395..519T,
+   author = {{Trundle}, C. and {Dufton}, P.~L. and {Lennon}, D.~J. and {Smartt}, S.~J. and 
+	{Urbaneja}, M.~A.},
+    title = "{Chemical composition of B-type supergiants in the OB 8, OB 10, OB 48, OB 78 associations of M 31}",
+  journal = {\aap},
+   eprint = {astro-ph/0207198},
+     year = 2002,
+    month = nov,
+   volume = 395,
+    pages = {519-533},
+      doi = {10.1051/0004-6361:20021044},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002A&A...395..519T&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1994ApJ...420...87Z,
+   author = {{Zaritsky}, D. and {Kennicutt}, Jr., R.~C. and {Huchra}, J.~P.
+	},
+    title = "{H II regions and the abundance properties of spiral galaxies}",
+  journal = {\apj},
+     year = 1994,
+    month = jan,
+   volume = 420,
+    pages = {87-109},
+      doi = {10.1086/173544},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1994ApJ...420...87Z&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997MNRAS.288..715R,
+   author = {{Roy}, J.-R. and {Walsh}, J.~R.},
+    title = "{The abundance gradient of NGC 1365: evidence for a recently formed bar in an archetypal barred spiral galaxy?}",
+  journal = {\mnras},
+   eprint = {astro-ph/9705032},
+     year = 1997,
+    month = jul,
+   volume = 288,
+    pages = {715-725},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1997MNRAS.288..715R&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004A&A...425..849P,
+   author = {{Pilyugin}, L.~S. and {V{\'{\i}}lchez}, J.~M. and {Contini}, T.
+	},
+    title = "{Oxygen and nitrogen abundances in nearby galaxies. Correlations between oxygen abundance and macroscopic properties}",
+  journal = {\aap},
+   eprint = {astro-ph/0407014},
+     year = 2004,
+    month = oct,
+   volume = 425,
+    pages = {849-869},
+      doi = {10.1051/0004-6361:20034522},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004A&A...425..849P&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004ApJ...606..862O,
+   author = {{Origlia}, L. and {Ranalli}, P. and {Comastri}, A. and {Maiolino}, R.
+	},
+    title = "{Stellar and Gaseous Abundances in M82}",
+  journal = {\apj},
+   eprint = {astro-ph/0401361},
+     year = 2004,
+    month = may,
+   volume = 606,
+    pages = {862-868},
+      doi = {10.1086/383018},
+   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2004ApJ...606..862O&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997ApJ...489...63G,
+   author = {{Garnett}, D.~R. and {Shields}, G.~A. and {Skillman}, E.~D. and 
+	{Sagan}, S.~P. and {Dufour}, R.~J.},
+    title = "{Interstellar Abundance Gradients in NGC 2403: Comparison to M33}",
+  journal = {\apj},
+     year = 1997,
+    month = nov,
+   volume = 489,
+    pages = {63-+},
+      doi = {10.1086/304775},
+   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=1997ApJ...489...63G&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004MNRAS.353...87E,
+   author = {{Eldridge}, J.~J. and {Tout}, C.~A.},
+    title = "{The progenitors of core-collapse supernovae}",
+  journal = {\mnras},
+   eprint = {astro-ph/0405408},
+     year = 2004,
+    month = sep,
+   volume = 353,
+    pages = {87-97},
+      doi = {10.1111/j.1365-2966.2004.08041.x},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.353...87E&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003ARA&A..41...15M,
+   author = {{Massey}, P.},
+    title = "{MASSIVE STARS IN THE LOCAL GROUP: Implications for Stellar Evolution and Star Formation}",
+  journal = {\araa},
+     year = 2003,
+   volume = 41,
+    pages = {15-56},
+      doi = {10.1146/annurev.astro.41.071601.170033},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ARA&A..41...15M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...456.1131M,
+   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
+	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
+	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
+	{Yoon}, S.-C.},
+    title = "{The VLT-FLAMES survey of massive stars: mass loss and rotation of early-type stars in the SMC}",
+  journal = {\aap},
+   eprint = {astro-ph/0606403},
+     year = 2006,
+    month = sep,
+   volume = 456,
+    pages = {1131-1151},
+      doi = {10.1051/0004-6361:20064995},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006A&A...456.1131M&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007astro.ph..1246M,
+   author = {{Modjaz}, M. and {Kewley}, L. and {Kirshner}, R.~P. and {Stanek}, K.~Z. and 
+	{Challis}, P. and {Garnavich}, P.~M. and {Greene}, J.~E. and 
+	{Prieto}, J.~L.},
+    title = "{Measured Metallicities at the Sites of Nearby Broad-Lined Type Ic Supernovae and Implications for the SN-GRB Connection}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0701246},
+     year = 2007,
+    month = jan,
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2007astro.ph..1246M&db_key=PRE},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...635..311U,
+   author = {{Urbaneja}, M.~A. and {Herrero}, A. and {Kudritzki}, R.-P. and 
+	{Najarro}, F. and {Smartt}, S.~J. and {Puls}, J. and {Lennon}, D.~J. and 
+	{Corral}, L.~J.},
+    title = "{Blue Luminous Stars in Nearby Galaxies: Quantitative Spectral Analysis of M33 B-Type Supergiant Stars}",
+  journal = {\apj},
+     year = 2005,
+    month = dec,
+   volume = 635,
+    pages = {311-335},
+      doi = {10.1086/497528},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...635..311U&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...448..351S,
+   author = {{Sim{\'o}n-D{\'{\i}}az}, S. and {Herrero}, A. and {Esteban}, C. and 
+	{Najarro}, F.},
+    title = "{Detailed spectroscopic analysis of the Trapezium cluster stars inside the Orion nebula. Rotational velocities, stellar parameters, and oxygen abundances}",
+  journal = {\aap},
+     year = 2006,
+    month = mar,
+   volume = 448,
+    pages = {351-366},
+      doi = {10.1051/0004-6361:20053066},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006A&A...448..351S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001ApJ...554L.221S,
+   author = {{Sofia}, U.~J. and {Meyer}, D.~M.},
+    title = "{Interstellar Abundance Standards Revisited}",
+  journal = {\apjl},
+     year = 2001,
+    month = jun,
+   volume = 554,
+    pages = {L221-L224},
+      doi = {10.1086/321715},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001ApJ...554L.221S&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004A&A...417..751A,
+   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J. and {Allende Prieto}, C. and 
+	{Kiselman}, D.},
+    title = "{Line formation in solar granulation. IV. [O I], O I and OH lines and the photospheric O abundance}",
+  journal = {\aap},
+   eprint = {astro-ph/0312290},
+     year = 2004,
+    month = apr,
+   volume = 417,
+    pages = {751-768},
+      doi = {10.1051/0004-6361:20034328},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004A&A...417..751A&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2005ASPC..336...25A,
+   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J.},
+    title = "{The Solar Chemical Composition}",
+booktitle = {ASP Conf. Ser. 336: Cosmic Abundances as Records of Stellar Evolution and Nucleosynthesis},
+     year = 2005,
+   editor = {{Barnes}, III, T.~G. and {Bash}, F.~N.},
+    month = sep,
+    pages = {25-+},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ASPC..336...25A&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004ApJ...604..362D,
+   author = {{Daflon}, S. and {Cunha}, K. and {Butler}, K.},
+    title = "{Chemical Abundances for a Sample of Southern OB Stars}",
+  journal = {\apj},
+     year = 2004,
+    month = mar,
+   volume = 604,
+    pages = {362-371},
+      doi = {10.1086/381683},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...604..362D&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1993MNRAS.262..545K,
+   author = {{Kroupa}, P. and {Tout}, C.~A. and {Gilmore}, G.},
+    title = "{The distribution of low-mass stars in the Galactic disc}",
+  journal = {\mnras},
+     year = 1993,
+    month = jun,
+   volume = 262,
+    pages = {545-587},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1993MNRAS.262..545K&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003A&A...404.1077E,
+   author = {{Elmhamdi}, A. and {Chugai}, N.~N. and {Danziger}, I.~J.},
+    title = "{Light curves and H{$\alpha$}  luminosities as indicators of ^{56}Ni mass in type IIP supernovae}",
+  journal = {\aap},
+   eprint = {astro-ph/0304144},
+     year = 2003,
+    month = jun,
+   volume = 404,
+    pages = {1077-1086},
+      doi = {10.1051/0004-6361:20030522},
+   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003A&A...404.1077E&db_key=AST},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004IAUC.8297....2S,
+   author = {{Singer}, D. and {Pugh}, H. and {Li}, W.},
+    title = "{Supernovae 2004ak, 2004al, and 2004am}",
+  journal = {\iauc},
+     year = 2004,
+    month = mar,
+   volume = 8297,
+    pages = {2-+},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2004IAUC.8297....2S},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004IAUC.8299....2M,
+   author = {{Mattila}, S. and {Meikle}, W.~P.~S. and {Groeningsson}, P. and 
+	{Greimel}, R. and {Schirmer}, M. and {Acosta-Pulido}, J.~A. and 
+	{Li}, W.},
+    title = "{Supernova 2004am in M82}",
+  journal = {\iauc},
+     year = 2004,
+    month = mar,
+   volume = 8299,
+    pages = {2-+},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2004IAUC.8299....2M},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006MNRAS.369.1780V,
+   author = {{Vink{\'o}}, J. and {Tak{\'a}ts}, K. and {S{\'a}rneczky}, K. and 
+	{Szab{\'o}}, G.~M. and {M{\'e}sz{\'a}ros}, S. and {Csorv{\'a}si}, R. and 
+	{Szalai}, T. and {G{\'a}sp{\'a}r}, A. and {P{\'a}l}, A. and 
+	{Csizmadia}, S. and {K{\'o}sp{\'a}l}, A. and {R{\'a}cz}, M. and 
+	{Kun}, M. and {Cs{\'a}k}, B. and {F{\"u}r{\'e}sz}, G. and {DeBond}, H. and 
+	{Grunhut}, J. and {Thomson}, J. and {Mochnacki}, S. and {Koktay}, T.
+	},
+    title = "{The first year of SN 2004dj in NGC 2403}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0604230},
+     year = 2006,
+    month = jul,
+   volume = 369,
+    pages = {1780-1796},
+      doi = {10.1111/j.1365-2966.2006.10416.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.369.1780V},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+
+
+@ARTICLE{2006MNRAS.372.1735T,
+   author = {{Tak{\'a}ts}, K. and {Vink{\'o}}, J.},
+    title = "{Distance estimate and progenitor characteristics of SN 2005cs in M51}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0608430},
+     year = 2006,
+    month = nov,
+   volume = 372,
+    pages = {1735-1740},
+      doi = {10.1111/j.1365-2966.2006.10974.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.372.1735T},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...659.1488B,
+   author = {{Brown}, P.~J. and {Dessart}, L. and {Holland}, S.~T. and {Immler}, S. and 
+	{Landsman}, W. and {Blondin}, S. and {Blustin}, A.~J. and {Breeveld}, A. and 
+	{Dewangan}, G.~C. and {Gehrels}, N. and {Hutchins}, R.~B. and 
+	{Kirshner}, R.~P. and {Mason}, K.~O. and {Mazzali}, P.~A. and 
+	{Milne}, P. and {Modjaz}, M. and {Roming}, P.~W.~A.},
+    title = "{Early Ultraviolet, Optical, and X-Ray Observations of the Type IIP SN 2005cs in M51 with Swift}",
+  journal = {\apj},
+   eprint = {arXiv:astro-ph/0612541},
+     year = 2007,
+    month = apr,
+   volume = 659,
+    pages = {1488-1495},
+      doi = {10.1086/511968},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...659.1488B},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...460..769T,
+   author = {{Tsvetkov}, D.~Y. and {Volnova}, A.~A. and {Shulga}, A.~P. and 
+	{Korotkiy}, S.~A. and {Elmhamdi}, A. and {Danziger}, I.~J. and 
+	{Ereshko}, M.~V.},
+    title = "{Observations and analysis of two type IIP supernovae: the intrinsically faint object SN 2005cs and the ambiguous object SN 2005ay}",
+  journal = {\aap},
+   eprint = {arXiv:astro-ph/0605184},
+     year = 2006,
+    month = dec,
+   volume = 460,
+    pages = {769-776},
+      doi = {10.1051/0004-6361:20065704},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...460..769T},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...785...82S,
+   author = {{Smith}, N. and {Arnett}, W.~D.},
+    title = "{Preparing for an Explosion: Hydrodynamic Instabilities and Turbulence in Presupernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1307.5035},
+ primaryClass = "astro-ph.SR",
+ keywords = {instabilities, meteorites, meteors, meteoroids, nuclear reactions, nucleosynthesis, abundances, stars: mass-loss, supernovae: general, turbulence },
+     year = 2014,
+    month = apr,
+   volume = 785,
+      eid = {82},
+    pages = {82},
+      doi = {10.1088/0004-637X/785/2/82},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...82S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436.3224P,
+   author = {{Poznanski}, D.},
+    title = "{An emerging coherent picture of red supergiant supernova explosions}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1304.4967},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general},
+     year = 2013,
+    month = dec,
+   volume = 436,
+    pages = {3224-3230},
+      doi = {10.1093/mnras/stt1800},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3224P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@INPROCEEDINGS{Arnett,
+   author = {{Arnett}, D},
+    title = "{Supernovae and Nucleosynthesis}",
+booktitle = {Supernovae and Nucleosynthesis (New Jersey: Princeton Univ. Press)},
+     year = 1996,
+   editor = {},
+    month = sep,
+    pages = {},
+   adsurl = {},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.370.1752P,
+   author = {{Pastorello}, A. and {Sauer}, D. and {Taubenberger}, S. and 
+	{Mazzali}, P.~A. and {et al.}},
+    title = "{SN 2005cs in M51 - I. The first month of evolution of a subluminous SN II plateau}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0605700},
+     year = 2006,
+    month = aug,
+   volume = 370,
+    pages = {1752-1762},
+      doi = {10.1111/j.1365-2966.2006.10587.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.370.1752P},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+   
+@ARTICLE{2003astro.ph..8136N,
+   author = {{Nomoto}, K. and {Maeda}, K. and {Mazzali}, P.~A. and {Umeda}, H. and 
+	{Deng}, J. and {Iwamoto}, K.},
+    title = "{Hypernovae and Other Black-Hole-Forming Supernovae}",
+  journal = {ArXiv Astrophysics e-prints},
+   eprint = {astro-ph/0308136},
+     year = 2003,
+    month = aug,
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2003astro.ph..8136N},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...656..372G,
+   author = {{Gal-Yam}, A. and {Leonard}, D.~C. and {Fox}, D.~B. and {Cenko}, S.~B. and 
+	{Soderberg}, A.~M. and {Moon}, D.-S. and {Sand}, D.~J. and {Li}, W. and 
+	{Filippenko}, A.~V. and {Aldering}, G. and {Copin}, Y.},
+    title = "{On the Progenitor of SN 2005gl and the Nature of Type IIn Supernovae}",
+  journal = {\apj},
+   eprint = {arXiv:astro-ph/0608029},
+     year = 2007,
+    month = feb,
+   volume = 656,
+    pages = {372-381},
+      doi = {10.1086/510523},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...656..372G},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...661.1013L,
+   author = {{Li}, W. and {Wang}, X. and {Van Dyk}, S.~D. and {Cuillandre}, J.-C. and 
+	{Foley}, R.~J. and {Filippenko}, A.~V.},
+    title = "{On the Progenitors of Two Type II-P Supernovae in the Virgo Cluster}",
+  journal = {\apj},
+   eprint = {arXiv:astro-ph/0701049},
+     year = 2007,
+    month = jun,
+   volume = 661,
+    pages = {1013-1024},
+      doi = {10.1086/516747},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...661.1013L},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003AJ....126.2867M,
+   author = {{Massey}, P. and {Olsen}, K.~A.~G.},
+    title = "{The Evolution of Massive Stars. I. Red Supergiants in the Magellanic Clouds}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0309272},
+     year = 2003,
+    month = dec,
+   volume = 126,
+    pages = {2867-2886},
+      doi = {10.1086/379558},
+   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126.2867M},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...450..345K,
+   author = {{Kitaura}, F.~S. and {Janka}, H.-T. and {Hillebrandt}, W.},
+    title = "{Explosions of O-Ne-Mg cores, the Crab supernova, and subluminous type II-P supernovae}",
+  journal = {\aap},
+   eprint = {arXiv:astro-ph/0512065},
+     year = 2006,
+    month = apr,
+   volume = 450,
+    pages = {345-350},
+      doi = {10.1051/0004-6361:20054703},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...450..345K},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007arXiv0705.4643P,
+   author = {{Poelarends}, A.~J.~T. and {Herwig}, F. and {Langer}, N. and 
+	{Heger}, A.},
+    title = "{The Supernova Channel of Super-AGB Stars}",
+  journal = {ArXiv e-prints},
+   eprint = {0705.4643},
+     year = 2007,
+    month = may,
+   volume = 705,
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007arXiv0705.4643P},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006MNRAS.369..383D,
+   author = {{Dobbie}, P.~D. and {Napiwotzki}, R. and {Burleigh}, M.~R. and 
+	{Barstow}, M.~A. and {Boyce}, D.~D. and {Casewell}, S.~L. and 
+	{Jameson}, R.~F. and {Hubeny}, I. and {Fontaine}, G.},
+    title = "{New Praesepe white dwarfs and the initial mass-final mass relation}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0603314},
+     year = 2006,
+    month = jun,
+   volume = 369,
+    pages = {383-389},
+      doi = {10.1111/j.1365-2966.2006.10311.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.369..383D},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006ApJ...645.1102L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
+	{Plez}, B. and {Meynet}, G. and {Maeder}, A.},
+    title = "{The Effective Temperatures and Physical Properties of Magellanic Cloud Red Supergiants: The Effects of Metallicity}",
+  journal = {\apj},
+   eprint = {arXiv:astro-ph/0603596},
+     year = 2006,
+    month = jul,
+   volume = 645,
+    pages = {1102-1117},
+      doi = {10.1086/504417},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006ApJ...645.1102L},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1978ApJS...38..309H,
+   author = {{Humphreys}, R.~M.},
+    title = "{Studies of luminous stars in nearby galaxies. I. Supergiants and O stars in the Milky Way.}",
+  journal = {\apjs},
+     year = 1978,
+    month = dec,
+   volume = 38,
+    pages = {309-350},
+   adsurl = {http://adsabs.harvard.edu/abs/1978ApJS...38..309H},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001AJ....121.1050M,
+   author = {{Massey}, P. and {DeGioia-Eastwood}, K. and {Waterhouse}, E.
+	},
+    title = "{The Progenitor Masses of Wolf-Rayet Stars and Luminous Blue Variables Determined from Cluster Turnoffs. II. Results from 12 Galactic Clusters and OB Associations}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0010654},
+     year = 2001,
+    month = feb,
+   volume = 121,
+    pages = {1050-1070},
+      doi = {10.1086/318769},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2001AJ....121.1050M},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000AJ....119.2214M,
+   author = {{Massey}, P. and {Waterhouse}, E. and {DeGioia-Eastwood}, K.
+	},
+    title = "{The Progenitor Masses of Wolf-Rayet Stars and Luminous Blue Variables Determined from Cluster Turnoffs. I. Results from 19 OB Associations in the Magellanic Clouds}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0002233},
+     year = 2000,
+    month = may,
+   volume = 119,
+    pages = {2214-2241},
+      doi = {10.1086/301345},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2000AJ....119.2214M},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{arXiv:astroph0610356v2,
+   author = {{Crowther}, P.~A..},
+    title = "{Physical Properties of Wolf-Rayet Stars}",
+  journal = {ArXiv e-prints},
+   eprint = {0610356},
+     year = 2007,
+    month = may,
+   volume = 705,
+   adsurl = {},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...457..265D,
+   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Lee}, J.~K. and {Ryans}, R.~S.~I. and 
+	{Hunter}, I. and {Evans}, C.~J. and {Herrero}, A. and {Trundle}, C. and 
+	{Lennon}, D.~J. and {Irwin}, M.~J. and {Kaufer}, A.},
+    title = "{The VLT-FLAMES survey of massive stars: stellar parameters and rotational velocities in NGC 3293, NGC 4755 and NGC 6611}",
+  journal = {\aap},
+   eprint = {arXiv:astro-ph/0606409},
+     year = 2006,
+    month = oct,
+   volume = 457,
+    pages = {265-280},
+      doi = {10.1051/0004-6361:20065392},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...457..265D},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005ApJ...625L..87Y,
+   author = {{Young}, T.~R. and {Smith}, D. and {Johnson}, T.~A.},
+    title = "{An Optical Afterglow Model for Bright Linear Type II Supernovae}",
+  journal = {\apjl},
+     year = 2005,
+    month = jun,
+   volume = 625,
+    pages = {L87-L90},
+      doi = {10.1086/431279},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2005ApJ...625L..87Y},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...666.1116S,
+   author = {{Smith}, N. and {Li}, W. and {Foley}, R.~J. and {Wheeler}, J.~C. and 
+	{Pooley}, D. and {Chornock}, R. and {Filippenko}, A.~V. and 
+	{Silverman}, J.~M. and {Quimby}, R. and {Bloom}, J.~S. and {Hansen}, C.
+	},
+    title = "{SN 2006gy: Discovery of the Most Luminous Supernova Ever Recorded, Powered by the Death of an Extremely Massive Star like {$\eta$} Carinae}",
+  journal = {\apj},
+   eprint = {astro-ph/0612617},
+ keywords = {Stars: Circumstellar Matter, Stars: Evolution, supernovae: individual (SN 2006gy)},
+     year = 2007,
+    month = sep,
+   volume = 666,
+    pages = {1116-1128},
+      doi = {10.1086/519949},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...666.1116S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1988ApJ...334..909M,
+   author = {{Mayle}, R. and {Wilson}, J.~R.},
+    title = "{Supernovae from collapse of oxygen-magnesium-neon cores}",
+  journal = {\apj},
+     year = 1988,
+    month = nov,
+   volume = 334,
+    pages = {909-926},
+      doi = {10.1086/166886},
+   adsurl = {http://adsabs.harvard.edu/abs/1988ApJ...334..909M},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002RvMP...74.1015W,
+   author = {{Woosley}, S.~E. and {Heger}, A. and {Weaver}, T.~A.},
+    title = "{The evolution and explosion of massive stars}",
+  journal = {Reviews of Modern Physics},
+     year = 2002,
+    month = nov,
+   volume = 74,
+    pages = {1015-1071},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2002RvMP...74.1015W},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000A&A...354..557C,
+   author = {{Chugai}, N.~N. and {Utrobin}, V.~P.},
+    title = "{The nature of SN 1997D: low-mass progenitor and weak explosion}",
+  journal = {\aap},
+   eprint = {arXiv:astro-ph/9906190},
+     year = 2000,
+    month = feb,
+   volume = 354,
+    pages = {557-566},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2000A&A...354..557C},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005ApJ...630L..29G,
+   author = {{Gal-Yam}, A. and {Fox}, D.~B. and {Kulkarni}, S.~R. and {Matthews}, K. and 
+	{Leonard}, D.~C. and {Sand}, D.~J. and {Moon}, D.-S. and {Cenko}, S.~B. and 
+	{Soderberg}, A.~M.},
+    title = "{A High Angular Resolution Search for the Progenitor of the Type Ic Supernova 2004gt}",
+  journal = {\apjl},
+   eprint = {arXiv:astro-ph/0506472},
+     year = 2005,
+    month = sep,
+   volume = 630,
+    pages = {L29-L32},
+      doi = {10.1086/491622},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2005ApJ...630L..29G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003A&A...412...45P,
+   author = {{Paturel}, G. and {Petit}, C. and {Prugniel}, P. and {Theureau}, G. and 
+	{Rousseau}, J. and {Brouty}, M. and {Dubois}, P. and {Cambr{\'e}sy}, L.
+	},
+    title = "{HYPERLEDA.  I. Identification and designation of galaxies}",
+  journal = {\aap},
+     year = 2003,
+    month = dec,
+   volume = 412,
+    pages = {45-55},
+      doi = {10.1051/0004-6361:20031411},
+   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...412...45P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007CBET.1184....1H,
+   author = {{Harutyunyan}, A. and {Navasardyan}, H. and {Benetti}, S. and 
+	{Turatto}, M. and {Pastorello}, A. and {Taubenberger}, S.},
+    title = "{2007sv}",
+  journal = {Central Bureau Electronic Telegrams},
+     year = 2007,
+    month = dec,
+   volume = 1184,
+    pages = {1-+},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007CBET.1184....1H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007arXiv0710.3192O,
+   author = {{Ofek}, E.~O. and {Kulkarni}, S.~R. and {Rau}, A. and {Cenko}, S.~B. and 
+	{Peng}, E.~W. and {Blakeslee}, J.~P. and {Cote}, P. and {Ferrarese}, L. and 
+	{Jordan}, A. and {Mei}, S. and {Puzia}, T. and {Bradley}, L.~D. and 
+	{Magee}, D. and {Bouwens}, R.},
+    title = "{The Environment of M85 optical transient 2006-1: constraints on the progenitor age and mass}",
+  journal = {ArXiv e-prints},
+   eprint = {0710.3192},
+     year = 2007,
+    month = oct,
+   volume = 710,
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007arXiv0710.3192O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007Natur.447..458K,
+   author = {{Kulkarni}, S.~R. and {Ofek}, E.~O. and {Rau}, A. and {Cenko}, S.~B. and 
+	{Soderberg}, A.~M. and {Fox}, D.~B. and {Gal-Yam}, A. and {Capak}, P.~L. and 
+	{Moon}, D.~S. and {Li}, W. and {Filippenko}, A.~V. and {Egami}, E. and 
+	{Kartaltepe}, J. and {Sanders}, D.~B.},
+    title = "{An unusually brilliant transient in the galaxy M85}",
+  journal = {\nat},
+   eprint = {arXiv:0705.3668},
+     year = 2007,
+    month = may,
+   volume = 447,
+    pages = {458-460},
+      doi = {10.1038/nature05822},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007Natur.447..458K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007Natur.449....1P,
+   author = {{Pastorello}, A. and {Valle}, M.~D. and {Smartt}, S.~J. and 
+	{Zampieri}, L. and {Benetti}, S. and {Cappellaro}, E. and {Mazzali}, P.~A. and 
+	{Patat}, F. and {Spiro}, S. and {Turatto}, M. and {Valenti}, S.
+	},
+    title = "{A very faint core-collapse supernova in M85}",
+  journal = {\nat},
+   eprint = {arXiv:0710.3753},
+     year = 2007,
+    month = oct,
+   volume = 449,
+    pages = {1-2},
+      doi = {10.1038/nature06282},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2007Natur.449....1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005MNRAS.360..950P,
+   author = {{Pastorello}, A. and {Baron}, E. and {Branch}, D. and {Zampieri}, L. and 
+	{Turatto}, M. and {Ramina}, M. and {Benetti}, S. and {Cappellaro}, E. and {et al.}},
+    title = "{SN 1998A: explosion of a blue supergiant}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0504114},
+     year = 2005,
+    month = jul,
+   volume = 360,
+    pages = {950-962},
+      doi = {10.1111/j.1365-2966.2005.09079.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2005MNRAS.360..950P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007MNRAS.376L..52E,
+   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
+    title = "{Ruling out a massive asymptotic giant-branch star as the progenitor of supernova 2005cs}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0701152},
+     year = 2007,
+    month = mar,
+   volume = 376,
+    pages = {L52-L56},
+      doi = {10.1111/j.1745-3933.2007.00285.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.376L..52E},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{matilla2004am,
+   author = {{Mattila}, S. and {et al.}},
+    title = "{2004am}",
+  journal = {ArXiv e-prints},
+   eprint = {submitted},
+     year = 2008,
+   adsurl = {},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{arXiv:astroph0610356v2,
+   author = {{Crowther}, P.~A..},
+    title = "{Physical Properties of Wolf-Rayet Stars}",
+  journal = {ArXiv e-prints},
+   eprint = {0610356},
+     year = 2007,
+    month = may,
+   volume = 705,
+   adsurl = {},
+  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000ApJ...544.1016H,
+   author = {{Heger}, A. and {Langer}, N.},
+    title = "{Presupernova Evolution of Rotating Massive Stars. II. Evolution of the Surface Properties}",
+  journal = {\apj},
+   eprint = {arXiv:astro-ph/0005110},
+     year = 2000,
+    month = dec,
+   volume = 544,
+    pages = {1016-1035},
+      doi = {10.1086/317239},
+   adsurl = {http://adsabs.harvard.edu/abs/2000ApJ...544.1016H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005MNRAS.360..950P,
+   author = {{Pastorello}, A. and {Baron}, E. and {Branch}, D. and {Zampieri}, L. and 
+	{Turatto}, M. and {Ramina}, M. and {Benetti}, S. and {Cappellaro}, E. and 
+	{Salvo}, M. and {Patat}, F. and {Piemonte}, A. and {Sollerman}, J. and 
+	{Leibundgut}, B. and {Altavilla}, G.},
+    title = "{SN 1998A: explosion of a blue supergiant}",
+  journal = {\mnras},
+   eprint = {arXiv:astro-ph/0504114},
+     year = 2005,
+    month = jul,
+   volume = 360,
+    pages = {950-962},
+      doi = {10.1111/j.1365-2966.2005.09079.x},
+   adsurl = {http://ukads.nottingham.ac.uk/abs/2005MNRAS.360..950P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ATel.4037....1V,
+   author = {{Valenti}, S. and {Pastorello}, A. and {Benitez-Herrera}, S. and 
+	{Taubenberger}, S. and {Smartt}, S.~J. and {Sullivan}, M. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Greggio}, L. and {Hachinger}, S. and 
+	{Turatto}, M. and {Zampieri}, L. and {Baltay}, C. and {Ellman}, N. and 
+	{Hadjiyska}, E. and {McKinnon}, R. and {Rabinowitz}, D. and 
+	{Nugent}, P. and {Mazzali}, P.~A. and {Maguire}, K. and {Pan}, Y.-C. and 
+	{Hook}, I. and {Fraser}, M. and {Inserra}, C. and {Magill}, L. and 
+	{Maund}, J. and {McCrum}, M. and {Kotak}, R. and {Smith}, K.~W. and 
+	{Young}, D.~R. and {Chen}, T.-W. and {Wright}, D. and {Scalzo}, R. and 
+	{Schmidt}, B.~P. and {Sim}, S.~A. and {Yuan}, F. and {Stanishev}, V. and 
+	{Patat}, N. and {Botticella}, M.~T. and {Dall'Ora}, M. and {Limongi}, M. and 
+	{Pumo}, M.~L. and {Dennefeld}, M. and {Blagorodnova}, N. and 
+	{Elias-Rosa}, N. and {Walton}, N.~A. and {Cellier-Holzem}, F. and 
+	{Bongard}, S. and {Regnault}, N. and {Pain}, R. and {Guillou}, L.~L. and 
+	{Hillebrandt}, W. and {Kromer}, M. and {Sternberg}, A. and {Bufano}, F. and 
+	{Pignata}, G. and {Anderson}, J.~P. and {Hamuy}, M. and {Clocchiatti}, A. and 
+	{Eldridge}, J.~J. and {Feindt}, U. and {Kowalski}, M. and {Kankare}, E. and 
+	{Mattila}, S. and {Walker}, E.~S. and {Amanullah}, R. and {Fransson}, C. and 
+	{Goobar}, A. and {Sollerman}, J. and {Ergon}, M. and {Gal-Yam}, A. and 
+	{Yaron}, O.},
+    title = "{PESSTO spectroscopic classification of La Silla-Quest Transients}",
+  journal = {The Astronomer's Telegram},
+ keywords = {Optical, Supernovae, Transient},
+     year = 2012,
+    month = apr,
+   volume = 4037,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{efosc2manual,
+   author = {{Monaco}, L. and {Snodgrass}, C. and {Schmidtobreick}, L. and 
+	{Saviane}, I.
+	},
+    title = "{EFOSC2 User's Manual}",
+  journal = {LSO-MAN-ESO-36100-0004, Issue 3.6},
+ keywords = {Optical},
+     year = 2012,
+    month = aug,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{p2edpstd,
+   author = {{Retzlaff}, J. and {Delmotte}, N. and {Arnaboldi}, M. and 
+	{Romaniello}, M.
+	},
+    title = "{ESO Science Data Products Standard}",
+  journal = {GEN-SPE-ESO-33000-5335, Issue 5},
+ keywords = {Optical},
+     year = 2013,
+    month = aug,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001PASP..113.1420V,
+   author = {{van Dokkum}, P.~G.},
+    title = "{Cosmic-Ray Rejection by Laplacian Edge Detection}",
+  journal = {\pasp},
+   eprint = {arXiv:astro-ph/0108003},
+ keywords = {Instrumentation: Detectors, Methods: Data Analysis-techniques: image processing},
+     year = 2001,
+    month = nov,
+   volume = 113,
+    pages = {1420-1427},
+      doi = {10.1086/323894},
+   adsurl = {http://adsabs.harvard.edu/abs/2001PASP..113.1420V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003AJ....125..984M,
+   author = {{Monet}, D.~G. and {Levine}, S.~E. and {Canzian}, B. and {Ables}, H.~D. and 
+	{Bird}, A.~R. and {Dahn}, C.~C. and {Guetter}, H.~H. and {Harris}, H.~C. and 
+	{Henden}, A.~A. and {Leggett}, S.~K. and {Levison}, H.~F. and 
+	{Luginbuhl}, C.~B. and {Martini}, J. and {Monet}, A.~K.~B. and 
+	{Munn}, J.~A. and {Pier}, J.~R. and {Rhodes}, A.~R. and {Riepe}, B. and 
+	{Sell}, S. and {Stone}, R.~C. and {Vrba}, F.~J. and {Walker}, R.~L. and 
+	{Westerhout}, G. and {Brucato}, R.~J. and {Reid}, I.~N. and 
+	{Schoening}, W. and {Hartley}, M. and {Read}, M.~A. and {Tritton}, S.~B.
+	},
+    title = "{The USNO-B Catalog}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0210694},
+ keywords = {Astrometry, Catalogs},
+     year = 2003,
+    month = feb,
+   volume = 125,
+    pages = {984-993},
+      doi = {10.1086/345888},
+   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....125..984M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{sextractor,
+   author = {{Bertin}, E. and {Arnouts}, S.},
+    title = "{SExtractor: Software for source extraction.}",
+  journal = {\aaps},
+ keywords = {METHODS: DATA ANALYSIS, TECHNIQUES: IMAGE PROCESSING, GALAXIES: PHOTOMETRY},
+     year = 1996,
+    month = jun,
+   volume = 117,
+    pages = {393-404},
+   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..117..393B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005AJ....130..873J,
+   author = {{Jester}, S. and {Schneider}, D.~P. and {Richards}, G.~T. and 
+	{Green}, R.~F. and {Schmidt}, M. and {Hall}, P.~B. and {Strauss}, M.~A. and 
+	{Vanden Berk}, D.~E. and {Stoughton}, C. and {Gunn}, J.~E. and 
+	{Brinkmann}, J. and {Kent}, S.~M. and {Smith}, J.~A. and {Tucker}, D.~L. and 
+	{Yanny}, B.},
+    title = "{The Sloan Digital Sky Survey View of the Palomar-Green Bright Quasar Survey}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0506022},
+ keywords = {Catalogs, Galaxies: Active, Galaxies: Quasars: Emission Lines, Galaxies: Quasars: General, Surveys},
+     year = 2005,
+    month = sep,
+   volume = 130,
+    pages = {873-895},
+      doi = {10.1086/432466},
+   adsurl = {http://adsabs.harvard.edu/abs/2005AJ....130..873J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...460..339J,
+   author = {{Jordi}, K. and {Grebel}, E.~K. and {Ammon}, K.},
+    title = "{Empirical color transformations between SDSS photometry and other photometric systems}",
+  journal = {\aap},
+   eprint = {arXiv:astro-ph/0609121},
+ keywords = {surveys, catalogs, techniques: photometric},
+     year = 2006,
+    month = dec,
+   volume = 460,
+    pages = {339-347},
+      doi = {10.1051/0004-6361:20066082},
+   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...460..339J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.433.1312F,
+   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
+	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
+	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
+	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
+	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
+	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
+	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
+	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
+	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
+	{Zhou}, G.},
+    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1303.3453},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
+     year = 2013,
+    month = aug,
+   volume = 433,
+    pages = {1312-1337},
+      doi = {10.1093/mnras/stt813},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2005PASP..117..810S,
+   author = {{Stritzinger}, M. and {Suntzeff}, N.~B. and {Hamuy}, M. and 
+	{Challis}, P. and {Demarco}, R. and {Germany}, L. and {Soderberg}, A.~M.
+	},
+    title = "{An Atlas of Spectrophotometric Landolt Standard Stars}",
+  journal = {\pasp},
+   eprint = {arXiv:astro-ph/0504244},
+ keywords = {Techniques: Photometric, Stars: Fundamental Parameters},
+     year = 2005,
+    month = aug,
+   volume = 117,
+    pages = {810-822},
+      doi = {10.1086/431468},
+   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..810S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008A&A...488..383H,
+   author = {{Harutyunyan}, A.~H. and {Pfahler}, P. and {Pastorello}, A. and 
+	{Taubenberger}, S. and {Turatto}, M. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Elias-Rosa}, N. and {Navasardyan}, H. and 
+	{Valenti}, S. and {Stanishev}, V. and {Patat}, F. and {Riello}, M. and 
+	{Pignata}, G. and {Hillebrandt}, W.},
+    title = "{ESC supernova spectroscopy of non-ESC targets}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {0804.1939},
+ keywords = {supernovae: general, methods: data analysis},
+     year = 2008,
+    month = sep,
+   volume = 488,
+    pages = {383-399},
+      doi = {10.1051/0004-6361:20078859},
+   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...488..383H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...666.1024B,
+   author = {{Blondin}, S. and {Tonry}, J.~L.},
+    title = "{Determining the Type, Redshift, and Age of a Supernova Spectrum}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0709.4488},
+ keywords = {Methods: Data Analysis, Methods: Statistical, Stars: Supernovae: General},
+     year = 2007,
+    month = sep,
+   volume = 666,
+    pages = {1024-1047},
+      doi = {10.1086/520494},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...666.1024B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005AJ....130..873J,
+   author = {{Jester}, S. and {Schneider}, D.~P. and {Richards}, G.~T. and 
+	{Green}, R.~F. and {Schmidt}, M. and {Hall}, P.~B. and {Strauss}, M.~A. and 
+	{Vanden Berk}, D.~E. and {Stoughton}, C. and {Gunn}, J.~E. and 
+	{Brinkmann}, J. and {Kent}, S.~M. and {Smith}, J.~A. and {Tucker}, D.~L. and 
+	{Yanny}, B.},
+    title = "{The Sloan Digital Sky Survey View of the Palomar-Green Bright Quasar Survey}",
+  journal = {\aj},
+   eprint = {arXiv:astro-ph/0506022},
+ keywords = {Catalogs, Galaxies: Active, Galaxies: Quasars: Emission Lines, Galaxies: Quasars: General, Surveys},
+     year = 2005,
+    month = sep,
+   volume = 130,
+    pages = {873-895},
+      doi = {10.1086/432466},
+   adsurl = {http://adsabs.harvard.edu/abs/2005AJ....130..873J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009PASP..121.1395L,
+   author = {{Law}, N.~M. and {Kulkarni}, S.~R. and {Dekany}, R.~G. and {Ofek}, E.~O. and 
+	{Quimby}, R.~M. and {Nugent}, P.~E. and {Surace}, J. and {Grillmair}, C.~C. and 
+	{Bloom}, J.~S. and {Kasliwal}, M.~M. and {Bildsten}, L. and 
+	{Brown}, T. and {Cenko}, S.~B. and {Ciardi}, D. and {Croner}, E. and 
+	{Djorgovski}, S.~G. and {van Eyken}, J. and {Filippenko}, A.~V. and 
+	{Fox}, D.~B. and {Gal-Yam}, A. and {Hale}, D. and {Hamam}, N. and 
+	{Helou}, G. and {Henning}, J. and {Howell}, D.~A. and {Jacobsen}, J. and 
+	{Laher}, R. and {Mattingly}, S. and {McKenna}, D. and {Pickles}, A. and 
+	{Poznanski}, D. and {Rahmer}, G. and {Rau}, A. and {Rosing}, W. and 
+	{Shara}, M. and {Smith}, R. and {Starr}, D. and {Sullivan}, M. and 
+	{Velur}, V. and {Walters}, R. and {Zolkower}, J.},
+    title = "{The Palomar Transient Factory: System Overview, Performance, and First Results}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {0906.5350},
+ primaryClass = "astro-ph.IM",
+ keywords = {Astronomical Techniques},
+     year = 2009,
+    month = dec,
+   volume = 121,
+    pages = {1395-1408},
+      doi = {10.1086/648598},
+   adsurl = {http://adsabs.harvard.edu/abs/2009PASP..121.1395L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2010SPIE.7733E..12K,
+   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
+	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
+	{Onaka}, P. and {Tonry}, J.},
+    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
+booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+     year = 2010,
+   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
+   volume = 7733,
+    month = jul,
+      eid = {77330E},
+      doi = {10.1117/12.859188},
+   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..12K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ApJ...696..870D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
+	{Beshore}, E. and {Larson}, S. and {Graham}, M.~J. and {Williams}, R. and 
+	{Christensen}, E. and {Catelan}, M. and {Boattini}, A. and {Gibbs}, A. and 
+	{Hill}, R. and {Kowalski}, R.},
+    title = "{First Results from the Catalina Real-Time Transient Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0809.1394},
+ keywords = {BL Lacertae objects: general, galaxies: general, novae, cataclysmic variables, stars: flare, supernovae: general},
+     year = 2009,
+    month = may,
+   volume = 696,
+    pages = {870-884},
+      doi = {10.1088/0004-637X/696/1/870},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...696..870D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2013PASP..125..683B,
+   author = {{Baltay}, C. and {Rabinowitz}, D. and {Hadjiyska}, E. and {Walker}, E.~S. and 
+	{Nugent}, P. and {Coppi}, P. and {Ellman}, N. and {Feindt}, U. and 
+	{McKinnon}, R. and {Horowitz}, B. and {Effron}, A.},
+    title = "{The La Silla-QUEST Low Redshift Supernova Survey}",
+  journal = {\pasp},
+ keywords = {Astronomical Instrumentation},
+     year = 2013,
+    month = jun,
+   volume = 125,
+    pages = {683-694},
+      doi = {10.1086/671198},
+   adsurl = {http://adsabs.harvard.edu/abs/2013PASP..125..683B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007PASA...24....1K,
+   author = {{Keller}, S.~C. and {Schmidt}, B.~P. and {Bessell}, M.~S. and 
+	{Conroy}, P.~G. and {Francis}, P. and {Granlund}, A. and {Kowald}, E. and 
+	{Oates}, A.~P. and {Martin-Jones}, T. and {Preston}, T. and 
+	{Tisserand}, P. and {Vaccarella}, A. and {Waterson}, M.~F.},
+    title = "{The SkyMapper Telescope and The Southern Sky Survey}",
+  journal = {\pasa},
+   eprint = {arXiv:astro-ph/0702511},
+ keywords = {telescopes, surveys, techniques: photometry,},
+     year = 2007,
+    month = may,
+   volume = 24,
+    pages = {1-12},
+      doi = {10.1071/AS07001},
+   adsurl = {http://adsabs.harvard.edu/abs/2007PASA...24....1K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010ApJ...723L..89U,
+   author = {{Utrobin}, V.~P. and {Chugai}, N.~N. and {Botticella}, M.~T.
+	},
+    title = "{Type IIP Supernova 2009kf: Explosion Driven by Black Hole Accretion?}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1009.4425},
+ primaryClass = "astro-ph.SR",
+ keywords = {gamma-ray burst: general, stars: evolution, stars: massive, supernovae: general, supernovae: individual: SN 2009kf},
+     year = 2010,
+    month = nov,
+   volume = 723,
+    pages = {L89-L92},
+      doi = {10.1088/2041-8205/723/1/L89},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...723L..89U},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1996AJ....111.1286C,
+   author = {{Clocchiatti}, A. and {Benetti}, S. and {Wheeler}, J.~C. and 
+	{Wren}, W. and {Boisseau}, J. and {Cappellaro}, E. and {Turatto}, M. and 
+	{Patat}, F. and {Swartz}, D.~A. and {Harkness}, R.~P. and {Brotherton}, M.~S. and 
+	{Wills}, B. and {Hemenway}, P. and {Cornell}, M. and {Frueh}, M. and 
+	{Kaiser}, M.~B.},
+    title = "{A Study of SN 1992H in NGC 5377}",
+  journal = {\aj},
+ keywords = {SUPERNOVAE: INDIVIDUAL: SN 1992H, GALAXIES: INDIVIDUAL: NGC 5377},
+     year = 1996,
+    month = mar,
+   volume = 111,
+    pages = {1286},
+      doi = {10.1086/117874},
+   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.1286C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2009PASP..121.1334R,
+   author = {{Rau}, A. and {Kulkarni}, S.~R. and {Law}, N.~M. and {Bloom}, J.~S. and 
+	{Ciardi}, D. and {Djorgovski}, G.~S. and {Fox}, D.~B. and {Gal-Yam}, A. and 
+	{Grillmair}, C.~C. and {Kasliwal}, M.~M. and {Nugent}, P.~E. and 
+	{Ofek}, E.~O. and {Quimby}, R.~M. and {Reach}, W.~T. and {Shara}, M. and 
+	{Bildsten}, L. and {Cenko}, S.~B. and {Drake}, A.~J. and {Filippenko}, A.~V. and 
+	{Helfand}, D.~J. and {Helou}, G. and {Howell}, D.~A. and {Poznanski}, D. and 
+	{Sullivan}, M.},
+    title = "{Exploring the Optical Transient Sky with the Palomar Transient Factory}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {0906.5355},
+ primaryClass = "astro-ph.CO",
+ keywords = {Supernovae},
+     year = 2009,
+    month = dec,
+   volume = 121,
+    pages = {1334-1351},
+      doi = {10.1086/605911},
+   adsurl = {http://adsabs.harvard.edu/abs/2009PASP..121.1334R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011Natur.480..344N,
+   author = {{Nugent}, P.~E. and {Sullivan}, M. and {Cenko}, S.~B. and {Thomas}, R.~C. and 
+	{Kasen}, D. and {Howell}, D.~A. and {Bersier}, D. and {Bloom}, J.~S. and 
+	{Kulkarni}, S.~R. and {Kandrashoff}, M.~T. and {Filippenko}, A.~V. and 
+	{Silverman}, J.~M. and {Marcy}, G.~W. and {Howard}, A.~W. and 
+	{Isaacson}, H.~T. and {Maguire}, K. and {Suzuki}, N. and {Tarlton}, J.~E. and 
+	{Pan}, Y.-C. and {Bildsten}, L. and {Fulton}, B.~J. and {Parrent}, J.~T. and 
+	{Sand}, D. and {Podsiadlowski}, P. and {Bianco}, F.~B. and {Dilday}, B. and 
+	{Graham}, M.~L. and {Lyman}, J. and {James}, P. and {Kasliwal}, M.~M. and 
+	{Law}, N.~M. and {Quimby}, R.~M. and {Hook}, I.~M. and {Walker}, E.~S. and 
+	{Mazzali}, P. and {Pian}, E. and {Ofek}, E.~O. and {Gal-Yam}, A. and 
+	{Poznanski}, D.},
+    title = "{Supernova SN 2011fe from an exploding carbon-oxygen white dwarf star}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1110.6201},
+ primaryClass = "astro-ph.CO",
+     year = 2011,
+    month = dec,
+   volume = 480,
+    pages = {344-347},
+      doi = {10.1038/nature10644},
+   adsurl = {http://adsabs.harvard.edu/abs/2011Natur.480..344N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...736..159G,
+   author = {{Gal-Yam}, A. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Green}, Y. and 
+	{Yaron}, O. and {Ben-Ami}, S. and {Xu}, D. and {Sternberg}, A. and 
+	{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Ofek}, E.~O. and 
+	{Walters}, R. and {Nugent}, P.~E. and {Poznanski}, D. and {Bloom}, J.~S. and 
+	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Li}, W. and {Silverman}, J.~M. and 
+	{Walker}, E.~S. and {Sullivan}, M. and {Maguire}, K. and {Howell}, D.~A. and 
+	{Mazzali}, P.~A. and {Frail}, D.~A. and {Bersier}, D. and {James}, P.~A. and 
+	{Akerlof}, C.~W. and {Yuan}, F. and {Law}, N. and {Fox}, D.~B. and 
+	{Gehrels}, N.},
+    title = "{Real-time Detection and Rapid Multiwavelength Follow-up Observations of a Highly Subluminous Type II-P Supernova from the Palomar Transient Factory Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1106.0400},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: PTF10vdl},
+     year = 2011,
+    month = aug,
+   volume = 736,
+      eid = {159},
+    pages = {159},
+      doi = {10.1088/0004-637X/736/2/159},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...736..159G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{arxiv.org.0812.4923,
+   author = {{Pignata}, G. and {Maza}, and J. {Hamuy}, M., and {Other1}, A.N., and {Other2}, A.N., and {Other3}, A.N },
+    title = "{chase}",
+  journal = {arXiv:0812.4923},
+     year = 2008,
+    month = dec,
+    pages = {1-+},
+   adsurl = {http://arxiv.org/abs/0812.4923},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.412.1419L,
+   author = {{Leaman}, J. and {Li}, W. and {Chornock}, R. and {Filippenko}, A.~V.
+	},
+    title = "{Nearby supernova rates from the Lick Observatory Supernova Search - I. The methods and data base}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.4611},
+ primaryClass = "astro-ph.SR",
+ keywords = {surveys, supernovae: general, galaxies: evolution},
+     year = 2011,
+    month = apr,
+   volume = 412,
+    pages = {1419-1440},
+      doi = {10.1111/j.1365-2966.2011.18158.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1419L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007Natur.447..829P,
+   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
+	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
+	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
+	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
+	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
+	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
+	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
+	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
+	},
+    title = "{A giant outburst two years before the core-collapse of a massive star}",
+  journal = {\nat},
+   eprint = {arXiv:astro-ph/0703663},
+     year = 2007,
+    month = jun,
+   volume = 447,
+    pages = {829-832},
+      doi = {10.1038/nature05825},
+   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ARA&A..47...63S,
+   author = {{Smartt}, S.~J.},
+    title = "{Progenitors of Core-Collapse Supernovae}",
+  journal = {\araa},
+archivePrefix = "arXiv",
+   eprint = {0908.0700},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = sep,
+   volume = 47,
+    pages = {63-106},
+      doi = {10.1146/annurev-astro-082708-101737},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ARA&A..47...63S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1999A&A...351..459C,
+   author = {{Cappellaro}, E. and {Evans}, R. and {Turatto}, M.},
+    title = "{A new determination of supernova rates and a comparison with indicators for galactic star formation}",
+  journal = {\aap},
+   eprint = {astro-ph/9904225},
+ keywords = {SURVEYS, STARS: SUPERNOVAE: GENERAL, GALAXIES: EVOLUTION, GALAXIES: STELLAR CONTENT},
+     year = 1999,
+    month = nov,
+   volume = 351,
+    pages = {459-466},
+   adsurl = {http://adsabs.harvard.edu/abs/1999A&A...351..459C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.412.1441L,
+   author = {{Li}, W. and {Leaman}, J. and {Chornock}, R. and {Filippenko}, A.~V. and 
+	{Poznanski}, D. and {Ganeshalingam}, M. and {Wang}, X. and {Modjaz}, M. and 
+	{Jha}, S. and {Foley}, R.~J. and {Smith}, N.},
+    title = "{Nearby supernova rates from the Lick Observatory Supernova Search - II. The observed luminosity functions and fractions of supernovae in a complete sample}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.4612},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general},
+     year = 2011,
+    month = apr,
+   volume = 412,
+    pages = {1441-1472},
+      doi = {10.1111/j.1365-2966.2011.18160.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1441L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...723L..98K,
+   author = {{Kasliwal}, M.~M. and {Kulkarni}, S.~R. and {Gal-Yam}, A. and 
+	{Yaron}, O. and {Quimby}, R.~M. and {Ofek}, E.~O. and {Nugent}, P. and 
+	{Poznanski}, D. and {Jacobsen}, J. and {Sternberg}, A. and {Arcavi}, I. and 
+	{Howell}, D.~A. and {Sullivan}, M. and {Rich}, D.~J. and {Burke}, P.~F. and 
+	{Brimacombe}, J. and {Milisavljevic}, D. and {Fesen}, R. and 
+	{Bildsten}, L. and {Shen}, K. and {Cenko}, S.~B. and {Bloom}, J.~S. and 
+	{Hsiao}, E. and {Law}, N.~M. and {Gehrels}, N. and {Immler}, S. and 
+	{Dekany}, R. and {Rahmer}, G. and {Hale}, D. and {Smith}, R. and 
+	{Zolkower}, J. and {Velur}, V. and {Walters}, R. and {Henning}, J. and 
+	{Bui}, K. and {McKenna}, D.},
+    title = "{Rapidly Decaying Supernova 2010X: A Candidate ''.Ia'' Explosion}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1009.0960},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: SN2010X SN2002bj, surveys, white dwarfs},
+     year = 2010,
+    month = nov,
+   volume = 723,
+    pages = {L98-L102},
+      doi = {10.1088/2041-8205/723/1/L98},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...723L..98K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009Natur.459..674V,
+   author = {{Valenti}, S. and {Pastorello}, A. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Mazzali}, P.~A. and {Manteca}, J. and {Taubenberger}, S. and 
+	{Elias-Rosa}, N. and {Ferrando}, R. and {Harutyunyan}, A. and 
+	{Hentunen}, V.~P. and {Nissinen}, M. and {Pian}, E. and {Turatto}, M. and 
+	{Zampieri}, L. and {Smartt}, S.~J.},
+    title = "{A low-energy core-collapse supernova without a hydrogen envelope}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {0901.2074},
+ primaryClass = "astro-ph.SR",
+     year = 2009,
+    month = jun,
+   volume = 459,
+    pages = {674-677},
+      doi = {10.1038/nature08023},
+   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.459..674V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998Msngr..91....9M,
+   author = {{Moorwood}, A. and {Cuby}, J.-G. and {Lidman}, C.},
+    title = "{SOFI sees first light at the NTT.}",
+  journal = {The Messenger},
+ keywords = {New Technology Telescopes: Infrared Imaging, New Technology Telescopes: Infrared Spectrometers},
+     year = 1998,
+    month = mar,
+   volume = 91,
+    pages = {9-13},
+   adsurl = {http://adsabs.harvard.edu/abs/1998Msngr..91....9M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{sofiman,
+   author = {{Lidman,}, C. and {Cuby,}, J.-G. and {Vanzi}, L. and 
+	{Billeres}, M. and {Ivanov}, V.D. and {Saviane}, I.
+	},
+    title = "{SOFI User's Manual}",
+  journal = {LSO-MAN-ESO-40100-0004, Issue 2.3},
+ keywords = {Optical},
+     year = 2012,
+    month = may,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011A&A...527A..91P,
+   author = {{Patat}, F. and {Moehler}, S. and {O'Brien}, K. and {Pompei}, E. and 
+	{Bensby}, T. and {Carraro}, G. and {de Ugarte Postigo}, A. and 
+	{Fox}, A. and {Gavignaud}, I. and {James}, G. and {Korhonen}, H. and 
+	{Ledoux}, C. and {Randall}, S. and {Sana}, H. and {Smoker}, J. and 
+	{Stefl}, S. and {Szeifert}, T.},
+    title = "{Optical atmospheric extinction over Cerro Paranal}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1011.6156},
+ primaryClass = "astro-ph.IM",
+ keywords = {techniques: spectroscopic, Earth, site testing, atmospheric effects},
+     year = 2011,
+    month = mar,
+   volume = 527,
+      eid = {A91},
+    pages = {A91},
+      doi = {10.1051/0004-6361/201015537},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...527A..91P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005JQSRT..91..233C,
+   author = {{Clough}, S.~A. and {Shephard}, M.~W. and {Mlawer}, E.~J. and 
+	{Delamere}, J.~S. and {Iacono}, M.~J. and {Cady-Pereira}, K. and 
+	{Boukabara}, S. and {Brown}, P.~D.},
+    title = "{Atmospheric radiative transfer modeling: a summary of the AER codes}",
+  journal = {\jqsrt},
+     year = 2005,
+    month = mar,
+   volume = 91,
+    pages = {233-244},
+      doi = {10.1016/j.jqsrt.2004.05.058},
+   adsurl = {http://adsabs.harvard.edu/abs/2005JQSRT..91..233C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...770...29C,
+   author = {{Childress}, M.~J. and {Scalzo}, R.~A. and {Sim}, S.~A. and 
+	{Tucker}, B.~E. and {Yuan}, F. and {Schmidt}, B.~P. and {Cenko}, S.~B. and 
+	{Silverman}, J.~M. and {Contreras}, C. and {Hsiao}, E.~Y. and 
+	{Phillips}, M. and {Morrell}, N. and {Jha}, S.~W. and {McCully}, C. and 
+	{Filippenko}, A.~V. and {Anderson}, J.~P. and {Benetti}, S. and 
+	{Bufano}, F. and {de Jaeger}, T. and {Forster}, F. and {Gal-Yam}, A. and 
+	{Le Guillou}, L. and {Maguire}, K. and {Maund}, J. and {Mazzali}, P.~A. and 
+	{Pignata}, G. and {Smartt}, S. and {Spyromilio}, J. and {Sullivan}, M. and 
+	{Taddia}, F. and {Valenti}, S. and {Bayliss}, D.~D.~R. and {Bessell}, M. and 
+	{Blanc}, G.~A. and {Carson}, D.~J. and {Clubb}, K.~I. and {de Burgh-Day}, C. and 
+	{Desjardins}, T.~D. and {Fang}, J.~J. and {Fox}, O.~D. and {Gates}, E.~L. and 
+	{Ho}, I.-T. and {Keller}, S. and {Kelly}, P.~L. and {Lidman}, C. and 
+	{Loaring}, N.~S. and {Mould}, J.~R. and {Owers}, M. and {Ozbilgen}, S. and 
+	{Pei}, L. and {Pickering}, T. and {Pracy}, M.~B. and {Rich}, J.~A. and 
+	{Schaefer}, B.~E. and {Scott}, N. and {Stritzinger}, M. and 
+	{Vogt}, F.~P.~A. and {Zhou}, G.},
+    title = "{Spectroscopic Observations of SN 2012fr: A Luminous, Normal Type Ia Supernova with Early High-velocity Features and a Late Velocity Plateau}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1302.2926},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: individual: NGC 1365, supernovae: general, supernovae: individual: SN 2012fr},
+     year = 2013,
+    month = jun,
+   volume = 770,
+      eid = {29},
+    pages = {29},
+      doi = {10.1088/0004-637X/770/1/29},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770...29C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJS..205...20M,
+   author = {{Magnier}, E.~A. and {Schlafly}, E. and {Finkbeiner}, D. and 
+	{Juric}, M. and {Tonry}, J.~L. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
+	{Flewelling}, H.~A. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
+	{Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W.~E. and 
+	{Stubbs}, C.~W.},
+    title = "{The Pan-STARRS 1 Photometric Reference Ladder, Release 12.01}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1303.3634},
+ primaryClass = "astro-ph.IM",
+ keywords = {catalogs, instrumentation: photometers, standards, surveys: PS1, techniques: photometric},
+     year = 2013,
+    month = apr,
+   volume = 205,
+      eid = {20},
+    pages = {20},
+      doi = {10.1088/0067-0049/205/2/20},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJS..205...20M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{Lor92,
+	author ={{Lord}, S.D.},
+	year = 1992,
+	journal ={NASA Technical Memorandum},
+	volume = 103957
+}
+
+@ARTICLE{2012ApJS..203...21A,
+   author = {{Ahn}, C.~P. and {Alexandroff}, R. and {Allende Prieto}, C. and 
+	{Anderson}, S.~F. and {Anderton}, T. and {Andrews}, B.~H. and 
+	{Aubourg}, {\'E}. and {Bailey}, S. and {Balbinot}, E. and {Barnes}, R. and et al.},
+    title = "{The Ninth Data Release of the Sloan Digital Sky Survey: First Spectroscopic Data from the SDSS-III Baryon Oscillation Spectroscopic Survey}",
+  journal = {\apjs},
+archivePrefix = "arXiv",
+   eprint = {1207.7137},
+ primaryClass = "astro-ph.IM",
+ keywords = {atlases, catalogs, surveys },
+     year = 2012,
+    month = dec,
+   volume = 203,
+      eid = {21},
+    pages = {21},
+      doi = {10.1088/0067-0049/203/2/21},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJS..203...21A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012PASP..124..668Y,
+   author = {{Yaron}, O. and {Gal-Yam}, A.},
+    title = "{WISeREP - An Interactive Supernova Data Repository}",
+  journal = {\pasp},
+archivePrefix = "arXiv",
+   eprint = {1204.1891},
+ primaryClass = "astro-ph.IM",
+ keywords = {Supernovae},
+     year = 2012,
+    month = jul,
+   volume = 124,
+    pages = {668-681},
+      doi = {10.1086/666656},
+   adsurl = {http://adsabs.harvard.edu/abs/2012PASP..124..668Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.440.1917D,
+   author = {{Dwarkadas}, V.~V.},
+    title = "{On the lack of X-ray bright Type IIP supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1402.5150},
+ primaryClass = "astro-ph.HE",
+ keywords = {shock waves, circumstellar matter, stars: massive, supernovae: general, stars: winds, outflows, X-rays: ISM},
+     year = 2014,
+    month = may,
+   volume = 440,
+    pages = {1917-1924},
+      doi = {10.1093/mnras/stu347},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.440.1917D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...759...20K,
+   author = {{Kochanek}, C.~S. and {Khan}, R. and {Dai}, X.},
+    title = "{On Absorption by Circumstellar Dust, with the Progenitor of SN 2012aw as a Case Study}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1208.4111},
+ primaryClass = "astro-ph.SR",
+ keywords = {dust, extinction, stars: evolution, supergiants, supernovae: general, supernovae: individual: SN2012aw},
+     year = 2012,
+    month = nov,
+   volume = 759,
+      eid = {20},
+    pages = {20},
+      doi = {10.1088/0004-637X/759/1/20},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759...20K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012MNRAS.419.2054W,
+   author = {{Walmswell}, J.~J. and {Eldridge}, J.~J.},
+    title = "{Circumstellar dust as a solution to the red supergiant supernova progenitor problem}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1109.4637},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supergiants, supernovae: general},
+     year = 2012,
+    month = jan,
+   volume = 419,
+    pages = {2054-2062},
+      doi = {10.1111/j.1365-2966.2011.19860.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.2054W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2008ApJ...684.1336K,
+   author = {{Kochanek}, C.~S. and {Beacom}, J.~F. and {Kistler}, M.~D. and 
+	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A. and 
+	{Y{\"u}ksel}, H.},
+    title = "{A Survey About Nothing: Monitoring a Million Supergiants for Failed Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0802.0456},
+ keywords = {Stars: Evolution, Stars: Supernovae: General, Surveys},
+     year = 2008,
+    month = sep,
+   volume = 684,
+    pages = {1336-1342},
+      doi = {10.1086/590053},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...684.1336K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013MNRAS.431L.102M,
+   author = {{Maund}, J.~R. and {Fraser}, M. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
+	{Barbarino}, C. and {Childress}, M. and {Gal-Yam}, A. and {Inserra}, C. and 
+	{Pignata}, G. and {Reichart}, D. and {Schmidt}, B. and {Sollerman}, J. and 
+	{Taddia}, F. and {Tomasella}, L. and {Valenti}, S. and {Yaron}, O.
+	},
+    title = "{Supernova 2012ec: identification of the progenitor and early monitoring with PESSTO}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1302.0170},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: 2012ec, galaxies: individual: NGC 1084},
+     year = 2013,
+    month = apr,
+   volume = 431,
+    pages = {L102-L106},
+      doi = {10.1093/mnrasl/slt017},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L.102M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013arXiv1302.2983V,
+   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
+	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
+	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
+	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
+	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
+	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
+	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
+	{Young}, D.~R.},
+    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint type I supernovae}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1302.2983},
+ primaryClass = "astro-ph.SR",
+ keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Cosmology and Extragalactic Astrophysics},
+     year = 2013,
+    month = feb,
+   adsurl = {http://adsabs.harvard.edu/abs/2013arXiv1302.2983V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996A&AS..117..393B,
+   author = {{Bertin}, E. and {Arnouts}, S.},
+    title = "{SExtractor: Software for source extraction.}",
+  journal = {\aaps},
+ keywords = {METHODS: DATA ANALYSIS, TECHNIQUES: IMAGE PROCESSING, GALAXIES: PHOTOMETRY},
+     year = 1996,
+    month = jun,
+   volume = 117,
+    pages = {393-404},
+   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..117..393B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006AJ....131.1163S,
+   author = {{Skrutskie}, M.~F. and {Cutri}, R.~M. and {Stiening}, R. and 
+	{Weinberg}, M.~D. and {Schneider}, S. and {Carpenter}, J.~M. and 
+	{Beichman}, C. and {Capps}, R. and {Chester}, T. and {Elias}, J. and 
+	{Huchra}, J. and {Liebert}, J. and {Lonsdale}, C. and {Monet}, D.~G. and 
+	{Price}, S. and {Seitzer}, P. and {Jarrett}, T. and {Kirkpatrick}, J.~D. and 
+	{Gizis}, J.~E. and {Howard}, E. and {Evans}, T. and {Fowler}, J. and 
+	{Fullmer}, L. and {Hurt}, R. and {Light}, R. and {Kopan}, E.~L. and 
+	{Marsh}, K.~A. and {McCallon}, H.~L. and {Tam}, R. and {Van Dyk}, S. and 
+	{Wheelock}, S.},
+    title = "{The Two Micron All Sky Survey (2MASS)}",
+  journal = {\aj},
+ keywords = {Catalogs, Infrared: General, Surveys},
+     year = 2006,
+    month = feb,
+   volume = 131,
+    pages = {1163-1183},
+      doi = {10.1086/498708},
+   adsurl = {http://adsabs.harvard.edu/abs/2006AJ....131.1163S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{swarp,
+   author = {{Bertin}, E. and {Mellier}, Y. and {Radovich}, M. and {Missonnier}, G. and 
+	{Didelon}, P. and {Morin}, B.},
+    title = "{The TERAPIX Pipeline}",
+ keywords = {astronomy: optical, astronomy: software, pipelines: data reduction, software: package, software: development, software: data analysis, data analysis, databases, distributed processing},
+booktitle = {Astronomical Data Analysis Software and Systems XI},
+     year = 2002,
+   series = {Astronomical Society of the Pacific Conference Series},
+   volume = 281,
+   editor = {{Bohlender}, D.~A. and {Durand}, D. and {Handley}, T.~H.},
+    pages = {228},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ASPC..281..228B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ApJ...696..870D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
+	{Beshore}, E. and {Larson}, S. and {Graham}, M.~J. and {Williams}, R. and 
+	{Christensen}, E. and {Catelan}, M. and {Boattini}, A. and {Gibbs}, A. and 
+	{Hill}, R. and {Kowalski}, R.},
+    title = "{First Results from the Catalina Real-Time Transient Survey}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0809.1394},
+ keywords = {BL Lacertae objects: general, galaxies: general, novae, cataclysmic variables, stars: flare, supernovae: general},
+     year = 2009,
+    month = may,
+   volume = 696,
+    pages = {870-884},
+      doi = {10.1088/0004-637X/696/1/870},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...696..870D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...735..106D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
+	{Anderson}, J. and {Roy}, R. and {Mohan}, V. and {Ravindranath}, S. and 
+	{Frail}, D. and {Gezari}, S. and {Neill}, J.~D. and {Ho}, L.~C. and 
+	{Prieto}, J.~L. and {Thompson}, D. and {Thorstensen}, J. and 
+	{Wagner}, M. and {Kowalski}, R. and {Chiang}, J. and {Grove}, J.~E. and 
+	{Schinzel}, F.~K. and {Wood}, D.~L. and {Carrasco}, L. and {Recillas}, E. and 
+	{Kewley}, L. and {Archana}, K.~N. and {Basu}, A. and {Wadadekar}, Y. and 
+	{Kumar}, B. and {Myers}, A.~D. and {Phinney}, E.~S. and {Williams}, R. and 
+	{Graham}, M.~J. and {Catelan}, M. and {Beshore}, E. and {Larson}, S. and 
+	{Christensen}, E.},
+    title = "{The Discovery and Nature of the Optical Transient CSS100217:102913+404220}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1103.5514},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: active, galaxies: nuclei, galaxies: stellar content, supernovae: general},
+     year = 2011,
+    month = jul,
+   volume = 735,
+      eid = {106},
+    pages = {106},
+      doi = {10.1088/0004-637X/735/2/106},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...735..106D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...718L.127D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Prieto}, J.~L. and 
+	{Mahabal}, A. and {Balam}, D. and {Williams}, R. and {Graham}, M.~J. and 
+	{Catelan}, M. and {Beshore}, E. and {Larson}, S.},
+    title = "{Discovery of the Extremely Energetic Supernova 2008fz}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0908.1990},
+ primaryClass = "astro-ph.HE",
+ keywords = {galaxies: stellar content, supernovae: general, supernovae: individual: SN 2008fz},
+     year = 2010,
+    month = aug,
+   volume = 718,
+    pages = {L127-L131},
+      doi = {10.1088/2041-8205/718/2/L127},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...718L.127D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2010ApJ...724L..16P,
+   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
+	{Maguire}, K. and {Fraser}, M. and {Smith}, K. and {Kotak}, R. and 
+	{Magill}, L. and {Valenti}, S. and {Young}, D.~R. and {Gezari}, S. and 
+	{Bresolin}, F. and {Kudritzki}, R. and {Howell}, D.~A. and {Rest}, A. and 
+	{Metcalfe}, N. and {Mattila}, S. and {Kankare}, E. and {Huang}, K.~Y. and 
+	{Urata}, Y. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Dombeck}, T. and 
+	{Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
+	{Kaiser}, N. and {Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
+	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
+	{Rhoads}, P.~H. and {Siegmund}, W.~A. and {Stubbs}, C.~W. and 
+	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waterson}, M.~F. and {Waters}, C. and {Wynn-Williams}, C.~G.
+	},
+    title = "{Ultra-bright Optical Transients are Linked with Type Ic Supernovae}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1008.2674},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: SN 2010gx SCP-06F6 SN 2005ap},
+     year = 2010,
+    month = nov,
+   volume = 724,
+    pages = {L16-L21},
+      doi = {10.1088/2041-8205/724/1/L16},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...724L..16P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...681L...9P,
+   author = {{Prieto}, J.~L. and {Kistler}, M.~D. and {Thompson}, T.~A. and 
+	{Y{\"u}ksel}, H. and {Kochanek}, C.~S. and {Stanek}, K.~Z. and 
+	{Beacom}, J.~F. and {Martini}, P. and {Pasquali}, A. and {Bechtold}, J.
+	},
+    title = "{Discovery of the Dust-Enshrouded Progenitor of SN 2008S with Spitzer}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0803.0324},
+ keywords = {Stars: Evolution, Stars: Supernovae: General, Surveys},
+     year = 2008,
+    month = jul,
+   volume = 681,
+    pages = {L9-L12},
+      doi = {10.1086/589922},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...681L...9P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2013ApJ...770..128I,
+   author = {{Inserra}, C. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Valenti}, S. and 
+	{Fraser}, M. and {Wright}, D. and {Smith}, K. and {Chen}, T.-W. and 
+	{Kotak}, R. and {Pastorello}, A. and {Nicholl}, M. and {Bresolin}, F. and 
+	{Kudritzki}, R.~P. and {Benetti}, S. and {Botticella}, M.~T. and 
+	{Burgett}, W.~S. and {Chambers}, K.~C. and {Ergon}, M. and {Flewelling}, H. and 
+	{Fynbo}, J.~P.~U. and {Geier}, S. and {Hodapp}, K.~W. and {Howell}, D.~A. and 
+	{Huber}, M. and {Kaiser}, N. and {Leloudas}, G. and {Magill}, L. and 
+	{Magnier}, E.~A. and {McCrum}, M.~G. and {Metcalfe}, N. and 
+	{Price}, P.~A. and {Rest}, A. and {Sollerman}, J. and {Sweeney}, W. and 
+	{Taddia}, F. and {Taubenberger}, S. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
+	{Waters}, C. and {Young}, D.},
+    title = "{Super-luminous Type Ic Supernovae: Catching a Magnetar by the Tail}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1304.3320},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: magnetars, supernovae: general, supernovae: individual: PTF10hgi PTF11rks SN 2011ke SN 2011kf SN 2012il},
+     year = 2013,
+    month = jun,
+   volume = 770,
+      eid = {128},
+    pages = {128},
+      doi = {10.1088/0004-637X/770/2/128},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770..128I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012Msngr.150...34B,
+   author = {{Baltay}, C. and {Rabinowitz}, D. and {Hadjiyska}, E. and {Schwamb}, M. and 
+	{Ellman}, N. and {Zinn}, R. and {Tourtellotte}, S. and {McKinnon}, R. and 
+	{Horowitz}, B. and {Effron}, A. and {Nugent}, P.},
+    title = "{The La Silla-QUEST Southern Hemisphere Variability Survey}",
+  journal = {The Messenger},
+     year = 2012,
+    month = dec,
+   volume = 150,
+    pages = {34-38},
+   adsurl = {http://adsabs.harvard.edu/abs/2012Msngr.150...34B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...718L.127D,
+   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Prieto}, J.~L. and 
+	{Mahabal}, A. and {Balam}, D. and {Williams}, R. and {Graham}, M.~J. and 
+	{Catelan}, M. and {Beshore}, E. and {Larson}, S.},
+    title = "{Discovery of the Extremely Energetic Supernova 2008fz}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0908.1990},
+ primaryClass = "astro-ph.HE",
+ keywords = {galaxies: stellar content, supernovae: general, supernovae: individual: SN 2008fz},
+     year = 2010,
+    month = aug,
+   volume = 718,
+    pages = {L127-L131},
+      doi = {10.1088/2041-8205/718/2/L127},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...718L.127D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...686..467S,
+   author = {{Smith}, N. and {Chornock}, R. and {Li}, W. and {Ganeshalingam}, M. and 
+	{Silverman}, J.~M. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
+	{Barth}, A.~J.},
+    title = "{SN 2006tf: Precursor Eruptions and the Optically Thick Regime of Extremely Luminous Type IIn Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0804.0042},
+ keywords = {Stars: Circumstellar Matter, Stars: Evolution, Stars: Mass Loss, Stars: Winds, Outflows, supernovae: individual (SN 2006tf)},
+     year = 2008,
+    month = oct,
+   volume = 686,
+    pages = {467-484},
+      doi = {10.1086/591021},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...686..467S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007ApJ...659L..13O,
+   author = {{Ofek}, E.~O. and {Cameron}, P.~B. and {Kasliwal}, M.~M. and 
+	{Gal-Yam}, A. and {Rau}, A. and {Kulkarni}, S.~R. and {Frail}, D.~A. and 
+	{Chandra}, P. and {Cenko}, S.~B. and {Soderberg}, A.~M. and 
+	{Immler}, S.},
+    title = "{SN 2006gy: An Extremely Luminous Supernova in the Galaxy NGC 1260}",
+  journal = {\apjl},
+   eprint = {astro-ph/0612408},
+ keywords = {galaxies: individual (NGC 1260), Stars: Supernovae: General, supernovae: individual (SN 2006gy)},
+     year = 2007,
+    month = apr,
+   volume = 659,
+    pages = {L13-L16},
+      doi = {10.1086/516749},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...659L..13O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013Natur.494...65O,
+   author = {{Ofek}, E.~O. and {Sullivan}, M. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
+	{Gal-Yam}, A. and {Kulkarni}, S.~R. and {Arcavi}, I. and {Bildsten}, L. and 
+	{Bloom}, J.~S. and {Horesh}, A. and {Howell}, D.~A. and {Filippenko}, A.~V. and 
+	{Laher}, R. and {Murray}, D. and {Nakar}, E. and {Nugent}, P.~E. and 
+	{Silverman}, J.~M. and {Shaviv}, N.~J. and {Surace}, J. and 
+	{Yaron}, O.},
+    title = "{An outburst from a massive star 40days before a supernova explosion}",
+  journal = {\nat},
+archivePrefix = "arXiv",
+   eprint = {1302.2633},
+ primaryClass = "astro-ph.HE",
+     year = 2013,
+    month = feb,
+   volume = 494,
+    pages = {65-67},
+      doi = {10.1038/nature11877},
+   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.494...65O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+@ARTICLE{2014ApJ...789..104O,
+   author = {{Ofek}, E.~O. and {Sullivan}, M. and {Shaviv}, N.~J. and {Steinbok}, A. and 
+	{Arcavi}, I. and {Gal-Yam}, A. and {Tal}, D. and {Kulkarni}, S.~R. and 
+	{Nugent}, P.~E. and {Ben-Ami}, S. and {Kasliwal}, M.~M. and 
+	{Cenko}, S.~B. and {Laher}, R. and {Surace}, J. and {Bloom}, J.~S. and 
+	{Filippenko}, A.~V. and {Silverman}, J.~M. and {Yaron}, O.},
+    title = "{Precursors Prior to Type IIn Supernova Explosions are Common: Precursor Rates, Properties, and Correlations}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1401.5468},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: mass-loss, supernovae: general, supernovae: individual: SN 2010mc PTF 10bjb SN 2011ht PTF 10weh PTF 12cxj SN 2009ip},
+     year = 2014,
+    month = jul,
+   volume = 789,
+      eid = {104},
+    pages = {104},
+      doi = {10.1088/0004-637X/789/2/104},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...789..104O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013ApJ...767....1P,
+   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
+	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
+	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
+	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
+	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
+	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
+	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
+	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
+	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
+	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
+	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
+	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
+	{Wright}, D.},
+    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1210.3568},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {1},
+    pages = {1},
+      doi = {10.1088/0004-637X/767/1/1},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013RSPTA.37120239H,
+   author = {{Hodgkin}, S.~T. and {Wyrzykowski}, L. and {Blagorodnova}, N. and 
+	{Koposov}, S.},
+    title = "{Transient astronomy with the Gaia satellite}",
+  journal = {Royal Society of London Philosophical Transactions Series A},
+     year = 2013,
+    month = apr,
+   volume = 371,
+    pages = {20239},
+      doi = {10.1098/rsta.2012.0239},
+   adsurl = {http://esoads.eso.org/abs/2013RSPTA.37120239H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013RSPTA.37120498O,
+   author = {{O'Brien}, P.~T. and {Smartt}, S.~J.},
+    title = "{Interpreting signals from astrophysical transient experiments}",
+  journal = {Royal Society of London Philosophical Transactions Series A},
+archivePrefix = "arXiv",
+   eprint = {1306.0792},
+ primaryClass = "astro-ph.IM",
+     year = 2013,
+    month = apr,
+   volume = 371,
+    pages = {20498},
+      doi = {10.1098/rsta.2012.0498},
+   adsurl = {http://esoads.eso.org/abs/2013RSPTA.37120498O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115.1220F,
+   author = {{Foley}, R.~J. and {Papenkova}, M.~S. and {Swift}, B.~J. and 
+	{Filippenko}, A.~V. and {Li}, W. and {Mazzali}, P.~A. and {Chornock}, R. and 
+	{Leonard}, D.~C. and {Van Dyk}, S.~D.},
+    title = "{Optical Photometry and Spectroscopy of the SN 1998bw-like Type Ic Supernova 2002ap}",
+  journal = {\pasp},
+   eprint = {astro-ph/0307136},
+ keywords = {gamma-rays: bursts, line: identification, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1985F, Stars: Supernovae: Individual: Alphanumeric: SN 1994I, Stars: Supernovae: Individual: Alphanumeric: SN 1998bw, Stars: Supernovae: Individual: Alphanumeric: SN 1999ex, supernovae: individual (SN 2002ap)},
+     year = 2003,
+    month = oct,
+   volume = 115,
+    pages = {1220-1235},
+      doi = {10.1086/378242},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115.1220F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996AJ....111..327R,
+   author = {{Richmond}, M.~W. and {van Dyk}, S.~D. and {Ho}, W. and {Peng}, C.~Y. and 
+	{Paik}, Y. and {Treffers}, R.~R. and {Filippenko}, A.~V. and 
+	{Bustamante-Donas}, J. and {Moeller}, M. and {Pawellek}, C. and 
+	{Tartara}, H. and {Spence}, M.},
+    title = "{UBVRI Photometry of the Type IC SN 1994I in M51}",
+  journal = {\aj},
+ keywords = {GALAXIES: INDIVIDUAL: M51, SUPERNOVAE: INDIVIDUAL: SN 1994I},
+     year = 1996,
+    month = jan,
+   volume = 111,
+    pages = {327},
+      doi = {10.1086/117785},
+   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111..327R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002AJ....124.2490L,
+   author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Li}, W. and {Matheson}, T. and 
+	{Kirshner}, R.~P. and {Chornock}, R. and {Van Dyk}, S.~D. and 
+	{Berlind}, P. and {Calkins}, M.~L. and {Challis}, P.~M. and 
+	{Garnavich}, P.~M. and {Jha}, S. and {Mahdavi}, A.},
+    title = "{A Study of the Type II-Plateau Supernova 1999gi and the Distance to its Host Galaxy, NGC 3184}",
+  journal = {\aj},
+   eprint = {astro-ph/0207601},
+ keywords = {Cosmology: Distance Scale, Galaxies: Individual: NGC Number: NGC 3184, Stars: Supernovae: Individual: Alphanumeric: SN 1999gi},
+     year = 2002,
+    month = nov,
+   volume = 124,
+    pages = {2490-2505},
+      doi = {10.1086/343771},
+   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....124.2490L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000PASP..112.1532V,
+   author = {{Van Dyk}, S.~D. and {Peng}, C.~Y. and {King}, J.~Y. and {Filippenko}, A.~V. and 
+	{Treffers}, R.~R. and {Li}, W. and {Richmond}, M.~W.},
+    title = "{SN 1997bs in M66: Another Extragalactic {$\eta$} Carinae Analog?}",
+  journal = {\pasp},
+   eprint = {astro-ph/0009027},
+ keywords = {Galaxies: Individual: NGC Number: NGC 3627, Galaxies: Stellar Content, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, supernovae: individual (SN 1997bs)},
+     year = 2000,
+    month = dec,
+   volume = 112,
+    pages = {1532-1541},
+      doi = {10.1086/317727},
+   adsurl = {http://adsabs.harvard.edu/abs/2000PASP..112.1532V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572..932P,
+   author = {{Pooley}, D. and {Lewin}, W.~H.~G. and {Fox}, D.~W. and {Miller}, J.~M. and 
+	{Lacey}, C.~K. and {Van Dyk}, S.~D. and {Weiler}, K.~W. and 
+	{Sramek}, R.~A. and {Filippenko}, A.~V. and {Leonard}, D.~C. and 
+	{Immler}, S. and {Chevalier}, R.~A. and {Fabian}, A.~C. and 
+	{Fransson}, C. and {Nomoto}, K.},
+    title = "{X-Ray, Optical, and Radio Observations of the Type II Supernovae 1999em and 1998S}",
+  journal = {\apj},
+   eprint = {astro-ph/0103196},
+ keywords = {Radio Continuum: ISM, Stars: Mass Loss, Stars: Supernovae: Individual: Alphanumeric: SN 1998S, Stars: Supernovae: Individual: Alphanumeric: SN 1999em, X-Rays: Individual: Alphanumeric: SN 1998S, X-Rays: Individual: Alphanumeric: SN 1999em, X-Rays: ISM},
+     year = 2002,
+    month = jun,
+   volume = 572,
+    pages = {932-943},
+      doi = {10.1086/340346},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572..932P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...641.1060L,
+   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
+	{Jha}, S. and {Bloom}, J.~S. and {Riess}, A.~G. and {Livio}, M.
+	},
+    title = "{Identification of the Red Supergiant Progenitor of Supernova 2005cs: Do the Progenitors of Type II-P Supernovae Have Low Mass?}",
+  journal = {\apj},
+   eprint = {astro-ph/0507394},
+ keywords = {Galaxies: Individual: Messier Number: M51, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 2005cs)},
+     year = 2006,
+    month = apr,
+   volume = 641,
+    pages = {1060-1070},
+      doi = {10.1086/499916},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...641.1060L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...665..608M,
+   author = {{Meikle}, W.~P.~S. and {Mattila}, S. and {Pastorello}, A. and 
+	{Gerardy}, C.~L. and {Kotak}, R. and {Sollerman}, J. and {Van Dyk}, S.~D. and 
+	{Farrah}, D. and {Filippenko}, A.~V. and {H{\"o}flich}, P. and 
+	{Lundqvist}, P. and {Pozzo}, M. and {Wheeler}, J.~C.},
+    title = "{A Spitzer Space Telescope Study of SN 2003gd: Still No Direct Evidence that Core-Collapse Supernovae are Major Dust Factories}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0705.1439},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd)},
+     year = 2007,
+    month = aug,
+   volume = 665,
+    pages = {608-617},
+      doi = {10.1086/519733},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...665..608M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1995AJ....109.2121R,
+   author = {{Richmond}, M.~W. and {Treffers}, R.~R. and {Filippenko}, A.~V. and 
+	{van Dyk}, S.~D. and {Paik}, Y. and {Peng}, C. and {Marschall}, L.~A. and 
+	{Laaksonen}, B.~D. and {Macintosh}, B. and {McLean}, I.~S.},
+    title = "{UBVRI Photometry of the Type IA SN 1994D in NGC 4526}",
+  journal = {\aj},
+ keywords = {SUPERNOVAE: INDIVIDUAL: SN 1994D},
+     year = 1995,
+    month = may,
+   volume = 109,
+    pages = {2121},
+      doi = {10.1086/117437},
+   adsurl = {http://adsabs.harvard.edu/abs/1995AJ....109.2121R},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ApJ...704..306K,
+   author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Farrah}, D. and {Gerardy}, C.~L. and 
+	{Foley}, R.~J. and {Van Dyk}, S.~D. and {Fransson}, C. and {Lundqvist}, P. and 
+	{Sollerman}, J. and {Fesen}, R. and {Filippenko}, A.~V. and 
+	{Mattila}, S. and {Silverman}, J.~M. and {Andersen}, A.~C. and 
+	{H{\"o}flich}, P.~A. and {Pozzo}, M. and {Wheeler}, J.~C.},
+    title = "{Dust and The Type II-Plateau Supernova 2004et}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0904.3737},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, dust, extinction, supernovae: general, supernovae: individual: SN 2004et},
+     year = 2009,
+    month = oct,
+   volume = 704,
+    pages = {306-323},
+      doi = {10.1088/0004-637X/704/1/306},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...704..306K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996AJ....111.2017V,
+   author = {{van Dyk}, S.~D. and {Hamuy}, M. and {Filippenko}, A.~V.},
+    title = "{Supernovae and Massive Star Formation Regions}",
+  journal = {\aj},
+ keywords = {GALAXY: EVOLUTION, SUPERNOVAE: GENERAL, HII REGIONS, STARS: FORMATION},
+     year = 1996,
+    month = may,
+   volume = 111,
+    pages = {2017},
+      doi = {10.1086/117937},
+   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.2017V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115.1289V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{On the Progenitor of the Type II-Plateau Supernova 2003gd in M74}",
+  journal = {\pasp},
+   eprint = {astro-ph/0307226},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd), supernovae: individual (1999em), Stars: Evolution, Stars: Variables: Other, galaxies: individual (M74), Galaxies: Individual: NGC Number: NGC 628},
+     year = 2003,
+    month = nov,
+   volume = 115,
+    pages = {1289-1295},
+      doi = {10.1086/378308},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115.1289V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJ...572..350F,
+   author = {{Fransson}, C. and {Chevalier}, R.~A. and {Filippenko}, A.~V. and 
+	{Leibundgut}, B. and {Barth}, A.~J. and {Fesen}, R.~A. and {Kirshner}, R.~P. and 
+	{Leonard}, D.~C. and {Li}, W. and {Lundqvist}, P. and {Sollerman}, J. and 
+	{Van Dyk}, S.~D.},
+    title = "{Optical and Ultraviolet Spectroscopy of SN 1995N: Evidence for Strong Circumstellar Interaction}",
+  journal = {\apj},
+   eprint = {astro-ph/0108149},
+ keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: Individual: Alphanumeric: SN 1995N},
+     year = 2002,
+    month = jun,
+   volume = 572,
+    pages = {350-370},
+      doi = {10.1086/340295},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572..350F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...661.1013L,
+   author = {{Li}, W. and {Wang}, X. and {Van Dyk}, S.~D. and {Cuillandre}, J.-C. and 
+	{Foley}, R.~J. and {Filippenko}, A.~V.},
+    title = "{On the Progenitors of Two Type II-P Supernovae in the Virgo Cluster}",
+  journal = {\apj},
+   eprint = {astro-ph/0701049},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2006my), supernovae: individual (SN 2006ov), Stars: Evolution},
+     year = 2007,
+    month = jun,
+   volume = 661,
+    pages = {1013-1024},
+      doi = {10.1086/516747},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...661.1013L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005PASP..117..121L,
+   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C.
+	},
+    title = "{On the Progenitor of the Type II Supernova 2004et in NGC 6946}",
+  journal = {\pasp},
+   eprint = {astro-ph/0412487},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2004et), Stars: Evolution, Galaxies: Individual: NGC Number: NGC 6946},
+     year = 2005,
+    month = feb,
+   volume = 117,
+    pages = {121-131},
+      doi = {10.1086/428278},
+   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..121L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012MNRAS.425.1789S,
+   author = {{Silverman}, J.~M. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
+	{Ganeshalingam}, M. and {Barth}, A.~J. and {Chornock}, R. and 
+	{Griffith}, C.~V. and {Kong}, J.~J. and {Lee}, N. and {Leonard}, D.~C. and 
+	{Matheson}, T. and {Miller}, E.~G. and {Steele}, T.~N. and {Barris}, B.~J. and 
+	{Bloom}, J.~S. and {Cobb}, B.~E. and {Coil}, A.~L. and {Desroches}, L.-B. and 
+	{Gates}, E.~L. and {Ho}, L.~C. and {Jha}, S.~W. and {Kandrashoff}, M.~T. and 
+	{Li}, W. and {Mandel}, K.~S. and {Modjaz}, M. and {Moore}, M.~R. and 
+	{Mostardi}, R.~E. and {Papenkova}, M.~S. and {Park}, S. and 
+	{Perley}, D.~A. and {Poznanski}, D. and {Reuter}, C.~A. and 
+	{Scala}, J. and {Serduke}, F.~J.~D. and {Shields}, J.~C. and 
+	{Swift}, B.~J. and {Tonry}, J.~L. and {Van Dyk}, S.~D. and {Wang}, X. and 
+	{Wong}, D.~S.},
+    title = "{Berkeley Supernova Ia Program - I. Observations, data reduction and spectroscopic sample of 582 low-redshift Type Ia supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1202.2128},
+ primaryClass = "astro-ph.CO",
+ keywords = {surveys, supernovae: general, cosmology: observations, distance scale },
+     year = 2012,
+    month = sep,
+   volume = 425,
+    pages = {1789-1818},
+      doi = {10.1111/j.1365-2966.2012.21270.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.425.1789S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115....1V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images}",
+  journal = {\pasp},
+   eprint = {astro-ph/0210347},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 1998Y), supernovae: individual (SN 1999an), supernovae: individual (SN 1999br), supernovae: individual (SN 1999bu), supernovae: individual (SN 1999bx), supernovae: individual (SN 1999dn), supernovae: individual (SN 1999ec), supernovae: individual (SN 1999ev), supernovae: individual (SN 2000C), supernovae: individual (SN 2000ds), supernovae: individual (SN 2000ew), supernovae: individual (SN 2001B), supernovae: individual (SN 2001ai), supernovae: individual (SN 2001ci), supernovae: individual (SN 2001du), supernovae: individual (SN 2001is), Stars: Evolution, Stars: Variables: Other, galaxies: individual (IC 755), Galaxies: Individual: NGC Number: NGC 1961, Galaxies: Individual: NGC Number: NGC 1365, Galaxies: Individual: NGC Number: NGC 2207, galaxies: individual (NGC 2415), galaxies: individual (NGC 2768), Galaxies: Individual: NGC Number: NGC 3079, galaxies: individual (NGC 3786), Galaxies: Individual: NGC Number: NGC 3810, galaxies: individual (NGC 4274), galaxies: individual (NGC 4900), galaxies: individual (NGC 5278), galaxies: individual (NGC 6745), Galaxies: Individual: NGC Number: NGC 7714, galaxies: individual (IC 391)},
+     year = 2003,
+    month = jan,
+   volume = 115,
+    pages = {1-20},
+      doi = {10.1086/345748},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115....1V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2007ApJ...656..372G,
+   author = {{Gal-Yam}, A. and {Leonard}, D.~C. and {Fox}, D.~B. and {Cenko}, S.~B. and 
+	{Soderberg}, A.~M. and {Moon}, D.-S. and {Sand}, D.~J. and {Caltech Core Collapse Program} and 
+	{Li}, W. and {Filippenko}, A.~V. and {Aldering}, G. and {Copin}, Y.
+	},
+    title = "{On the Progenitor of SN 2005gl and the Nature of Type IIn Supernovae}",
+  journal = {\apj},
+   eprint = {astro-ph/0608029},
+ keywords = {Instrumentation: Adaptive Optics, Stars: Supernovae: General, supernovae: individual (SN 2005gl)},
+     year = 2007,
+    month = feb,
+   volume = 656,
+    pages = {372-381},
+      doi = {10.1086/510523},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...656..372G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1999AJ....118.2331V,
+   author = {{Van Dyk}, S.~D. and {Peng}, C.~Y. and {Barth}, A.~J. and {Filippenko}, A.~V.
+	},
+    title = "{The Environments of Supernovae in Post-Refurbishment Hubble Space Telescope Images}",
+  journal = {\aj},
+   eprint = {astro-ph/9907252},
+ keywords = {STARS: COLOR-MAGNITUDE DIAGRAMS, GALAXIES: GENERAL, GALAXIES: STAR CLUSTERS, GALAXIES: STELLAR CONTENT, STARS: SUPERNOVAE: GENERAL},
+     year = 1999,
+    month = nov,
+   volume = 118,
+    pages = {2331-2349},
+      doi = {10.1086/301068},
+   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....118.2331V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...757...69U,
+   author = {{Ugliano}, M. and {Janka}, H.-T. and {Marek}, A. and {Arcones}, A.
+	},
+    title = "{Progenitor-explosion Connection and Remnant Birth Masses for Neutrino-driven Supernovae of Iron-core Progenitors}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1205.3657},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: massive, stars: neutron, supernovae: general},
+     year = 2012,
+    month = sep,
+   volume = 757,
+      eid = {69},
+    pages = {69},
+      doi = {10.1088/0004-637X/757/1/69},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...757...69U},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...730...70O,
+   author = {{O'Connor}, E. and {Ott}, C.~D.},
+    title = "{Black Hole Formation in Failing Core-Collapse Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1010.5550},
+ primaryClass = "astro-ph.HE",
+ keywords = {black hole physics, equation of state, hydrodynamics, neutrinos, stars: evolution, stars: mass-loss, stars: neutron, supernovae: general},
+     year = 2011,
+    month = apr,
+   volume = 730,
+      eid = {70},
+    pages = {70},
+      doi = {10.1088/0004-637X/730/2/70},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...730...70O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...747...23S,
+   author = {{Szczygie{\l}}, D.~M. and {Gerke}, J.~R. and {Kochanek}, C.~S. and 
+	{Stanek}, K.~Z.},
+    title = "{Discovery of Variability of the Progenitor of SN 2011dh in M 51 Using the Large Binocular Telescope}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1110.2783},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, supernovae: individual: SN 2011dh},
+     year = 2012,
+    month = mar,
+   volume = 747,
+      eid = {23},
+    pages = {23},
+      doi = {10.1088/0004-637X/747/1/23},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...747...23S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...741L..28V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
+	{Horesh}, A. and {Ofek}, E.~O. and {Kraus}, A.~L. and {Silverman}, J.~M. and 
+	{Arcavi}, I. and {Filippenko}, A.~V. and {Gal-Yam}, A. and {Quimby}, R.~M. and 
+	{Kulkarni}, S.~R. and {Yaron}, O. and {Polishook}, D.},
+    title = "{The Progenitor of Supernova 2011dh/PTF11eon in Messier 51}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1106.2897},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: individual: NGC 5194, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh},
+     year = 2011,
+    month = nov,
+   volume = 741,
+      eid = {L28},
+    pages = {L28},
+      doi = {10.1088/2041-8205/741/2/L28},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741L..28V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014arXiv1411.1761G,
+   author = {{Gerke}, J.~R. and {Kochanek}, C.~S. and {Stanek}, K.~Z.},
+    title = "{The Search for Failed Supernovae with The Large Binocular Telescope: First Candidates}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1411.1761},
+ primaryClass = "astro-ph.SR",
+ keywords = {Astrophysics - Solar and Stellar Astrophysics},
+     year = 2014,
+    month = nov,
+   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1411.1761G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2007ApJ...661..995G,
+   author = {{Gerardy}, C.~L. and {Meikle}, W.~P.~S. and {Kotak}, R. and 
+	{H{\"o}flich}, P. and {Farrah}, D. and {Filippenko}, A.~V. and 
+	{Foley}, R.~J. and {Lundqvist}, P. and {Mattila}, S. and {Pozzo}, M. and 
+	{Sollerman}, J. and {Van Dyk}, S.~D. and {Wheeler}, J.~C.},
+    title = "{Signatures of Delayed Detonation, Asymmetry, and Electron Capture in the Mid-Infrared Spectra of Supernovae 2003hv and 2005df}",
+  journal = {\apj},
+   eprint = {astro-ph/0702117},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003hv), supernovae: individual (SN 2005df)},
+     year = 2007,
+    month = jun,
+   volume = 661,
+    pages = {995-1012},
+      doi = {10.1086/516728},
+   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...661..995G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.446.2689E,
+   author = {{Eldridge}, J.~J. and {Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J.
+	},
+    title = "{Possible binary progenitors for the Type Ib supernova iPTF13bvn}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1408.4142},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, binaries: general, supernovae: general, supernovae: individual: iPTF13bvn},
+     year = 2015,
+    month = jan,
+   volume = 446,
+    pages = {2689-2695},
+      doi = {10.1093/mnras/stu2197},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.2689E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+
+@ARTICLE{2013ApJ...775L...7C,
+   author = {{Cao}, Y. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Horesh}, A. and 
+	{Hancock}, P. and {Valenti}, S. and {Cenko}, S.~B. and {Kulkarni}, S.~R. and 
+	{Gal-Yam}, A. and {Gorbikov}, E. and {Ofek}, E.~O. and {Sand}, D. and 
+	{Yaron}, O. and {Graham}, M. and {Silverman}, J.~M. and {Wheeler}, J.~C. and 
+	{Marion}, G.~H. and {Walker}, E.~S. and {Mazzali}, P. and {Howell}, D.~A. and 
+	{Li}, K.~L. and {Kong}, A.~K.~H. and {Bloom}, J.~S. and {Nugent}, P.~E. and 
+	{Surace}, J. and {Masci}, F. and {Carpenter}, J. and {Degenaar}, N. and 
+	{Gelino}, C.~R.},
+    title = "{Discovery, Progenitor and Early Evolution of a Stripped Envelope Supernova iPTF13bvn}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1307.1470},
+ primaryClass = "astro-ph.SR",
+ keywords = {instrumentation: adaptive optics, shock waves, stars: Wolf-Rayet, supernovae: individual: iPTF13bvn, surveys},
+     year = 2013,
+    month = sep,
+   volume = 775,
+      eid = {L7},
+    pages = {L7},
+      doi = {10.1088/2041-8205/775/1/L7},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775L...7C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014AJ....148...68B,
+   author = {{Bersten}, M.~C. and {Benvenuto}, O.~G. and {Folatelli}, G. and 
+	{Nomoto}, K. and {Kuncarayakti}, H. and {Srivastav}, S. and 
+	{Anupama}, G.~C. and {Quimby}, R. and {Sahu}, D.~K.},
+    title = "{iPTF13bvn: The First Evidence of a Binary Progenitor for a Type Ib Supernova}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1403.7288},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supernovae: general, supernovae: individual: iPTF13bvn},
+     year = 2014,
+    month = oct,
+   volume = 148,
+      eid = {68},
+    pages = {68},
+      doi = {10.1088/0004-6256/148/4/68},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....148...68B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014A&A...565A.114F,
+   author = {{Fremling}, C. and {Sollerman}, J. and {Taddia}, F. and {Ergon}, M. and 
+	{Valenti}, S. and {Arcavi}, I. and {Ben-Ami}, S. and {Cao}, Y. and 
+	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Gal-Yam}, A. and 
+	{Howell}, D.~A.},
+    title = "{The rise and fall of the Type Ib supernova iPTF13bvn. Not a massive Wolf-Rayet star}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1403.6708},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: iPTF13bvn},
+     year = 2014,
+    month = may,
+   volume = 565,
+      eid = {A114},
+    pages = {A114},
+      doi = {10.1051/0004-6361/201423884},
+   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...565A.114F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2013A&A...550L...7G,
+   author = {{Groh}, J.~H. and {Meynet}, G. and {Ekstr{\"o}m}, S.},
+    title = "{Massive star evolution: luminous blue variables as unexpected supernova progenitors}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1301.1519},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supernovae: general, stars: massive, stars: winds, outflows, stars: fundamental parameters, stars: rotation},
+     year = 2013,
+    month = feb,
+   volume = 550,
+      eid = {L7},
+    pages = {L7},
+      doi = {10.1051/0004-6361/201220741},
+   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...550L...7G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015MNRAS.449.1876S,
+   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
+	{Silverman}, J.~M. and {Filippenko}, A.~V. and {Gal-Yam}, A. and 
+	{Clubb}, K.~I. and {Graham}, M.~L. and {Leonard}, D.~C. and 
+	{Horst}, J.~C. and {Williams}, G.~G. and {Andrews}, J.~E. and 
+	{Kulkarni}, S.~R. and {Nugent}, P. and {Sullivan}, M. and {Maguire}, K. and 
+	{Xu}, D. and {Ben-Ami}, S.},
+    title = "{PTF11iqb: cool supergiant mass-loss that bridges the gap between Type IIn and normal supernovae}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1501.02820},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: PTF11iqb, stars: winds, outflows},
+     year = 2015,
+    month = may,
+   volume = 449,
+    pages = {1876-1896},
+      doi = {10.1093/mnras/stv354},
+   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.1876S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2015A&A...573A..12J,
+   author = {{Jerkstrand}, A. and {Ergon}, M. and {Smartt}, S.~J. and {Fransson}, C. and 
+	{Sollerman}, J. and {Taubenberger}, S. and {Bersten}, M. and 
+	{Spyromilio}, J.},
+    title = "{Late-time spectral line formation in Type IIb supernovae, with application to SN 1993J, SN 2008ax, and SN 2011dh}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1408.0732},
+ primaryClass = "astro-ph.HE",
+ keywords = {line: identification, supernovae: individual: SN 2011dh, supernovae: individual: SN 2008ax, radiative transfer, line: formation, supernovae: individual: SN 1993J},
+     year = 2015,
+    month = jan,
+   volume = 573,
+      eid = {A12},
+    pages = {A12},
+      doi = {10.1051/0004-6361/201423983},
+   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...573A..12J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014arXiv1408.1404S,
+   author = {{Shivvers}, I. and {Mauerhan}, J.~C. and {Leonard}, D.~C. and 
+	{Filippenko}, A.~V. and {Fox}, O.~D.},
+    title = "{Early Emission from the Type IIn Supernova 1998S at High Resolution}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1408.1404},
+ primaryClass = "astro-ph.HE",
+ keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics},
+     year = 2014,
+    month = aug,
+   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1408.1404S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013A&A...558A.131G,
+   author = {{Groh}, J.~H. and {Meynet}, G. and {Georgy}, C. and {Ekstr{\"o}m}, S.
+	},
+    title = "{Fundamental properties of core-collapse supernova and GRB progenitors: predicting the look of massive stars before death}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1308.4681},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, supernovae: general, stars: massive, stars: winds, outflows, gamma-ray burst: general, stars: rotation},
+     year = 2013,
+    month = oct,
+   volume = 558,
+      eid = {A131},
+    pages = {A131},
+      doi = {10.1051/0004-6361/201321906},
+   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...558A.131G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013A&A...558L...1G,
+   author = {{Groh}, J.~H. and {Georgy}, C. and {Ekstr{\"o}m}, S.},
+    title = "{Progenitors of supernova Ibc: a single Wolf-Rayet star as the possible progenitor of the SN Ib iPTF13bvn}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1307.8434},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: Ib iPTF13bvn, stars: evolution, stars: Wolf-Rayet, stars: winds, outflows, stars: massive},
+     year = 2013,
+    month = oct,
+   volume = 558,
+      eid = {L1},
+    pages = {L1},
+      doi = {10.1051/0004-6361/201322369},
+   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...558L...1G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.445.1932S,
+   author = {{Srivastav}, S. and {Anupama}, G.~C. and {Sahu}, D.~K.},
+    title = "{Optical observations of the fast declining Type Ib supernova iPTF13bvn}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1409.2739},
+ primaryClass = "astro-ph.SR",
+ keywords = {supernovae: general, supernovae: individual: iPTF13bvn, galaxies: individual: NGC 5806},
+     year = 2014,
+    month = dec,
+   volume = 445,
+    pages = {1932-1941},
+      doi = {10.1093/mnras/stu1878},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445.1932S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...741...97D,
+   author = {{Drout}, M.~R. and {Soderberg}, A.~M. and {Gal-Yam}, A. and 
+	{Cenko}, S.~B. and {Fox}, D.~B. and {Leonard}, D.~C. and {Sand}, D.~J. and 
+	{Moon}, D.-S. and {Arcavi}, I. and {Green}, Y.},
+    title = "{The First Systematic Study of Type Ibc Supernova Multi-band Light Curves}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1011.4959},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: general, gamma-ray burst: general},
+     year = 2011,
+    month = nov,
+   volume = 741,
+      eid = {97},
+    pages = {97},
+      doi = {10.1088/0004-637X/741/2/97},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741...97D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2008MNRAS.383.1485V,
+   author = {{Valenti}, S. and {Benetti}, S. and {Cappellaro}, E. and {Patat}, F. and 
+	{Mazzali}, P. and {Turatto}, M. and {Hurley}, K. and {Maeda}, K. and 
+	{Gal-Yam}, A. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
+	{Pastorello}, A. and {Challis}, P. and {Frontera}, F. and {Harutyunyan}, A. and 
+	{Iye}, M. and {Kawabata}, K. and {Kirshner}, R.~P. and {Li}, W. and 
+	{Lipkin}, Y.~M. and {Matheson}, T. and {Nomoto}, K. and {Ofek}, E.~O. and 
+	{Ohyama}, Y. and {Pian}, E. and {Poznanski}, D. and {Salvo}, M. and 
+	{Sauer}, D.~N. and {Schmidt}, B.~P. and {Soderberg}, A. and 
+	{Zampieri}, L.},
+    title = "{The broad-lined Type Ic supernova 2003jd}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {0710.5173},
+ keywords = {supernovae: general , supernovae: individual: 2003jd , supernovae: individual: 1996aq},
+     year = 2008,
+    month = feb,
+   volume = 383,
+    pages = {1485-1500},
+      doi = {10.1111/j.1365-2966.2007.12647.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.383.1485V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012Sci...337..444S,
+   author = {{Sana}, H. and {de Mink}, S.~E. and {de Koter}, A. and {Langer}, N. and 
+	{Evans}, C.~J. and {Gieles}, M. and {Gosset}, E. and {Izzard}, R.~G. and 
+	{Le Bouquin}, J.-B. and {Schneider}, F.~R.~N.},
+    title = "{Binary Interaction Dominates the Evolution of Massive Stars}",
+  journal = {Science},
+archivePrefix = "arXiv",
+   eprint = {1207.6397},
+ primaryClass = "astro-ph.SR",
+     year = 2012,
+    month = jul,
+   volume = 337,
+    pages = {444-},
+      doi = {10.1126/science.1223344},
+   adsurl = {http://adsabs.harvard.edu/abs/2012Sci...337..444S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011MNRAS.412.1522S,
+   author = {{Smith}, N. and {Li}, W. and {Filippenko}, A.~V. and {Chornock}, R.
+	},
+    title = "{Observed fractions of core-collapse supernova types and initial masses of their single and binary progenitor stars}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1006.3899},
+ primaryClass = "astro-ph.HE",
+ keywords = {binaries: general, stars: evolution, stars: mass-loss, supernovae: general},
+     year = 2011,
+    month = apr,
+   volume = 412,
+    pages = {1522-1538},
+      doi = {10.1111/j.1365-2966.2011.17229.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1522S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...738..154H,
+   author = {{Horiuchi}, S. and {Beacom}, J.~F. and {Kochanek}, C.~S. and 
+	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A.},
+    title = "{The Cosmic Core-collapse Supernova Rate Does Not Match the Massive-star Formation Rate}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1102.1977},
+ primaryClass = "astro-ph.CO",
+ keywords = {galaxies: evolution, galaxies: starburst, stars: formation, supernovae: general},
+     year = 2011,
+    month = sep,
+   volume = 738,
+      eid = {154},
+    pages = {154},
+      doi = {10.1088/0004-637X/738/2/154},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...738..154H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014MNRAS.445L..99H,
+   author = {{Horiuchi}, S. and {Nakamura}, K. and {Takiwaki}, T. and {Kotake}, K. and 
+	{Tanaka}, M.},
+    title = "{The red supergiant and supernova rate problems: implications for core-collapse supernova physics}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1409.0006},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: interiors, stars: massive, supernovae: general},
+     year = 2014,
+    month = nov,
+   volume = 445,
+    pages = {L99-L103},
+      doi = {10.1093/mnrasl/slu146},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445L..99H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...732...63S,
+   author = {{Smith}, N. and {Li}, W. and {Miller}, A.~A. and {Silverman}, J.~M. and 
+	{Filippenko}, A.~V. and {Cuillandre}, J.-C. and {Cooper}, M.~C. and 
+	{Matheson}, T. and {Van Dyk}, S.~D.},
+    title = "{A Massive Progenitor of the Luminous Type IIn Supernova 2010jl}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1011.4150},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, stars: mass-loss, stars: winds, outflows, supernovae: general},
+     year = 2011,
+    month = may,
+   volume = 732,
+      eid = {63},
+    pages = {63},
+      doi = {10.1088/0004-637X/732/2/63},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732...63S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...791..105W,
+   author = {{Williams}, B.~F. and {Peterson}, S. and {Murphy}, J. and {Gilbert}, K. and 
+	{Dalcanton}, J.~J. and {Dolphin}, A.~E. and {Jennings}, Z.~G.
+	},
+    title = "{Constraints for the Progenitor Masses of 17 Historic Core-collapse Supernovae}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1405.6626},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: massive, supernovae: general},
+     year = 2014,
+    month = aug,
+   volume = 791,
+      eid = {105},
+    pages = {105},
+      doi = {10.1088/0004-637X/791/2/105},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...791..105W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...795..170J,
+   author = {{Jennings}, Z.~G. and {Williams}, B.~F. and {Murphy}, J.~W. and 
+	{Dalcanton}, J.~J. and {Gilbert}, K.~M. and {Dolphin}, A.~E. and 
+	{Weisz}, D.~R. and {Fouesneau}, M.},
+    title = "{The Supernova Progenitor Mass Distributions of M31 and M33: Further Evidence for an Upper Mass Limit}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1410.0018},
+ keywords = {galaxies: individual: M31 M33, supernovae: general},
+     year = 2014,
+    month = nov,
+   volume = 795,
+      eid = {170},
+    pages = {170},
+      doi = {10.1088/0004-637X/795/2/170},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795..170J},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014arXiv1406.3667L,
+   author = {{Lyman}, J. and {Bersier}, D. and {James}, P. and {Mazzali}, P. and 
+	{Eldridge}, J. and {Fraser}, M. and {Pian}, E.},
+    title = "{Bolometric light curves and explosion parameters of 38 stripped-envelope core-collapse supernovae}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1406.3667},
+ primaryClass = "astro-ph.SR",
+ keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - High Energy Astrophysical Phenomena},
+     year = 2014,
+    month = jun,
+   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1406.3667L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2002PASP..114..403L,
+   author = {{Li}, W. and {Filippenko}, A.~V. and {Van Dyk}, S.~D. and {Hu}, J. and 
+	{Qiu}, Y. and {Modjaz}, M. and {Leonard}, D.~C.},
+    title = "{A Hubble Space Telescope Snapshot Survey of Nearby Supernovae}",
+  journal = {\pasp},
+   eprint = {astro-ph/0201228},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 1995N), Stars: Supernovae: Individual: Alphanumeric: SN 1996cb, supernovae: individual (SN 1997bs), supernovae: individual (SN 1997ef), Stars: Supernovae: Individual: Alphanumeric: SN 1998S, supernovae: individual (SN 1999bw), supernovae: individual (SN 1999eb), supernovae: individual (SN 1999el), supernovae: individual (SN 1999gi), supernovae: individual (SN 1999gq), supernovae: individual (SN 2000P), supernovae: individual (SN 2000cx)},
+     year = 2002,
+    month = apr,
+   volume = 114,
+    pages = {403-415},
+      doi = {10.1086/342493},
+   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..403L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006A&A...460L...5K,
+   author = {{Kotak}, R. and {Vink}, J.~S.},
+    title = "{Luminous blue variables as the progenitors of supernovae with quasi-periodic radio modulations}",
+  journal = {\aap},
+   eprint = {astro-ph/0610095},
+ keywords = {stars: mass-loss, stars: winds, outflows, stars: supernovae: individual: SN 2001ig, stars: supernovae: individual: SN 2003bg, stars: supernovae: individual: SN 1979C, stars: supernovae: individual: SN 1998bw},
+     year = 2006,
+    month = dec,
+   volume = 460,
+    pages = {L5-L8},
+      doi = {10.1051/0004-6361:20065800},
+   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...460L...5K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2006ApJ...651L.117K,
+   author = {{Kotak}, R. and {Meikle}, P. and {Pozzo}, M. and {van Dyk}, S.~D. and 
+	{Farrah}, D. and {Fesen}, R. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
+	{Fransson}, C. and {Gerardy}, C.~L. and {H{\"o}flich}, P.~A. and 
+	{Lundqvist}, P. and {Mattila}, S. and {Sollerman}, J. and {Wheeler}, J.~C.
+	},
+    title = "{Spitzer Measurements of Atomic and Molecular Abundances in the Type IIP SN 2005af}",
+  journal = {\apjl},
+   eprint = {astro-ph/0609706},
+ keywords = {Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1987A, Stars: Supernovae: Individual: Alphanumeric: SN 2004dj, supernovae: individual (SN 2005af)},
+     year = 2006,
+    month = nov,
+   volume = 651,
+    pages = {L117-L120},
+      doi = {10.1086/509655},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...651L.117K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002PASP..114.1322V,
+   author = {{Van Dyk}, S.~D. and {Garnavich}, P.~M. and {Filippenko}, A.~V. and 
+	{H{\"o}flich}, P. and {Kirshner}, R.~P. and {Kurucz}, R.~L. and 
+	{Challis}, P.},
+    title = "{The Progenitor of Supernova 1993J Revisited}",
+  journal = {\pasp},
+   eprint = {astro-ph/0208382},
+ keywords = {Galaxies: Individual: Messier Number: M81, Galaxies: Individual: NGC Number: NGC 3031, Stars: Evolution, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1993J},
+     year = 2002,
+    month = dec,
+   volume = 114,
+    pages = {1322-1332},
+      doi = {10.1086/344382},
+   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114.1322V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999AJ....117..725F,
+   author = {{Fesen}, R.~A. and {Gerardy}, C.~L. and {Filippenko}, A.~V. and 
+	{Matheson}, T. and {Chevalier}, R.~A. and {Kirshner}, R.~P. and 
+	{Schmidt}, B.~P. and {Challis}, P. and {Fransson}, C. and {Leibundgut}, B. and 
+	{van Dyk}, S.~D.},
+    title = "{Late-Time Optical and Ultraviolet Spectra of SN 1979C and SN 1980K}",
+  journal = {\aj},
+   eprint = {astro-ph/9810407},
+ keywords = {GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 4321, GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 6946, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1979C, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1980K},
+     year = 1999,
+    month = feb,
+   volume = 117,
+    pages = {725-735},
+      doi = {10.1086/300751},
+   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....117..725F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...756..131V,
+   author = {{Van Dyk}, S.~D. and {Cenko}, S.~B. and {Poznanski}, D. and 
+	{Arcavi}, I. and {Gal-Yam}, A. and {Filippenko}, A.~V. and {Silverio}, K. and 
+	{Stockton}, A. and {Cuillandre}, J.-C. and {Marcy}, G.~W. and 
+	{Howard}, A.~W. and {Isaacson}, H.},
+    title = "{The Red Supergiant Progenitor of Supernova 2012aw (PTF12bvh) in Messier 95}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1207.2811},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: Messier 95 NGC 3351, stars: evolution, stars: fundamental parameters, stars: late-type, supernovae: general, supernovae: individual: SN 2012aw},
+     year = 2012,
+    month = sep,
+   volume = 756,
+      eid = {131},
+    pages = {131},
+      doi = {10.1088/0004-637X/756/2/131},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..131V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002PASP..114..700V,
+   author = {{Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Li}, W.},
+    title = "{Possible Recovery of SN 1961V in Hubble Space Telescope Archival Images}",
+  journal = {\pasp},
+   eprint = {astro-ph/0203508},
+ keywords = {Galaxies: Individual: NGC Number: NGC 1058, Galaxies: Stellar Content, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1961V},
+     year = 2002,
+    month = jul,
+   volume = 114,
+    pages = {700-707},
+      doi = {10.1086/341695},
+   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..700V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...714L.280F,
+   author = {{Fraser}, M. and {Tak{\'a}ts}, K. and {Pastorello}, A. and {Smartt}, S.~J. and 
+	{Mattila}, S. and {Botticella}, M.-T. and {Valenti}, S. and 
+	{Ergon}, M. and {Sollerman}, J. and {Arcavi}, I. and {Benetti}, S. and 
+	{Bufano}, F. and {Crockett}, R.~M. and {Danziger}, I.~J. and 
+	{Gal-Yam}, A. and {Maund}, J.~R. and {Taubenberger}, S. and 
+	{Turatto}, M.},
+    title = "{On the Progenitor and Early Evolution of the Type II Supernova 2009kr}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0912.2071},
+ keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
+     year = 2010,
+    month = may,
+   volume = 714,
+    pages = {L280-L284},
+      doi = {10.1088/2041-8205/714/2/L280},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.280F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2010ApJ...714L.254E,
+   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Miller}, A.~A. and 
+	{Silverman}, J.~M. and {Ganeshalingam}, M. and {Boden}, A.~F. and 
+	{Kasliwal}, M.~M. and {Vink{\'o}}, J. and {Cuillandre}, J.-C. and 
+	{Filippenko}, A.~V. and {Steele}, T.~N. and {Bloom}, J.~S. and 
+	{Griffith}, C.~V. and {Kleiser}, I.~K.~W. and {Foley}, R.~J.
+	},
+    title = "{The Massive Progenitor of the Type II-linear Supernova 2009kr}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0912.2880},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
+     year = 2010,
+    month = may,
+   volume = 714,
+    pages = {L254-L259},
+      doi = {10.1088/2041-8205/714/2/L254},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.254E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...649..332M,
+   author = {{Meikle}, W.~P.~S. and {Mattila}, S. and {Gerardy}, C.~L. and 
+	{Kotak}, R. and {Pozzo}, M. and {van Dyk}, S.~D. and {Farrah}, D. and 
+	{Fesen}, R.~A. and {Filippenko}, A.~V. and {Fransson}, C. and 
+	{Lundqvist}, P. and {Sollerman}, J. and {Wheeler}, J.~C.},
+    title = "{A Spitzer Space Telescope Study of SN 2002hh: An Infrared Echo from a Type IIP Supernova}",
+  journal = {\apj},
+   eprint = {astro-ph/0605584},
+ keywords = {Stars: Supernovae: General, supernovae: individual (NGC 6946), Stars: Supernovae: Individual: Alphanumeric: SN 2002hh},
+     year = 2006,
+    month = sep,
+   volume = 649,
+    pages = {332-344},
+      doi = {10.1086/506143},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...649..332M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2009ApJ...706.1174E,
+   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Morrell}, N. and 
+	{Gonzalez}, S. and {Hamuy}, M. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
+	{Foley}, R.~J. and {Smith}, N.},
+    title = "{On the Progenitor of the Type II-Plateau SN 2008cn in NGC 4603}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {0910.2275},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 4603, stars: evolution, supernovae: general, supernovae: individual: SN 2008cn},
+     year = 2009,
+    month = dec,
+   volume = 706,
+    pages = {1174-1183},
+      doi = {10.1088/0004-637X/706/2/1174},
+   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...706.1174E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1999PASP..111..313V,
+   author = {{van Dyk}, S.~D. and {Peng}, C.~Y. and {Barth}, A.~J. and {Filippenko}, A.~V. and 
+	{Chevalier}, R.~A. and {Fesen}, R.~A. and {Fransson}, C. and 
+	{Kirshner}, R.~P. and {Leibundgut}, B.},
+    title = "{Hubble Space Telescope WFPC2 Imaging of SN 1979C and Its Environment}",
+  journal = {\pasp},
+   eprint = {astro-ph/9810375},
+ keywords = {GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 4321, GALAXIES: INDIVIDUAL: MESSIER NUMBER: M100, GALAXIES: STELLAR CONTENT, STARS: EVOLUTION, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1979C},
+     year = 1999,
+    month = mar,
+   volume = 111,
+    pages = {313-320},
+      doi = {10.1086/316331},
+   adsurl = {http://adsabs.harvard.edu/abs/1999PASP..111..313V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014AJ....147...37V,
+   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Fox}, O.~D. and {Cenko}, S.~B. and 
+	{Clubb}, K.~I. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
+	{Miller}, A.~A. and {Smith}, N. and {Kelly}, P.~L. and {Lee}, W.~H. and 
+	{Ben-Ami}, S. and {Gal-Yam}, A.},
+    title = "{The Type IIb Supernova 2013df and its Cool Supergiant Progenitor}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1312.3984},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 4414, stars: evolution, supernovae: general, supernovae: individual: SN 2013df},
+     year = 2014,
+    month = feb,
+   volume = 147,
+      eid = {37},
+    pages = {37},
+      doi = {10.1088/0004-6256/147/2/37},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...37V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2012AJ....143...19V,
+   author = {{Van Dyk}, S.~D. and {Davidge}, T.~J. and {Elias-Rosa}, N. and 
+	{Taubenberger}, S. and {Li}, W. and {Levesque}, E.~M. and {Howerton}, S. and 
+	{Pignata}, G. and {Morrell}, N. and {Hamuy}, M. and {Filippenko}, A.~V.
+	},
+    title = "{Supernova 2008bk and Its Red Supergiant Progenitor}",
+  journal = {\aj},
+ keywords = {galaxies: individual: NGC 7793, stars: evolution, stars: fundamental parameters, stars: late-type, supernovae: general, supernovae: individual: SN 2008bk},
+     year = 2012,
+    month = jan,
+   volume = 143,
+      eid = {19},
+    pages = {19},
+      doi = {10.1088/0004-6256/143/1/19},
+   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143...19V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997PASP..109..461F,
+   author = {{Filippenko}, A.~V. and {Matheson}, T. and {Leonard}, D.~C. and 
+	{Barth}, A.~J. and {van Dyk}, S.~D.},
+    title = "{A Black Hole in the X-Ray Nova Ophiuchi 1997}",
+  journal = {\pasp},
+ keywords = {STARS: INDIVIDUAL: OPHIUCHI 1977, NOVAE},
+     year = 1997,
+    month = apr,
+   volume = 109,
+    pages = {461-467},
+      doi = {10.1086/133902},
+   adsurl = {http://adsabs.harvard.edu/abs/1997PASP..109..461F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996AJ....111.2047B,
+   author = {{Barth}, A.~J. and {van Dyk}, S.~D. and {Filippenko}, A.~V. and 
+	{Leibundgut}, B. and {Richmond}, M.~W.},
+    title = "{The Environments of Supernovae in Archival Hubble Space Telescope Images}",
+  journal = {\aj},
+ keywords = {SUPERNOVAE: GENERAL},
+     year = 1996,
+    month = may,
+   volume = 111,
+    pages = {2047},
+      doi = {10.1086/117940},
+   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.2047B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1997MNRAS.287..799I,
+   author = {{Ivezic}, Z. and {Elitzur}, M.},
+    title = "{Self-similarity and scaling behaviour of infrared emission from radiatively heated dust - I. Theory}",
+  journal = {\mnras},
+   eprint = {astro-ph/9612164},
+ keywords = {RADIATIVE TRANSFER, STARS: FORMATION, STARS: LATE-TYPE, DUST, EXTINCTION, INFRARED: ISM: CONTINUUM, INFRARED: ISM: LINES AND BANDS},
+     year = 1997,
+    month = jun,
+   volume = 287,
+    pages = {799-811},
+   adsurl = {http://adsabs.harvard.edu/abs/1997MNRAS.287..799I},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2013MNRAS.433.1871B,
+   author = {{Bose}, S. and {Kumar}, B. and {Sutaria}, F. and {Kumar}, B. and 
+	{Roy}, R. and {Bhatt}, V.~K. and {Pandey}, S.~B. and {Chandola}, H.~C. and 
+	{Sagar}, R. and {Misra}, K. and {Chakraborti}, S.},
+    title = "{Supernova 2012aw - a high-energy clone of archetypal Type IIP SN 1999em}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1305.3152},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: general, supernovae: individual: SN 2012aw, supernovae: individual: SN 1999em, supernovae: individual: SN 1999gi, supernovae: individual: SN 2004et, galaxies: individual: NGC 3551},
+     year = 2013,
+    month = aug,
+   volume = 433,
+    pages = {1871-1891},
+      doi = {10.1093/mnras/stt864},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1871B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...787..139D,
+   author = {{Dall'Ora}, M. and {Botticella}, M.~T. and {Pumo}, M.~L. and 
+	{Zampieri}, L. and {Tomasella}, L. and {Pignata}, G. and {Bayless}, A.~J. and 
+	{Pritchard}, T.~A. and {Taubenberger}, S. and {Kotak}, R. and 
+	{Inserra}, C. and {Della Valle}, M. and {Cappellaro}, E. and 
+	{Benetti}, S. and {Benitez}, S. and {Bufano}, F. and {Elias-Rosa}, N. and 
+	{Fraser}, M. and {Haislip}, J.~B. and {Harutyunyan}, A. and 
+	{Howell}, D.~A. and {Hsiao}, E.~Y. and {Iijima}, T. and {Kankare}, E. and 
+	{Kuin}, P. and {Maund}, J.~R. and {Morales-Garoffolo}, A. and 
+	{Morrell}, N. and {Munari}, U. and {Ochner}, P. and {Pastorello}, A. and 
+	{Patat}, F. and {Phillips}, M.~M. and {Reichart}, D. and {Roming}, P.~W.~A. and 
+	{Siviero}, A. and {Smartt}, S.~J. and {Sollerman}, J. and {Taddia}, F. and 
+	{Valenti}, S. and {Wright}, D.},
+    title = "{The Type IIP Supernova 2012aw in M95: Hydrodynamical Modeling of the Photospheric Phase from Accurate Spectrophotometric Monitoring}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1404.1294},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: M95, supernovae: general, supernovae: individual: 2012aw},
+     year = 2014,
+    month = jun,
+   volume = 787,
+      eid = {139},
+    pages = {139},
+      doi = {10.1088/0004-637X/787/2/139},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..139D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2003PASP..115..928K,
+   author = {{Kennicutt}, Jr., R.~C. and {Armus}, L. and {Bendo}, G. and 
+	{Calzetti}, D. and {Dale}, D.~A. and {Draine}, B.~T. and {Engelbracht}, C.~W. and 
+	{Gordon}, K.~D. and {Grauer}, A.~D. and {Helou}, G. and {Hollenbach}, D.~J. and 
+	{Jarrett}, T.~H. and {Kewley}, L.~J. and {Leitherer}, C. and 
+	{Li}, A. and {Malhotra}, S. and {Regan}, M.~W. and {Rieke}, G.~H. and 
+	{Rieke}, M.~J. and {Roussel}, H. and {Smith}, J.-D.~T. and {Thornley}, M.~D. and 
+	{Walter}, F.},
+    title = "{SINGS: The SIRTF Nearby Galaxies Survey}",
+  journal = {\pasp},
+   eprint = {astro-ph/0305437},
+ keywords = {ISM: Dust, Extinction, Galaxies: Evolution, Galaxies: ISM, infrared: galaxies, Stars: Formation, Surveys},
+     year = 2003,
+    month = aug,
+   volume = 115,
+    pages = {928-952},
+      doi = {10.1086/376941},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115..928K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...762...74B,
+   author = {{Benvenuto}, O.~G. and {Bersten}, M.~C. and {Nomoto}, K.},
+    title = "{A Binary Progenitor for the Type IIb Supernova 2011dh in M51}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1207.5807},
+ primaryClass = "astro-ph.SR",
+ keywords = {binaries: close, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh},
+     year = 2013,
+    month = jan,
+   volume = 762,
+      eid = {74},
+    pages = {74},
+      doi = {10.1088/0004-637X/762/2/74},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...762...74B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2013ApJ...772L..32V,
+   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Clubb}, K.~I. and {Filippenko}, A.~V. and 
+	{Cenko}, S.~B. and {Smith}, N. and {Fox}, O.~D. and {Kelly}, P.~L. and 
+	{Shivvers}, I. and {Ganeshalingam}, M.},
+    title = "{The Progenitor of Supernova 2011dh has Vanished}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1305.3436},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 5194, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh },
+     year = 2013,
+    month = aug,
+   volume = 772,
+      eid = {L32},
+    pages = {L32},
+      doi = {10.1088/2041-8205/772/2/L32},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...772L..32V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005PASP..117..553V,
+   author = {{Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Chornock}, R. and 
+	{Li}, W. and {Challis}, P.~M.},
+    title = "{Supernova 1954J (Variable 12) in NGC 2403 Unmasked}",
+  journal = {\pasp},
+   eprint = {astro-ph/0503324},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 1954J), Stars: Evolution, Stars: Early-Type, Stars: Variables: Other, Galaxies: Individual: NGC Number: NGC 2403, Stars: Supergiants},
+     year = 2005,
+    month = jun,
+   volume = 117,
+    pages = {553-562},
+      doi = {10.1086/430238},
+   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..553V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1996AJ....111.1271V,
+   author = {{van Dyk}, S.~D. and {Weiler}, K.~W. and {Sramek}, R.~A. and 
+	{Schlegel}, E.~M. and {Filippenko}, A.~V. and {Panagia}, N. and 
+	{Leibundgut}, B.},
+    title = "{Type ''IIn'' Supernovae: A Search for Radio Emission}",
+  journal = {\aj},
+ keywords = {RADIO LINES: STARS, SUPERNOVAE: GENERAL},
+     year = 1996,
+    month = mar,
+   volume = 111,
+    pages = {1271},
+      doi = {10.1086/117872},
+   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.1271V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006PASP..118..351V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{The Light Echo around Supernova 2003gd in Messier 74}",
+  journal = {\pasp},
+   eprint = {astro-ph/0508684},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd), ISM: Reflection Nebulae, ISM: Dust, Extinction, galaxies: individual (Messier 74), Galaxies: Individual: NGC Number: NGC 628},
+     year = 2006,
+    month = mar,
+   volume = 118,
+    pages = {351-357},
+      doi = {10.1086/500225},
+   adsurl = {http://adsabs.harvard.edu/abs/2006PASP..118..351V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012ApJ...749..126W,
+   author = {{Wang}, X. and {Wang}, L. and {Filippenko}, A.~V. and {Baron}, E. and 
+	{Kromer}, M. and {Jack}, D. and {Zhang}, T. and {Aldering}, G. and 
+	{Antilogus}, P. and {Arnett}, W.~D. and {Baade}, D. and {Barris}, B.~J. and 
+	{Benetti}, S. and {Bouchet}, P. and {Burrows}, A.~S. and {Canal}, R. and 
+	{Cappellaro}, E. and {Carlberg}, R.~G. and {di Carlo}, E. and 
+	{Challis}, P.~J. and {Crotts}, A.~P.~S. and {Danziger}, J.~I. and 
+	{Della Valle}, M. and {Fink}, M. and {Foley}, R.~J. and {Fransson}, C. and 
+	{Gal-Yam}, A. and {Garnavich}, P.~M. and {Gerardy}, C.~L. and 
+	{Goldhaber}, G. and {Hamuy}, M. and {Hillebrandt}, W. and {H{\"o}flich}, P. and 
+	{Holland}, S.~T. and {Holz}, D.~E. and {Hughes}, J.~P. and {Jeffery}, D.~J. and 
+	{Jha}, S.~W. and {Kasen}, D. and {Khokhlov}, A.~M. and {Kirshner}, R.~P. and 
+	{Knop}, R.~A. and {Kozma}, C. and {Krisciunas}, K. and {Lee}, B.~C. and 
+	{Leibundgut}, B. and {Lentz}, E.~J. and {Leonard}, D.~C. and 
+	{Lewin}, W.~H.~G. and {Li}, W. and {Livio}, M. and {Lundqvist}, P. and 
+	{Maoz}, D. and {Matheson}, T. and {Mazzali}, P.~A. and {Meikle}, P. and 
+	{Miknaitis}, G. and {Milne}, P.~A. and {Mochnacki}, S.~W. and 
+	{Nomoto}, K. and {Nugent}, P.~E. and {Oran}, E.~S. and {Panagia}, N. and 
+	{Perlmutter}, S. and {Phillips}, M.~M. and {Pinto}, P. and {Poznanski}, D. and 
+	{Pritchet}, C.~J. and {Reinecke}, M. and {Riess}, A.~G. and 
+	{Ruiz-Lapuente}, P. and {Scalzo}, R.~A. and {Schlegel}, E.~M. and 
+	{Schmidt}, B.~P. and {Siegrist}, J. and {Soderberg}, A.~M. and 
+	{Sollerman}, J. and {Sonneborn}, G. and {Spadafora}, A. and 
+	{Spyromilio}, J. and {Sramek}, R.~A. and {Starrfield}, S.~G. and 
+	{Strolger}, L.~G. and {Suntzeff}, N.~B. and {Thomas}, R.~C. and 
+	{Tonry}, J.~L. and {Tornambe}, A. and {Truran}, J.~W. and {Turatto}, M. and 
+	{Turner}, M. and {Van Dyk}, S.~D. and {Weiler}, K.~W. and {Wheeler}, J.~C. and 
+	{Wood-Vasey}, M. and {Woosley}, S.~E. and {Yamaoka}, H.},
+    title = "{Evidence for Type Ia Supernova Diversity from Ultraviolet Observations with the Hubble Space Telescope}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1110.5809},
+ primaryClass = "astro-ph.HE",
+ keywords = {cosmology: observations, distance scale, dust, extinction, supernovae: general, ultraviolet: general},
+     year = 2012,
+    month = apr,
+   volume = 749,
+      eid = {126},
+    pages = {126},
+      doi = {10.1088/0004-637X/749/2/126},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...749..126W},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...732..109M,
+   author = {{Meikle}, W.~P.~S. and {Kotak}, R. and {Farrah}, D. and {Mattila}, S. and 
+	{Van Dyk}, S.~D. and {Andersen}, A.~C. and {Fesen}, R. and {Filippenko}, A.~V. and 
+	{Foley}, R.~J. and {Fransson}, C. and {Gerardy}, C.~L. and {H{\"o}flich}, P.~A. and 
+	{Lundqvist}, P. and {Pozzo}, M. and {Sollerman}, J. and {Wheeler}, J.~C.
+	},
+    title = "{Dust and the Type II-plateau Supernova 2004dj}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1103.2885},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, dust, extinction, supernovae: general, supernovae: individual: SN 2004dj},
+     year = 2011,
+    month = may,
+   volume = 732,
+      eid = {109},
+    pages = {109},
+      doi = {10.1088/0004-637X/732/2/109},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732..109M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115..448V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{On the Progenitor of Supernova 2001du in NGC 1365}",
+  journal = {\pasp},
+   eprint = {astro-ph/0301346},
+ keywords = {Galaxies: Individual: NGC Number: NGC 1365, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, supernovae: individual (SN 2001du)},
+     year = 2003,
+    month = apr,
+   volume = 115,
+    pages = {448-452},
+      doi = {10.1086/374299},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115..448V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2011ApJ...742....6E,
+   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Silverman}, J.~M. and 
+	{Foley}, R.~J. and {Ganeshalingam}, M. and {Mauerhan}, J.~C. and 
+	{Kankare}, E. and {Jha}, S. and {Filippenko}, A.~V. and {Beckman}, J.~E. and 
+	{Berger}, E. and {Cuillandre}, J.-C. and {Smith}, N.},
+    title = "{The Massive Progenitor of the Possible Type II-Linear Supernova 2009hd in Messier 66}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1108.2645},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 3627, stars: evolution, supernovae: general, supernovae: individual: SN 2009hd},
+     year = 2011,
+    month = nov,
+   volume = 742,
+      eid = {6},
+    pages = {6},
+      doi = {10.1088/0004-637X/742/1/6},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...742....6E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2008ApJ...685L.117G,
+   author = {{Gal-Yam}, A. and {Bufano}, F. and {Barlow}, T.~A. and {Baron}, E. and 
+	{Benetti}, S. and {Cappellaro}, E. and {Challis}, P.~J. and 
+	{Ellis}, R.~S. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
+	{Fox}, D.~B. and {Hicken}, M. and {Kirshner}, R.~P. and {Leonard}, D.~C. and 
+	{Li}, W. and {Maoz}, D. and {Matheson}, T. and {Mazzali}, P.~A. and 
+	{Modjaz}, M. and {Nomoto}, K. and {Ofek}, E.~O. and {Simon}, J.~D. and 
+	{Small}, T.~A. and {Smith}, G.~P. and {Turatto}, M. and {Van Dyk}, S.~D. and 
+	{Zampieri}, L.},
+    title = "{GALEX Spectroscopy of SN 2005ay Suggests Ultraviolet Spectral Uniformity among Type II-P Supernovae}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {0806.3276},
+ keywords = {supernovae: individual (SN 2005ay), Ultraviolet: General},
+     year = 2008,
+    month = oct,
+   volume = 685,
+    pages = {L117-L120},
+      doi = {10.1086/592744},
+   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...685L.117G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2001PASP..113.1349H,
+   author = {{Ho}, W.~C.~G. and {Van Dyk}, S.~D. and {Peng}, C.~Y. and {Filippenko}, A.~V. and 
+	{Leonard}, D.~C. and {Matheson}, T. and {Treffers}, R.~R. and 
+	{Richmond}, M.~W.},
+    title = "{BVRI Photometry of Supernovae}",
+  journal = {\pasp},
+   eprint = {astro-ph/0108299},
+ keywords = {Stars: Supernovae: General, supernovae: individual (SN 1993Y), supernovae: individual (SN 1993Z), supernovae: individual (SN 1993ae), supernovae: individual (SN 1994B), supernovae: individual (SN 1994C), supernovae: individual (SN 1994M), supernovae: individual (SN 1994Q), supernovae: individual (SN 1994Y), supernovae: individual (SN 1994ae), supernovae: individual (SN 1995D)},
+     year = 2001,
+    month = nov,
+   volume = 113,
+    pages = {1349-1364},
+      doi = {10.1086/323970},
+   adsurl = {http://adsabs.harvard.edu/abs/2001PASP..113.1349H},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014AJ....147...37V,
+   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Fox}, O.~D. and {Cenko}, S.~B. and 
+	{Clubb}, K.~I. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
+	{Miller}, A.~A. and {Smith}, N. and {Kelly}, P.~L. and {Lee}, W.~H. and 
+	{Ben-Ami}, S. and {Gal-Yam}, A.},
+    title = "{The Type IIb Supernova 2013df and its Cool Supergiant Progenitor}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1312.3984},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 4414, stars: evolution, supernovae: general, supernovae: individual: SN 2013df},
+     year = 2014,
+    month = feb,
+   volume = 147,
+      eid = {37},
+    pages = {37},
+      doi = {10.1088/0004-6256/147/2/37},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...37V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436.3614S,
+   author = {{Shivvers}, I. and {Mazzali}, P. and {Silverman}, J.~M. and 
+	{Boty{\'a}nszki}, J. and {Cenko}, S.~B. and {Filippenko}, A.~V. and 
+	{Kasen}, D. and {Van Dyk}, S.~D. and {Clubb}, K.~I.},
+    title = "{Nebular spectroscopy of the nearby Type IIb supernova 2011dh}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1307.2246},
+ primaryClass = "astro-ph.HE",
+ keywords = {techniques: spectroscopic, supernovae: general, supernovae: individual: SN 2011dh},
+     year = 2013,
+    month = dec,
+   volume = 436,
+    pages = {3614-3625},
+      doi = {10.1093/mnras/stt1839},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3614S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2000ARA&A..38..613K,
+   author = {{Kudritzki}, R.-P. and {Puls}, J.},
+    title = "{Winds from Hot Stars}",
+  journal = {\araa},
+ keywords = {MASS LOSS, STELLAR WINDS, MASSIVE STARS, CENTRAL STARS OF PLANETARY NEBULAE, STELLAR EVOLUTION},
+     year = 2000,
+   volume = 38,
+    pages = {613-666},
+      doi = {10.1146/annurev.astro.38.1.613},
+   adsurl = {http://adsabs.harvard.edu/abs/2000ARA&A..38..613K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2005A&A...443..643Y,
+   author = {{Yoon}, S.-C. and {Langer}, N.},
+    title = "{Evolution of rapidly rotating metal-poor massive stars towards gamma-ray bursts}",
+  journal = {\aap},
+   eprint = {astro-ph/0508242},
+ keywords = {stars: rotation, stars: evolution, stars: Wolf-Rayet, supernovae: general, gamma rays: bursts},
+     year = 2005,
+    month = nov,
+   volume = 443,
+    pages = {643-648},
+      doi = {10.1051/0004-6361:20054030},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...443..643Y},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005A&A...442..587V,
+   author = {{Vink}, J.~S. and {de Koter}, A.},
+    title = "{On the metallicity dependence of Wolf-Rayet winds}",
+  journal = {\aap},
+   eprint = {astro-ph/0507352},
+ keywords = {stars: Wolf-Rayet, stars: early-type, stars: mass-loss, stars: winds, outflows, stars: evolution},
+     year = 2005,
+    month = nov,
+   volume = 442,
+    pages = {587-596},
+      doi = {10.1051/0004-6361:20052862},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...442..587V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...645L..45S,
+   author = {{Smith}, N. and {Owocki}, S.~P.},
+    title = "{On the Role of Continuum-driven Eruptions in the Evolution of Very Massive Stars and Population III Stars}",
+  journal = {\apjl},
+   eprint = {astro-ph/0606174},
+ keywords = {Instabilities, Stars: Evolution, Stars: Mass Loss, Stars: Winds, Outflows},
+     year = 2006,
+    month = jul,
+   volume = 645,
+    pages = {L45-L48},
+      doi = {10.1086/506523},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...645L..45S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2012ApJ...752...78S,
+   author = {{Soderberg}, A.~M. and {Margutti}, R. and {Zauderer}, B.~A. and 
+	{Krauss}, M. and {Katz}, B. and {Chomiuk}, L. and {Dittmann}, J.~A. and 
+	{Nakar}, E. and {Sakamoto}, T. and {Kawai}, N. and {Hurley}, K. and 
+	{Barthelmy}, S. and {Toizumi}, T. and {Morii}, M. and {Chevalier}, R.~A. and 
+	{Gurwell}, M. and {Petitpas}, G. and {Rupen}, M. and {Alexander}, K.~D. and 
+	{Levesque}, E.~M. and {Fransson}, C. and {Brunthaler}, A. and 
+	{Bietenholz}, M.~F. and {Chugai}, N. and {Grindlay}, J. and 
+	{Copete}, A. and {Connaughton}, V. and {Briggs}, M. and {Meegan}, C. and 
+	{von Kienlin}, A. and {Zhang}, X. and {Rau}, A. and {Golenetskii}, S. and 
+	{Mazets}, E. and {Cline}, T.},
+    title = "{Panchromatic Observations of SN 2011dh Point to a Compact Progenitor Star}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1107.1876},
+ primaryClass = "astro-ph.HE",
+ keywords = {supernovae: individual: SN 2011dh},
+     year = 2012,
+    month = jun,
+   volume = 752,
+      eid = {78},
+    pages = {78},
+      doi = {10.1088/0004-637X/752/2/78},
+   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...752...78S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014ApJ...790...17F,
+   author = {{Fox}, O.~D. and {Azalee Bostroem}, K. and {Van Dyk}, S.~D. and 
+	{Filippenko}, A.~V. and {Fransson}, C. and {Matheson}, T. and 
+	{Cenko}, S.~B. and {Chandra}, P. and {Dwarkadas}, V. and {Li}, W. and 
+	{Parker}, A.~H. and {Smith}, N.},
+    title = "{Uncovering the Putative B-star Binary Companion of the SN 1993J Progenitor}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1405.4863},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, supernovae: general, supernovae: individual: SN 1993J},
+     year = 2014,
+    month = jul,
+   volume = 790,
+      eid = {17},
+    pages = {17},
+      doi = {10.1088/0004-637X/790/1/17},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...790...17F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2003PASP..115...21V,
+   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
+    title = "{``A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images'' (<A href=''/abs/2003PASP.115....1V''>PASP, 115, 1 [2003]</A>)}",
+  journal = {\pasp},
+ keywords = {Errata, Addenda},
+     year = 2003,
+    month = jan,
+   volume = 115,
+    pages = {21-21},
+      doi = {10.1086/374188},
+   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115...21V},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@INPROCEEDINGS{2003LNP...598..171C,
+   author = {{Chevalier}, R.~A. and {Fransson}, C.},
+    title = "{Supernova Interaction with a Circumstellar Medium}",
+booktitle = {Supernovae and Gamma-Ray Bursters},
+     year = 2003,
+   series = {Lecture Notes in Physics, Berlin Springer Verlag},
+   volume = 598,
+   editor = {{Weiler}, K.},
+    pages = {171-194},
+   adsurl = {http://adsabs.harvard.edu/abs/2003LNP...598..171C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2012MNRAS.419.1515D,
+   author = {{Dwarkadas}, V.~V. and {Gruszko}, J.},
+    title = "{What are published X-ray light curves telling us about young supernova expansion?}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1109.2616},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, stars: massive, stars: mass-loss, supernovae: general, stars: winds, outflows, X-rays: ISM},
+     year = 2012,
+    month = jan,
+   volume = 419,
+    pages = {1515-1524},
+      doi = {10.1111/j.1365-2966.2011.19808.x},
+   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.1515D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011A&A...526A.156M,
+   author = {{Mauron}, N. and {Josselin}, E.},
+    title = "{The mass-loss rates of red supergiants and the de Jager prescription}",
+  journal = {\aap},
+archivePrefix = "arXiv",
+   eprint = {1010.5369},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, stars: mass-loss, supergiants},
+     year = 2011,
+    month = feb,
+   volume = 526,
+      eid = {A156},
+    pages = {A156},
+      doi = {10.1051/0004-6361/201013993},
+   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...526A.156M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...641.1029C,
+   author = {{Chevalier}, R.~A. and {Fransson}, C. and {Nymark}, T.~K.},
+    title = "{Radio and X-Ray Emission as Probes of Type IIP Supernovae and Red Supergiant Mass Loss}",
+  journal = {\apj},
+   eprint = {astro-ph/0509468},
+ keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: General},
+     year = 2006,
+    month = apr,
+   volume = 641,
+    pages = {1029-1038},
+      doi = {10.1086/500528},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...641.1029C},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2010ApJ...711.1343E,
+   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Morrell}, N. and 
+	{Gonzalez}, S. and {Hamuy}, M. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
+	{Foley}, R.~J. and {Smith}, N.},
+    title = "{Erratum: ''On the Progenitor of the Type II-Plateau SN 2008CN in NGC 4603'' <A href=''/abs/2009ApJ...706.1174E''>(2009, ApJ, 706, 1174)</A>}",
+  journal = {\apj},
+     year = 2010,
+    month = mar,
+   volume = 711,
+    pages = {1343},
+      doi = {10.1088/0004-637X/711/2/1343},
+   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...711.1343E},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.430.1801M,
+   author = {{Mauerhan}, J.~C. and {Smith}, N. and {Filippenko}, A.~V. and 
+	{Blanchard}, K.~B. and {Blanchard}, P.~K. and {Casper}, C.~F.~E. and 
+	{Cenko}, S.~B. and {Clubb}, K.~I. and {Cohen}, D.~P. and {Fuller}, K.~L. and 
+	{Li}, G.~Z. and {Silverman}, J.~M.},
+    title = "{The unprecedented 2012 outburst of SN 2009ip: a luminous blue variable star becomes a true supernova}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1209.6320},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, stars: winds, outflows},
+     year = 2013,
+    month = apr,
+   volume = 430,
+    pages = {1801-1810},
+      doi = {10.1093/mnras/stt009},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.430.1801M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2004CBET...74....1N,
+   author = {{Nakano}, S. and {Itagaki}, K.},
+    title = "{Supernova 2004dj in NGC 2403}",
+  journal = {Central Bureau Electronic Telegrams},
+     year = 2004,
+    month = aug,
+   volume = 74,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2004CBET...74....1N},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2004IAUC.8297....2S,
+   author = {{Singer}, D. and {Pugh}, H. and {Li}, W.},
+    title = "{Supernovae 2004ak, 2004al, and 2004am}",
+  journal = {\iaucirc},
+     year = 2004,
+    month = mar,
+   volume = 8297,
+    pages = {2},
+   adsurl = {http://adsabs.harvard.edu/abs/2004IAUC.8297....2S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009CBET.1928....1M,
+   author = {{Maza}, J. and {Hamuy}, M. and {Antezana}, R. and {Gonzalez}, L. and 
+	{Lopez}, P. and {Silva}, S. and {Folatelli}, G. and {Iturra}, D. and 
+	{Cartier}, R. and {Forster}, F. and {Marchi}, S. and {Rojas}, A. and 
+	{Pignata}, G. and {Conuel}, B. and {Reichart}, D. and {Ivarsen}, K. and 
+	{Haislip}, J. and {Crain}, A. and {Foster}, D. and {Nysewander}, M. and 
+	{Lacluyze}, A.},
+    title = "{Supernova 2009ip in NGC 7259}",
+  journal = {Central Bureau Electronic Telegrams},
+     year = 2009,
+    month = aug,
+   volume = 1928,
+    pages = {1},
+   adsurl = {http://adsabs.harvard.edu/abs/2009CBET.1928....1M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2011ApJ...732...32F,
+   author = {{Foley}, R.~J. and {Berger}, E. and {Fox}, O. and {Levesque}, E.~M. and 
+	{Challis}, P.~J. and {Ivans}, I.~I. and {Rhoads}, J.~E. and 
+	{Soderberg}, A.~M.},
+    title = "{The Diversity of Massive Star Outbursts. I. Observations of SN2009ip, UGC 2773 OT2009-1, and Their Progenitors}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1002.0635},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, dust, extinction, stars: evolution, stars: individual: SN 2009ip UGC 2773 OT2009-1, stars: massive, stars: mass-loss, stars: variables: general, stars: variables: S Doradus, stars: winds, outflows},
+     year = 2011,
+    month = may,
+   volume = 732,
+      eid = {32},
+    pages = {32},
+      doi = {10.1088/0004-637X/732/1/32},
+   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732...32F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+
+@ARTICLE{2010AJ....139.1451S,
+   author = {{Smith}, N. and {Miller}, A. and {Li}, W. and {Filippenko}, A.~V. and 
+	{Silverman}, J.~M. and {Howard}, A.~W. and {Nugent}, P. and 
+	{Marcy}, G.~W. and {Bloom}, J.~S. and {Ghez}, A.~M. and {Lu}, J. and 
+	{Yelda}, S. and {Bernstein}, R.~A. and {Colucci}, J.~E.},
+    title = "{Discovery of Precursor Luminous Blue Variable Outbursts in Two Recent Optical Transients: The Fitfully Variable Missing Links UGC 2773-OT and SN 2009ip}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {0909.4792},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, stars: mass-loss, stars: variables: general, stars: winds, outflows, supernovae: general},
+     year = 2010,
+    month = apr,
+   volume = 139,
+    pages = {1451-1467},
+      doi = {10.1088/0004-6256/139/4/1451},
+   adsurl = {http://adsabs.harvard.edu/abs/2010AJ....139.1451S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...767....1P,
+   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
+	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
+	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
+	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
+	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
+	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
+	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
+	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
+	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
+	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
+	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
+	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
+	{Wright}, D.},
+    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1210.3568},
+ primaryClass = "astro-ph.SR",
+ keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {1},
+    pages = {1},
+      doi = {10.1088/0004-637X/767/1/1},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...780...21M,
+   author = {{Margutti}, R. and {Milisavljevic}, D. and {Soderberg}, A.~M. and 
+	{Chornock}, R. and {Zauderer}, B.~A. and {Murase}, K. and {Guidorzi}, C. and 
+	{Sanders}, N.~E. and {Kuin}, P. and {Fransson}, C. and {Levesque}, E.~M. and 
+	{Chandra}, P. and {Berger}, E. and {Bianco}, F.~B. and {Brown}, P.~J. and 
+	{Challis}, P. and {Chatzopoulos}, E. and {Cheung}, C.~C. and 
+	{Choi}, C. and {Chomiuk}, L. and {Chugai}, N. and {Contreras}, C. and 
+	{Drout}, M.~R. and {Fesen}, R. and {Foley}, R.~J. and {Fong}, W. and 
+	{Friedman}, A.~S. and {Gall}, C. and {Gehrels}, N. and {Hjorth}, J. and 
+	{Hsiao}, E. and {Kirshner}, R. and {Im}, M. and {Leloudas}, G. and 
+	{Lunnan}, R. and {Marion}, G.~H. and {Martin}, J. and {Morrell}, N. and 
+	{Neugent}, K.~F. and {Omodei}, N. and {Phillips}, M.~M. and 
+	{Rest}, A. and {Silverman}, J.~M. and {Strader}, J. and {Stritzinger}, M.~D. and 
+	{Szalai}, T. and {Utterback}, N.~B. and {Vinko}, J. and {Wheeler}, J.~C. and 
+	{Arnett}, D. and {Campana}, S. and {Chevalier}, R. and {Ginsburg}, A. and 
+	{Kamble}, A. and {Roming}, P.~W.~A. and {Pritchard}, T. and 
+	{Stringfellow}, G.},
+    title = "{A Panchromatic View of the Restless SN 2009ip Reveals the Explosive Ejection of a Massive Star Envelope}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1306.0038},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: mass-loss, supernovae: individual: SN2009ip},
+     year = 2014,
+    month = jan,
+   volume = 780,
+      eid = {21},
+    pages = {21},
+      doi = {10.1088/0004-637X/780/1/21},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...21M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...763L..27P,
+   author = {{Prieto}, J.~L. and {Brimacombe}, J. and {Drake}, A.~J. and 
+	{Howerton}, S.},
+    title = "{The 2012 Rise of the Remarkable Type IIn SN 2009ip}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1210.3347},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, stars: mass-loss, supernovae: individual: SN 2009ip},
+     year = 2013,
+    month = feb,
+   volume = 763,
+      eid = {L27},
+    pages = {L27},
+      doi = {10.1088/2041-8205/763/2/L27},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...763L..27P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.433.1312F,
+   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
+	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
+	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
+	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
+	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
+	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
+	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
+	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
+	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
+	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
+	{Zhou}, G.},
+    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1303.3453},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
+     year = 2013,
+    month = aug,
+   volume = 433,
+    pages = {1312-1337},
+      doi = {10.1093/mnras/stt813},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...769..109L,
+   author = {{Lovegrove}, E. and {Woosley}, S.~E.},
+    title = "{Very Low Energy Supernovae from Neutrino Mass Loss}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.5055},
+ primaryClass = "astro-ph.HE",
+ keywords = {black hole physics, shock waves, stars: massive, stars: neutron, supernovae: general},
+     year = 2013,
+    month = jun,
+   volume = 769,
+      eid = {109},
+    pages = {109},
+      doi = {10.1088/0004-637X/769/2/109},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769..109L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002NewAR..46..487F,
+   author = {{Fransson}, C. and {Kozma}, C.},
+    title = "{Radioactivities and nucleosynthesis in SN 1987A}",
+  journal = {\nar},
+   eprint = {astro-ph/0112405},
+     year = 2002,
+    month = jul,
+   volume = 46,
+    pages = {487-492},
+      doi = {10.1016/S1387-6473(02)00188-4},
+   adsurl = {http://adsabs.harvard.edu/abs/2002NewAR..46..487F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2005A&A...437..983K,
+   author = {{Kozma}, C. and {Fransson}, C. and {Hillebrandt}, W. and {Travaglio}, C. and 
+	{Sollerman}, J. and {Reinecke}, M. and {R{\"o}pke}, F.~K. and 
+	{Spyromilio}, J.},
+    title = "{Three-dimensional modeling of type Ia supernovae - The power of late time spectra}",
+  journal = {\aap},
+   eprint = {astro-ph/0504317},
+ keywords = {stars: supernovae: general, nuclear reactions, nucleosynthesis, abundances, hydrodynamics, line: formation, line: identification},
+     year = 2005,
+    month = jul,
+   volume = 437,
+    pages = {983-995},
+      doi = {10.1051/0004-6361:20053044},
+   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...437..983K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1998ApJ...497..431K,
+   author = {{Kozma}, C. and {Fransson}, C.},
+    title = "{Late Spectral Evolution of SN 1987A. II. Line Emission}",
+  journal = {\apj},
+   eprint = {astro-ph/9712224},
+ keywords = {LINE FORMATION, STARS: ABUNDANCES, STARS: EVOLUTION, STARS: INTERIORS, STARS: SUPERNOVAE: INDIVIDUAL ALPHANUMERIC: SN 1987A, Line: Formation, Nuclear Reactions, Nucleosynthesis, Abundances, Stars: Abundances, Stars: Evolution, Stars: Interiors, Stars: Supernovae: Individual: Alphanumeric: SN 1987A},
+     year = 1998,
+    month = apr,
+   volume = 497,
+    pages = {431-457},
+      doi = {10.1086/305452},
+   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...497..431K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{1999ApJ...522..413F,
+   author = {{Fryer}, C.~L.},
+    title = "{Mass Limits For Black Hole Formation}",
+  journal = {\apj},
+   eprint = {astro-ph/9902315},
+ keywords = {BLACK HOLE PHYSICS, STARS: EVOLUTION, STARS: INTERIORS, STARS: SUPERNOVAE: GENERAL, Black Hole Physics, Stars: Evolution, Stars: Interiors, Stars: Supernovae: General},
+     year = 1999,
+    month = sep,
+   volume = 522,
+    pages = {413-418},
+      doi = {10.1086/307647},
+   adsurl = {http://adsabs.harvard.edu/abs/1999ApJ...522..413F},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...767....3D,
+   author = {{Davies}, B. and {Kudritzki}, R.-P. and {Plez}, B. and {Trager}, S. and 
+	{Lan{\c c}on}, A. and {Gazak}, Z. and {Bergemann}, M. and {Evans}, C. and 
+	{Chiavassa}, A.},
+    title = "{The Temperatures of Red Supergiants}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1302.2674},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: atmospheres, stars: evolution, stars: fundamental parameters, stars: late-type, stars: massive, supergiants},
+     year = 2013,
+    month = apr,
+   volume = 767,
+      eid = {3},
+    pages = {3},
+      doi = {10.1088/0004-637X/767/1/3},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....3D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2009AJ....137.4744L,
+   author = {{Levesque}, E.~M. and {Massey}, P. and {Plez}, B. and {Olsen}, K.~A.~G.
+	},
+    title = "{The Physical Properties of the Red Supergiant WOH G64: The Largest Star Known?}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {0903.2260},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: evolution, stars: late-type, stars: mass loss, supergiants},
+     year = 2009,
+    month = jun,
+   volume = 137,
+    pages = {4744-4752},
+      doi = {10.1088/0004-6256/137/6/4744},
+   adsurl = {http://adsabs.harvard.edu/abs/2009AJ....137.4744L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
+@ARTICLE{2014AJ....147...23L,
+   author = {{Levesque}, E.~M. and {Stringfellow}, G.~S. and {Ginsburg}, A.~G. and 
+	{Bally}, J. and {Keeney}, B.~A.},
+    title = "{The Peculiar Balmer Decrement of SN 2009ip: Constraints on Circumstellar Geometry}",
+  journal = {\aj},
+archivePrefix = "arXiv",
+   eprint = {1211.4577},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: massive, stars: variables: general, supernovae: general},
+     year = 2014,
+    month = jan,
+   volume = 147,
+      eid = {23},
+    pages = {23},
+      doi = {10.1088/0004-6256/147/1/23},
+   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...23L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...764L...6S,
+   author = {{Soker}, N. and {Kashi}, A.},
+    title = "{Explaining the Supernova Impostor SN 2009ip as Mergerburst}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1211.5388},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: individual: SN 2009ip, stars: massive, stars: variables: general, stars: winds, outflows},
+     year = 2013,
+    month = feb,
+   volume = 764,
+      eid = {L6},
+    pages = {L6},
+      doi = {10.1088/2041-8205/764/1/L6},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...764L...6S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.438.1191S,
+   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Prieto}, J.~L.},
+    title = "{SN 2009ip and SN 2010mc: core-collapse Type IIn supernovae arising from blue supergiants}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1308.0112},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, supernovae: individual: SN 2010mc, stars: winds, outflows},
+     year = 2014,
+    month = feb,
+   volume = 438,
+    pages = {1191-1207},
+      doi = {10.1093/mnras/stt2269},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438.1191S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...768...47O,
+   author = {{Ofek}, E.~O. and {Lin}, L. and {Kouveliotou}, C. and {Younes}, G. and 
+	{G{\"o}{\v g}{\"u}{\c s}}, E. and {Kasliwal}, M.~M. and {Cao}, Y.
+	},
+    title = "{SN 2009ip: Constraints on the Progenitor Mass-loss Rate}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1303.3894},
+ primaryClass = "astro-ph.HE",
+ keywords = {stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
+     year = 2013,
+    month = may,
+   volume = 768,
+      eid = {47},
+    pages = {47},
+      doi = {10.1088/0004-637X/768/1/47},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...768...47O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.434.2721S,
+   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Kasliwal}, M.~M. and 
+	{Burgasser}, A.~J.},
+    title = "{Near-infrared spectroscopy of SN 2009ip's 2012 brightening reveals a dusty pre-supernova environment}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1303.0304},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, stars: massive, supernovae: general, supernovae: individual: SN 2009ip, stars: variables: S Doradus, stars: winds, outflows},
+     year = 2013,
+    month = oct,
+   volume = 434,
+    pages = {2721-2726},
+      doi = {10.1093/mnras/stt944},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.434.2721S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014MNRAS.442.1166M,
+   author = {{Mauerhan}, J. and {Williams}, G.~G. and {Smith}, N. and {Smith}, P.~S. and 
+	{Filippenko}, A.~V. and {Hoffman}, J.~L. and {Milne}, P. and 
+	{Leonard}, D.~C. and {Clubb}, K.~I. and {Fox}, O.~D. and {Kelly}, P.~L.
+	},
+    title = "{Multi-epoch spectropolarimetry of SN 2009ip: direct evidence for aspherical circumstellar material}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1403.4240},
+ primaryClass = "astro-ph.SR",
+ keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, stars: winds, outflows},
+     year = 2014,
+    month = aug,
+   volume = 442,
+    pages = {1166-1180},
+      doi = {10.1093/mnras/stu730},
+   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.442.1166M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2014ApJ...787..163G,
+   author = {{Graham}, M.~L. and {Sand}, D.~J. and {Valenti}, S. and {Howell}, D.~A. and 
+	{Parrent}, J. and {Halford}, M. and {Zaritsky}, D. and {Bianco}, F. and 
+	{Rest}, A. and {Dilday}, B.},
+    title = "{Clues to the Nature of SN 2009ip from Photometric and Spectroscopic Evolution to Late Times}",
+  journal = {\apj},
+archivePrefix = "arXiv",
+   eprint = {1402.1765},
+ primaryClass = "astro-ph.HE",
+ keywords = {circumstellar matter, stars: mass-loss, stars: variables: general, supernovae: individual: 2009ip},
+     year = 2014,
+    month = jun,
+   volume = 787,
+      eid = {163},
+    pages = {163},
+      doi = {10.1088/0004-637X/787/2/163},
+   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..163G},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.436.2484K,
+   author = {{Kashi}, A. and {Soker}, N. and {Moskovitz}, N.},
+    title = "{Powering the second 2012 outburst of SN 2009ip by repeating binary interaction}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1307.7681},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: individual: SN 2009ip, stars: winds, outflows},
+     year = 2013,
+    month = dec,
+   volume = 436,
+    pages = {2484-2491},
+      doi = {10.1093/mnras/stt1742},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.2484K},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013RAA....13.1463O,
+   author = {{Ouyed}, R. and {Koning}, N. and {Leahy}, D.},
+    title = "{SN 2009ip and SN 2010mc as dual-shock Quark-Novae}",
+  journal = {Research in Astronomy and Astrophysics},
+archivePrefix = "arXiv",
+   eprint = {1308.3927},
+ primaryClass = "astro-ph.HE",
+     year = 2013,
+    month = dec,
+   volume = 13,
+      eid = {1463},
+    pages = {1463-1470},
+      doi = {10.1088/1674-4527/13/12/007},
+   adsurl = {http://adsabs.harvard.edu/abs/2013RAA....13.1463O},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013MNRAS.431L..98P,
+   author = {{Potashov}, M. and {Blinnikov}, S. and {Baklanov}, P. and {Dolgov}, A.
+	},
+    title = "{Direct distance measurements to SN 2009ip}",
+  journal = {\mnras},
+archivePrefix = "arXiv",
+   eprint = {1212.6893},
+ primaryClass = "astro-ph.CO",
+ keywords = {supernovae: individual: SN 2009ip, distance scale},
+     year = 2013,
+    month = apr,
+   volume = 431,
+    pages = {L98-L101},
+      doi = {10.1093/mnrasl/slt016},
+   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L..98P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013ApJ...777L..35T,
+   author = {{Tsebrenko}, D. and {Soker}, N.},
+    title = "{Accelerating Very Fast Gas in the Supernova Impostor SN 2009ip with Jets from a Stellar Companion}",
+  journal = {\apjl},
+archivePrefix = "arXiv",
+   eprint = {1308.4555},
+ primaryClass = "astro-ph.SR",
+ keywords = {stars: individual: SN 2009ip, stars: massive, stars: variables: general, stars: winds, outflows},
+     year = 2013,
+    month = nov,
+   volume = 777,
+      eid = {L35},
+    pages = {L35},
+      doi = {10.1088/2041-8205/777/2/L35},
+   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777L..35T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2013JAVSO..41..391M,
+   author = {{Martin}, J.},
+    title = "{Periodic Brightness Fluctuatons in the 2012 Outburst of SN 2009ip (Abstract)}",
+  journal = {Journal of the American Association of Variable Star Observers (JAAVSO)},
+     year = 2013,
+    month = dec,
+   volume = 41,
+    pages = {391},
+   adsurl = {http://adsabs.harvard.edu/abs/2013JAVSO..41..391M},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2015arXiv150402404T,
+   author = {{Takats}, K. and {Pignata}, G. and {Pumo}, M.~L. and {Paillas}, E. and 
+	{Zampieri}, L. and {Elias-Rosa}, N. and {Benetti}, S. and {Bufano}, F. and 
+	{Cappellaro}, E. and {Ergon}, M. and {Fraser}, M. and {Hamuy}, M. and 
+	{Inserra}, C. and {Kankare}, E. and {Smartt}, S.~J. and {Stritzinger}, M.~D. and 
+	{Van Dyk}, S.~D. and {Haislip}, J.~B. and {LaCluyze}, A.~P. and 
+	{Moore}, J.~P. and {Reichart}, D.},
+    title = "{SN 2009ib: A Type II-P Supernova with an Unusually Long Plateau}",
+  journal = {ArXiv e-prints},
+archivePrefix = "arXiv",
+   eprint = {1504.02404},
+ primaryClass = "astro-ph.SR",
+ keywords = {Astrophysics - Solar and Stellar Astrophysics},
+     year = 2015,
+    month = apr,
+   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150402404T},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1998ApJ...503..325A,
+   author = {{Alard}, C. and {Lupton}, R.~H.},
+    title = "{A Method for Optimal Image Subtraction}",
+  journal = {\apj},
+   eprint = {astro-ph/9712287},
+ keywords = {METHODS: DATA ANALYSIS, METHODS: STATISTICAL, TECHNIQUES: IMAGE PROCESSING, Methods: Data Analysis, Methods: Statistical, Techniques: Image Processing},
+     year = 1998,
+    month = aug,
+   volume = 503,
+    pages = {325-331},
+      doi = {10.1086/305984},
+   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...503..325A},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1993PASP..105.1342S,
+   author = {{Schechter}, P.~L. and {Mateo}, M. and {Saha}, A.},
+    title = "{DOPHOT, a CCD photometry program: Description and tests}",
+  journal = {\pasp},
+ keywords = {Astronomical Photometry, Charge Coupled Devices, Computer Programs, Computerized Simulation, Data Reduction, Image Processing, Point Spread Functions, Comparison, Globular Clusters, Stellar Color, Stellar Magnitude},
+     year = 1993,
+    month = nov,
+   volume = 105,
+    pages = {1342-1353},
+      doi = {10.1086/133316},
+   adsurl = {http://adsabs.harvard.edu/abs/1993PASP..105.1342S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+% galfit
+@ARTICLE{2002AJ....124..266P,
+   author = {{Peng}, C.~Y. and {Ho}, L.~C. and {Impey}, C.~D. and {Rix}, H.-W.},
+    title = "{Detailed Structural Decomposition of Galaxy Images}",
+  journal = {\aj},
+   eprint = {astro-ph/0204182},
+ keywords = {Galaxies: Bulges, Galaxies: Fundamental Parameters, Galaxies: Nuclei, Galaxies: Structure, Techniques: Image Processing, Techniques: Photometric},
+     year = 2002,
+    month = jul,
+   volume = 124,
+    pages = {266-293},
+      doi = {10.1086/340952},
+   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....124..266P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+%I believe this is sdss phot
+@INPROCEEDINGS{2001ASPC..238..269L,
+   author = {{Lupton}, R. and {Gunn}, J.~E. and {Ivezi{\'c}}, Z. and {Knapp}, G.~R. and {Kent}, S.},
+    title = "{The SDSS Imaging Pipelines}",
+booktitle = {Astronomical Data Analysis Software and Systems X},
+     year = 2001,
+   series = {Astronomical Society of the Pacific Conference Series},
+   volume = 238,
+   eprint = {astro-ph/0101420},
+   editor = {{Harnden}, Jr., F.~R. and {Primini}, F.~A. and {Payne}, H.~E.},
+    pages = {269},
+   adsurl = {http://adsabs.harvard.edu/abs/2001ASPC..238..269L},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1963BAAA....6...41S,
+   author = {{S{\'e}rsic}, J.~L.},
+    title = "{Influence of the atmospheric and instrumental dispersion on the brightness distribution in a galaxy}",
+  journal = {Boletin de la Asociacion Argentina de Astronomia La Plata Argentina},
+     year = 1963,
+   volume = 6,
+    pages = {41},
+   adsurl = {http://adsabs.harvard.edu/abs/1963BAAA....6...41S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1976ApJ...209L...1P,
+   author = {{Petrosian}, V.},
+    title = "{Surface brightness and evolution of galaxies}",
+  journal = {\apjl},
+ keywords = {Astronomical Models, Galactic Evolution, Luminous Intensity, Red Shift, Surface Properties, Big Bang Cosmology, Cosmology, Hubble Diagram, Iterative Solution, Point Sources},
+     year = 1976,
+    month = oct,
+   volume = 209,
+    pages = {L1-L5},
+      doi = {10.1086/182253},
+   adsurl = {http://adsabs.harvard.edu/abs/1976ApJ...209L...1P},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2006ApJ...644...30B,
+   author = {{Blakeslee}, J.~P. and {Holden}, B.~P. and {Franx}, M. and {Rosati}, P. and {Bouwens}, R.~J. and {Demarco}, R. and {Ford}, H.~C. and {Homeier}, N.~L. and {Illingworth}, G.~D. and {Jee}, M.~J. and {Mei}, S. and {Menanteau}, F. and {Meurer}, G.~R. and {Postman}, M. and {Tran}, K.-V.~H.},
+    title = "{Clusters at Half Hubble Time: Galaxy Structure and Colors in RX J0152.7-1357 and MS 1054-03}",
+  journal = {\apj},
+   eprint = {astro-ph/0603058},
+ keywords = {Cosmology: Observations, Galaxies: Clusters: Individual: Alphanumeric: MS 1054-0321, galaxies: clusters: individual (RX J0152.7-1357), Galaxies: Elliptical and Lenticular, cD, Galaxies: Evolution},
+     year = 2006,
+    month = jun,
+   volume = 644,
+    pages = {30-53},
+      doi = {10.1086/503539},
+   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...644...30B},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1995ApJ...451L...1S,
+   author = {{Schade}, D. and {Lilly}, S.~J. and {Crampton}, D. and {Hammer}, F. and {Le Fevre}, O. and {Tresse}, L.},
+    title = "{Canada-France Redshift Survey: Hubble Space Telescope Imaging of High-Redshift Field Galaxies}",
+  journal = {\apjl},
+   eprint = {astro-ph/9507028},
+ keywords = {GALAXIES: EVOLUTION, GALAXIES: FUNDAMENTAL PARAMETERS},
+     year = 1995,
+    month = sep,
+   volume = 451,
+    pages = {L1},
+      doi = {10.1086/309677},
+   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...451L...1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{2002ApJS..142....1S,
+   author = {{Simard}, L. and {Willmer}, C.~N.~A. and {Vogt}, N.~P. and {Sarajedini}, V.~L. and {Phillips}, A.~C. and {Weiner}, B.~J. and {Koo}, D.~C. and {Im}, M. and {Illingworth}, G.~D. and {Faber}, S.~M.},
+    title = "{The DEEP Groth Strip Survey. II. Hubble Space Telescope Structural Parameters of Galaxies in the Groth Strip}",
+  journal = {\apjs},
+   eprint = {astro-ph/0205025},
+ keywords = {Galaxies: Evolution, Galaxies: Fundamental Parameters, Galaxies: High-Redshift},
+     year = 2002,
+    month = sep,
+   volume = 142,
+    pages = {1-33},
+      doi = {10.1086/341399},
+   adsurl = {http://adsabs.harvard.edu/abs/2002ApJS..142....1S},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+@ARTICLE{1948AnAp...11..247D,
+   author = {{de Vaucouleurs}, G.},
+    title = "{Recherches sur les Nebuleuses Extragalactiques}",
+  journal = {Annales d'Astrophysique},
+     year = 1948,
+    month = jan,
+   volume = 11,
+    pages = {247},
+   adsurl = {http://adsabs.harvard.edu/abs/1948AnAp...11..247D},
+  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
+}
+
+
Index: trunk/doc/release.2015/ps1.analysis/analysis.tex
===================================================================
--- trunk/doc/release.2015/ps1.analysis/analysis.tex	(revision 39865)
+++ trunk/doc/release.2015/ps1.analysis/analysis.tex	(revision 39866)
@@ -86,14 +86,15 @@
 \begin{abstract}
 
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum
-bibendum nisi id tristique posuere. Duis eu mollis nulla. Maecenas est
-turpis, mattis tempor urna vitae, placerat rhoncus sem. Lorem ipsum
-dolor sit amet, consectetur adipiscing elit. Sed quis velit
-nisl. Aliquam erat volutpat. Cras lacinia, nisl tristique auctor
-molestie, dolor nulla rhoncus purus, ac accumsan nunc nunc ac
-nibh. Maecenas vitae mollis mauris. Ut sollicitudin pulvinar purus,
-eget luctus lorem tincidunt vitae. Vestibulum eu mattis neque. Nulla
-in tortor id urna dapibus gravida a vel leo.
-
+Over 3 billion astronomical objects have been detected in the more
+than 22 million orthogonal transfer CCD images obtained as part of the
+Pan-STARRS\,1 $3\pi$ survey.  Over 85 billion instances of those
+objects have been automatically detected and characterized by the
+Pan-STARRS Image Processing Pipeline photometry software,
+\code{psphot}.  This fast, automatic, and reliable software was
+developed for the Pan-STARRS project, but is easily adaptable to
+images from other telescopes.  We describe the analysis of the
+astronomical objects by \code{psphot} in general as well as for the
+specific case of the 3rd processing version used for the first public
+release of the Pan-STARRS $3\pi$ survey data.
 \end{abstract}
 
@@ -103,27 +104,70 @@
 \section{INTRODUCTION}\label{sec:intro}
 
-The Pan-STARRS Image Processing Pipeline is responsible for the basic
-analysis of images from the Pan-STARRS telescopes Gigapixel Camera.
-The photometric and astrometric precision goals for the all-sky
-surveys, as well as the other survey components, are quite stringent:
-
-\begin{itemize}
-\item relative photometry: 10 millimagnitudes scatter for bright stars
-across the sky in the internal photometric system; 
-
-\item relative astrometry; 10 milliarcseconds scatter for individual
-stars between repeated images.
-
-\item absolute astrometry: 100 milliarcseconds scatter for all ICRS
-  reference stars (Tycho).
-\end{itemize}
-
-An additional constraint on the Pan-STARRS system comes from the high
-data rate.  PS1 produces typically $\sim 500$ exposures per night,
-corresponding to $\sim 750$ billion pixels of imaging data.  The
-images range from high galactic latitudes to the Galactic bulge, so
-large numbers of measurable stars can be expected in much of the data.
-The combination of the high precision goals of the astrometric and
-photometric measurements and the high data rate (and a finite
+This is the fourth in a series of seven papers describing the
+Pan-STARRS1 Surveys, the data reduction techiques and the resulting
+data products.  This paper (Paper IV) describes the details of the
+source detection and photometry, including point-spread-function and
+extended source fitting models, and the techniques for ``forced''
+photometry measurements.
+
+%Chambers et al. 2017 (Paper I)
+%The Pan-STARRS\,1 Surveys
+\citet[][Paper I]{chambers2017}
+provides an overview of the Pan-STARRS System, the design and
+execution of the Surveys, the resulting image and catalog data
+products, a discussion of the overall data quality and basic
+characteristics, and a brief summary of important results.
+
+%Magnier et al. 2017 (Paper II)
+%Pan-STARRS Data Processing Stages
+\citet[][Paper II]{magnier2017c}
+describes how the various data processing stages are organised and implemented
+in the Imaging Processing Pipeline (IPP), including details of the 
+the processing database which is a critical element in the IPP infrastructure . 
+
+%Waters et al. 2017 (Paper III) 
+%Pan-STARRS Pixel Processing : Detrending, Warping, Stacking
+\citet[][Paper III]{waters2017}
+describes the details of the pixel processing algorithms, including detrending, warping, and adding (to create stacked images) and subtracting (to create difference images) and resulting image products and their properties. 
+
+
+%Magnier et al. 2017 (Paper IV) 
+%Pan-STARRS Pixel Analysis : Source Detection 
+%\citet[][Paper IV]{magnier2017a}
+%describes the details of the source detection and photometry, including point-spread-function and extended source fitting models, and the techniques for ``forced" photometry measurements. 
+
+%Magnier et al. 2017 (Paper V) 
+%Pan-STARRS Photometric and Astrometric Calibration
+\citet[][Paper V]{magnier2017b}
+describes the final calibration process, and the resulting photometric and astrometric quality.  
+
+
+%Flewelling et al. 2017 (Paper VI)
+%Pan-STARRS 1 Database and Data Products
+\citet[][Paper VI]{flewelling2017}
+describes  the details of the resulting catalog data and its organization in the Pan-STARRS database. 
+%
+%
+\citet[][Paper VII]{huber2017}
+%Huber et al. 2017 (Paper VII)
+describes the Medium Deep Survey in detail, including the unique issues and data products specific to that survey. The Medium Deep Survey is not part of Data Release 1. (DR1) 
+
+%
+The Pan-STARRS1 filters and photometric system have already been
+described in detail in \cite{2012ApJ...750...99T}.
+
+The photometric and astrometric precision goals for the Pan-STARRS\,1
+surveys were quite stringent: photmetric accuracy of 10
+millimagnitudes, relative astrometric accuracy of 10 milliarcseconds
+and absolute astrometric accuracy of 100 milliarcseconds with respect
+to the ICRS reference stars.
+
+An additional constraint on the Pan-STARRS analysis system comes from
+the high data rate.  PS1 produces typically $\sim 500$ exposures per
+night, corresponding to $\sim 750$ billion pixels of imaging data.
+The images range from high galactic latitudes to the Galactic bulge,
+so large numbers of measurable stars can be expected in much of the
+data.  The combination of the high precision goals of the astrometric
+and photometric measurements and the high data rate (and a finite
 computing budget) mean that the process of detecting, classifying, and
 measuring the astronomical objects in the image data stream in a
@@ -1715,4 +1759,7 @@
 \end{verbatim}
 
+\bibliographystyle{apj}
+\bibliography{lib}{}
+
 \end{document}
 
Index: trunk/doc/release.2015/ps1.detrend/Makefile
===================================================================
--- trunk/doc/release.2015/ps1.detrend/Makefile	(revision 39865)
+++ trunk/doc/release.2015/ps1.detrend/Makefile	(revision 39866)
@@ -1,4 +1,6 @@
 # $Id: Makefile,v 1.16 2006-01-16 01:11:40 eugene Exp $
 PDFLATEX = env TEXINPUTS=.:..:inputs:./inputs:LaTeX:$(TEXINPUTS): pdflatex
+BIBTEX   = env BIBINPUTS=.:..:inputs:../inputs BSTINPUTS=.:..:inputs:../inputs bibtex
+
 help:
 	@echo "USAGE: make (target)"
@@ -15,5 +17,5 @@
 	rm -f detrend.aux detrend.bbl detrend.blg
 	$(PDFLATEX) $<
-	bibtex detrend
+	$(BIBTEX) detrend
 	$(PDFLATEX) $<
 	$(PDFLATEX) $<
@@ -24,4 +26,41 @@
 include ../Makefile.Common
 
+FILES = \
+../inputs/astro.sty \
+../inputs/apj.bst \
+../inputs/lib.bib \
+detrend.tex \
+detrend.bbl \
+images/o5677g0123o_XY11_bt_trail.png \
+images/o5677g0124o_XY11_bt_trail.png \
+images/o5677g0123o_XY11_nobt.png \
+images/o5677g0124o_XY11_nobt.png \
+images/o5677g0123o_XY11_bt.png \
+images/o5677g0124o_XY11_bt.png \
+images/linearity_XY27_xy16.png \
+images/o5677g0123o_M_OS_NL_XY23_b1.jpg \
+images/o5677g0123o_to_DARK_XY23_b1.jpg \
+images/B_profile_ex.png \
+images/o5677g0123o_VIDEODARK_VDim_Rdark_XY22_b1.jpg \
+images/o5677g0123o_VIDEODARK_VDim_VDdark_XY22_b1.jpg \
+images/pattern_row_edit.png \
+images/o5379g0103o_XY57_nopat.png \
+images/o5379g0103o_XY57_pat.png \
+images/o5220g0025o_XY53_nofringe.png \
+images/o5220g0025o_XY53_fringe.png \
+images/gpc1_mask_indexed.png \
+images/full_fpa_ghosts.jpg \
+images/glint_example_o5379g0103o.jpg \
+images/o6802g0338o_XY51_b1.jpg \
+images/warp_1046511_sci.jpg \
+images/warp_1046511_mask.jpg \
+images/warp_1046511_wt.jpg \
+images/stack_3775944_sci.jpg \
+images/stack_3775944_mask.jpg \
+images/stack_3775944_wt.jpg \
+images/stack_3775944_num.jpg \
+images/stack_3775944_exp.jpg \
+images/stack_3775944_expwt.jpg
+
 submission : 
-	tar --transform 's%inputs/%%' -zcf waters2017.tgz detrend.tex detrend.bbl ../inputs/astro.sty images/o5677g0123o_XY11_bt_trail.png images/o5677g0124o_XY11_bt_trail.png images/o5677g0123o_XY11_nobt.png images/o5677g0124o_XY11_nobt.png images/o5677g0123o_XY11_bt.png images/o5677g0124o_XY11_bt.png images/linearity_XY27_xy16.png images/o5677g0123o_M_OS_NL_XY23_b1.jpg images/o5677g0123o_to_DARK_XY23_b1.jpg images/B_profile_ex.png images/o5677g0123o_VIDEODARK_VDim_Rdark_XY22_b1.jpg images/o5677g0123o_VIDEODARK_VDim_VDdark_XY22_b1.jpg images/pattern_row_edit.png images/o5379g0103o_XY57_nopat.png images/o5379g0103o_XY57_pat.png images/o5220g0025o_XY53_nofringe.png images/o5220g0025o_XY53_fringe.png images/gpc1_mask_indexed.png images/full_fpa_ghosts.jpg images/glint_example_o5379g0103o.jpg images/o6802g0338o_XY51_b1.jpg images/warp_1046511_sci.jpg images/warp_1046511_mask.jpg images/warp_1046511_wt.jpg images/stack_3775944_sci.jpg images/stack_3775944_mask.jpg images/stack_3775944_wt.jpg images/stack_3775944_num.jpg images/stack_3775944_exp.jpg images/stack_3775944_expwt.jpg
+	tar --transform 's%inputs/%%' -zcf waters2017.tgz $(FILES)
Index: trunk/doc/release.2015/ps1.detrend/apj.bst
===================================================================
--- trunk/doc/release.2015/ps1.detrend/apj.bst	(revision 39865)
+++ 	(revision )
@@ -1,1618 +1,0 @@
-
-%% 1998/08/12  J Baker
-%% Tweaked by hand to get correct results for ApJ.  Added functions from
-%% astrobib.
-
-%% $Log: apj.bst,v $
-%% Revision 1.1  2016/12/14 03:18:02  watersc1
-%% Fuck bibtex
-%%
-%% Revision 1.3  2000/04/20 22:17:50  jbaker
-%% Fixed INBOOK bug, now works essentially like BOOK.
-%%
-%% Revision 1.2  1998/08/30 22:35:45  jbaker
-%% Added RCS keywords.
-%%
-
-%%
-%% This is file `apj.bst',
-%% generated with the docstrip utility.
-%%
-%% The original source files were:
-%%
-%% merlin.mbs  (with options: `,ay,nat,nm-rev,nmdash,dt-beg,yr-per,note-yr,atit-u,jtit-x,jttl-rm,thtit-a,vnum-x,volp-com,jpg-1,pp-last,btit-rm,add-pub,pub-par,pre-edn,edby,edbyx,blk-com,fin-bare,ppx,ed,abr,ord,jabr,amper,em-x')
-%% ----------------------------------------
-%% *** Bibliographic Style for ApJ ***
-%% 
- %-------------------------------------------------------------------
- % The original source file contains the following version information:
- % \ProvidesFile{merlin.mbs}[1998/02/25 3.85a (PWD)]
- %
- % NOTICE:
- % This file may be used for non-profit purposes.
- % It may not be distributed in exchange for money,
- %   other than distribution costs.
- %
- % The author provides it `as is' and does not guarantee it in any way.
- %
- % Copyright (C) 1994-98 Patrick W. Daly
- %-------------------------------------------------------------------
- %   For use with BibTeX version 0.99a or later
- %-------------------------------------------------------------------
- % This bibliography style file is intended for texts in ENGLISH
- % This is an author-year citation style bibliography. As such, it is
- % non-standard LaTeX, and requires a special package file to function properly.
- % Such a package is    natbib.sty   by Patrick W. Daly
- % The form of the \bibitem entries is
- %   \bibitem[Jones et al.(1990)]{key}...
- %   \bibitem[Jones et al.(1990)Jones, Baker, and Smith]{key}...
- % The essential feature is that the label (the part in brackets) consists
- % of the author names, as they should appear in the citation, with the year
- % in parentheses following. There must be no space before the opening
- % parenthesis!
- % With natbib v5.3, a full list of authors may also follow the year.
- % In natbib.sty, it is possible to define the type of enclosures that is
- % really wanted (brackets or parentheses), but in either case, there must
- % be parentheses in the label.
- % The \cite command functions as follows:
- %   \citet{key} ==>>                Jones et al. (1990)
- %   \citet*{key} ==>>               Jones, Baker, and Smith (1990)
- %   \citep{key} ==>>                (Jones et al., 1990)
- %   \citep*{key} ==>>               (Jones, Baker, and Smith, 1990)
- %   \citep[chap. 2]{key} ==>>       (Jones et al., 1990, chap. 2)
- %   \citep[e.g.][]{key} ==>>        (e.g. Jones et al., 1990)
- %   \citep[e.g.][p. 32]{key} ==>>   (e.g. Jones et al., p. 32)
- %   \citeauthor{key} ==>>           Jones et al.
- %   \citeauthor*{key} ==>>          Jones, Baker, and Smith
- %   \citeyear{key} ==>>             1990
- %---------------------------------------------------------------------
-
-ENTRY
-  { address
-    author
-    booktitle
-    chapter
-    edition
-    editor
-    howpublished
-    institution
-    journal
-    key
-    month
-    note
-    number
-    organization
-    pages
-    publisher
-    school
-    series
-    title
-    type
-    volume
-    year
-  }
-  {}
-  { label extra.label sort.label short.list }
-
-INTEGERS { output.state before.all mid.sentence after.sentence after.block }
-
-FUNCTION {init.state.consts}
-{ #0 'before.all :=
-  #1 'mid.sentence :=
-  #2 'after.sentence :=
-  #3 'after.block :=
-}
-
-STRINGS { s t }
-
-FUNCTION {output.nonnull}
-{ 's :=
-  output.state mid.sentence =
-    { ", " * write$ }
-    { output.state after.block =
-        { add.period$ write$
-          newline$
-          "\newblock " write$
-        }
-        { output.state before.all =
-            'write$
-            { add.period$ " " * write$ }
-          if$
-        }
-      if$
-      mid.sentence 'output.state :=
-    }
-  if$
-  s
-}
-
-FUNCTION {output}
-{ duplicate$ empty$
-    'pop$
-    'output.nonnull
-  if$
-}
-
-FUNCTION {output.check}
-{ 't :=
-  duplicate$ empty$
-    { pop$ "empty " t * " in " * cite$ * warning$ }
-    'output.nonnull
-  if$
-}
-
-FUNCTION {fin.entry}
-{ duplicate$ empty$
-    'pop$
-    'write$
-  if$
-  newline$
-}
-
-FUNCTION {new.block}
-{ output.state before.all =
-    'skip$
-    { after.block 'output.state := }
-  if$
-}
-
-FUNCTION {new.sentence}
-{ output.state after.block =
-    'skip$
-    { output.state before.all =
-        'skip$
-        { after.sentence 'output.state := }
-      if$
-    }
-  if$
-}
-
-FUNCTION {add.blank}
-{  " " * before.all 'output.state :=
-}
-
-FUNCTION {date.block}
-{
-  skip$
-}
-
-FUNCTION {not}
-{   { #0 }
-    { #1 }
-  if$
-}
-
-FUNCTION {and}
-{   'skip$
-    { pop$ #0 }
-  if$
-}
-
-FUNCTION {or}
-{   { pop$ #1 }
-    'skip$
-  if$
-}
-
-FUNCTION {new.block.checkb}
-{ empty$
-  swap$ empty$
-  and
-    'skip$
-    'new.block
-  if$
-}
-
-FUNCTION {field.or.null}
-{ duplicate$ empty$
-    { pop$ "" }
-    'skip$
-  if$
-}
-
-FUNCTION {emphasize}
-{ skip$ }
-
-FUNCTION {capitalize}
-{ "u" change.case$ "t" change.case$ }
-
-FUNCTION {space.word}
-{ " " swap$ * " " * }
-
- % Here are the language-specific definitions for explicit words.
- % Each function has a name bbl.xxx where xxx is the English word.
- % The language selected here is ENGLISH
-FUNCTION {bbl.and}
-{ "and"}
-
-FUNCTION {bbl.editors}
-{ "eds." }
-
-FUNCTION {bbl.editor}
-{ "ed." }
-
-FUNCTION {bbl.edby}
-{ "edited by" }
-
-FUNCTION {bbl.edition}
-{ "edn." }
-
-FUNCTION {bbl.volume}
-{ "Vol." }
-
-FUNCTION {bbl.of}
-{ "of" }
-
-FUNCTION {bbl.number}
-{ "no." }
-
-FUNCTION {bbl.nr}
-{ "no." }
-
-FUNCTION {bbl.in}
-{ "in" }
-
-FUNCTION {bbl.pages}
-{ "" }
-
-FUNCTION {bbl.page}
-{ "" }
-
-FUNCTION {bbl.chapter}
-{ "Ch." }
-%{ "chap." }
-
-FUNCTION {bbl.techrep}
-{ "Tech. Rep." }
-
-FUNCTION {bbl.mthesis}
-{ "Master's thesis" }
-
-FUNCTION {bbl.phdthesis}
-{ "PhD thesis" }
-
-FUNCTION {bbl.first}
-{ "1st" }
-
-FUNCTION {bbl.second}
-{ "2nd" }
-
-FUNCTION {bbl.third}
-{ "3rd" }
-
-FUNCTION {bbl.fourth}
-{ "4th" }
-
-FUNCTION {bbl.fifth}
-{ "5th" }
-
-FUNCTION {bbl.st}
-{ "st" }
-
-FUNCTION {bbl.nd}
-{ "nd" }
-
-FUNCTION {bbl.rd}
-{ "rd" }
-
-FUNCTION {bbl.th}
-{ "th" }
-
-MACRO {jan} {"Jan."}
-
-MACRO {feb} {"Feb."}
-
-MACRO {mar} {"Mar."}
-
-MACRO {apr} {"Apr."}
-
-MACRO {may} {"May"}
-
-MACRO {jun} {"Jun."}
-
-MACRO {jul} {"Jul."}
-
-MACRO {aug} {"Aug."}
-
-MACRO {sep} {"Sep."}
-
-MACRO {oct} {"Oct."}
-
-MACRO {nov} {"Nov."}
-
-MACRO {dec} {"Dec."}
-
-FUNCTION {eng.ord}
-{ duplicate$ "1" swap$ *
-  #-2 #1 substring$ "1" =
-     { bbl.th * }
-     { duplicate$ #-1 #1 substring$
-       duplicate$ "1" =
-         { pop$ bbl.st * }
-         { duplicate$ "2" =
-             { pop$ bbl.nd * }
-             { "3" =
-                 { bbl.rd * }
-                 { bbl.th * }
-               if$
-             }
-           if$
-          }
-       if$
-     }
-   if$
-}
-
-MACRO {acmcs} {"ACM Comput. Surv."}
-
-MACRO {acta} {"Acta Inf."}
-
-MACRO {cacm} {"Commun. ACM"}
-
-MACRO {ibmjrd} {"IBM J. Res. Dev."}
-
-MACRO {ibmsj} {"IBM Syst.~J."}
-
-MACRO {ieeese} {"IEEE Trans. Softw. Eng."}
-
-MACRO {ieeetc} {"IEEE Trans. Comput."}
-
-MACRO {ieeetcad}
- {"IEEE Trans. Comput.-Aided Design Integrated Circuits"}
-
-MACRO {ipl} {"Inf. Process. Lett."}
-
-MACRO {jacm} {"J.~ACM"}
-
-MACRO {jcss} {"J.~Comput. Syst. Sci."}
-
-MACRO {scp} {"Sci. Comput. Programming"}
-
-MACRO {sicomp} {"SIAM J. Comput."}
-
-MACRO {tocs} {"ACM Trans. Comput. Syst."}
-
-MACRO {tods} {"ACM Trans. Database Syst."}
-
-MACRO {tog} {"ACM Trans. Gr."}
-
-MACRO {toms} {"ACM Trans. Math. Softw."}
-
-MACRO {toois} {"ACM Trans. Office Inf. Syst."}
-
-MACRO {toplas} {"ACM Trans. Prog. Lang. Syst."}
-
-MACRO {tcs} {"Theoretical Comput. Sci."}
-
-INTEGERS { nameptr namesleft numnames }
-
-FUNCTION {format.names}
-{ 's :=
-  #1 'nameptr :=
-  s num.names$ 'numnames :=
-  numnames 'namesleft :=
-    { namesleft #0 > }
-    { s nameptr
-      "{vv~}{ll}{, jj}{, f.}" format.name$
-    't :=
-      nameptr #1 >
-        {
-          namesleft #1 >
-            { ", " * t * }
-            {
-              numnames #2 >
-                { "," * }
-                'skip$
-              if$
-              s nameptr "{ll}" format.name$ duplicate$ "others" =
-                { 't := }
-                { pop$ }
-              if$
-              t "others" =
-                {
-                  " {et~al.}" *
-                }
-                { " \& " * t * }
-              if$
-            }
-          if$
-        }
-        't
-      if$
-      nameptr #1 + 'nameptr :=
-      namesleft #1 - 'namesleft :=
-    }
-  while$
-}
-
-FUNCTION {format.names.ed}
-{ 's :=
-  #1 'nameptr :=
-  s num.names$ 'numnames :=
-  numnames 'namesleft :=
-    { namesleft #0 > }
-    { s nameptr
-      "{f.~}{vv~}{ll}{, jj}"
-      format.name$
-      't :=
-      nameptr #1 >
-        {
-          namesleft #1 >
-            { ", " * t * }
-            {
-              numnames #2 >
-                { "," * }
-                'skip$
-              if$
-              s nameptr "{ll}" format.name$ duplicate$ "others" =
-                { 't := }
-                { pop$ }
-              if$
-              t "others" =
-                {
-                  " {et~al.}" *
-                }
-                { " \& " * t * }
-              if$
-            }
-          if$
-        }
-        't
-      if$
-      nameptr #1 + 'nameptr :=
-      namesleft #1 - 'namesleft :=
-    }
-  while$
-}
-
-FUNCTION {format.key}
-{ empty$
-    { key field.or.null }
-    { "" }
-  if$
-}
-
-FUNCTION {format.authors}
-{ author empty$
-    { "" }
-    { author format.names }
-  if$
-}
-
-FUNCTION {format.editors}
-{ editor empty$
-    { "" }
-    { editor format.names
-      editor num.names$ #1 >
-        { ", " * bbl.editors * }
-        { ", " * bbl.editor * }
-      if$
-    }
-  if$
-}
-
-FUNCTION {format.in.editors}
-{ editor empty$
-    { "" }
-    { editor format.names.ed
-    }
-  if$
-}
-
-FUNCTION {format.note}
-{ note empty$
-    { "" }
-    { note #1 #1 substring$
-      duplicate$ "{" =
-        'skip$
-        { output.state mid.sentence =
-          { "l" }
-          { "u" }
-        if$
-        change.case$
-        }
-      if$
-      note #2 global.max$ substring$ *
-    }
-  if$
-}
-
-FUNCTION {format.title}
-{ title empty$
-    { "" }
-    { title
-    }
-  if$
-}
-
-FUNCTION {format.full.names}
-{'s :=
-  #1 'nameptr :=
-  s num.names$ 'numnames :=
-  numnames 'namesleft :=
-    { namesleft #0 > }
-    { s nameptr
-      "{vv~}{ll}" format.name$
-      't :=
-      nameptr #1 >
-        {
-          namesleft #1 >
-            { ", " * t * }
-            {
-              numnames #2 >
-                { "," * }
-                'skip$
-              if$
-              s nameptr "{ll}" format.name$ duplicate$ "others" =
-                { 't := }
-                { pop$ }
-              if$
-              t "others" =
-                {
-                  " {et~al.}" *
-                }
-                { " \& " * t * }
-              if$
-            }
-          if$
-        }
-        't
-      if$
-      nameptr #1 + 'nameptr :=
-      namesleft #1 - 'namesleft :=
-    }
-  while$
-}
-
-FUNCTION {author.editor.key.full}
-{ author empty$
-    { editor empty$
-        { key empty$
-            { cite$ #1 #3 substring$ }
-            'key
-          if$
-        }
-        { editor format.full.names }
-      if$
-    }
-    { author format.full.names }
-  if$
-}
-
-FUNCTION {author.key.full}
-{ author empty$
-    { key empty$
-         { cite$ #1 #3 substring$ }
-          'key
-      if$
-    }
-    { author format.full.names }
-  if$
-}
-
-FUNCTION {editor.key.full}
-{ editor empty$
-    { key empty$
-         { cite$ #1 #3 substring$ }
-          'key
-      if$
-    }
-    { editor format.full.names }
-  if$
-}
-
-FUNCTION {make.full.names}
-{ type$ "book" =
-  type$ "inbook" =
-  or
-    'author.editor.key.full
-    { type$ "proceedings" =
-        'editor.key.full
-        'author.key.full
-      if$
-    }
-  if$
-}
-
-FUNCTION {output.bibitem}
-{ newline$
-  "\bibitem[{" write$
-  label write$
-  ")" make.full.names duplicate$ short.list =
-     { pop$ }
-     { * }
-   if$
-  "}]{" * write$
-  cite$ write$
-  "}" write$
-  newline$
-  ""
-  before.all 'output.state :=
-}
-
-FUNCTION {n.dashify}
-{
-  't :=
-  ""
-    { t empty$ not }
-    { t #1 #1 substring$ "-" =
-        { t #1 #2 substring$ "--" = not
-            { "--" *
-              t #2 global.max$ substring$ 't :=
-            }
-            {   { t #1 #1 substring$ "-" = }
-                { "-" *
-                  t #2 global.max$ substring$ 't :=
-                }
-              while$
-            }
-          if$
-        }
-        { t #1 #1 substring$ *
-          t #2 global.max$ substring$ 't :=
-        }
-      if$
-    }
-  while$
-}
-
-FUNCTION {word.in}
-{ bbl.in
-  " " * }
-
-FUNCTION {format.date}
-{ year duplicate$ empty$
-    { "empty year in " cite$ * "; set to ????" * warning$
-       pop$ "????" }
-    'skip$
-  if$
-  extra.label *
-  before.all 'output.state :=
-  after.sentence 'output.state :=
-}
-
-FUNCTION {format.btitle}
-{ title
-}
-
-FUNCTION {tie.or.space.connect}
-{ duplicate$ text.length$ #3 <
-    { "~" }
-    { " " }
-  if$
-  swap$ * *
-}
-
-FUNCTION {either.or.check}
-{ empty$
-    'pop$
-    { "can't use both " swap$ * " fields in " * cite$ * warning$ }
-  if$
-}
-
-FUNCTION {format.bvolume}
-{ volume empty$
-    { "" }
-    { bbl.volume volume tie.or.space.connect
-      series empty$
-        'skip$
-        { bbl.of space.word * series emphasize * }
-      if$
-      "volume and number" number either.or.check
-    }
-  if$
-}
-
-FUNCTION {format.number.series}
-{ volume empty$
-    { number empty$
-        { series field.or.null }
-        { output.state mid.sentence =
-            { bbl.number }
-            { bbl.number capitalize }
-          if$
-          number tie.or.space.connect
-          series empty$
-            { "there's a number but no series in " cite$ * warning$ }
-            { bbl.in space.word * series * }
-          if$
-        }
-      if$
-    }
-    { "" }
-  if$
-}
-
-FUNCTION {is.num}
-{ chr.to.int$
-  duplicate$ "0" chr.to.int$ < not
-  swap$ "9" chr.to.int$ > not and
-}
-
-FUNCTION {extract.num}
-{ duplicate$ 't :=
-  "" 's :=
-  { t empty$ not }
-  { t #1 #1 substring$
-    t #2 global.max$ substring$ 't :=
-    duplicate$ is.num
-      { s swap$ * 's := }
-      { pop$ "" 't := }
-    if$
-  }
-  while$
-  s empty$
-    'skip$
-    { pop$ s }
-  if$
-}
-
-FUNCTION {convert.edition}
-{ edition extract.num "l" change.case$ 's :=
-  s "first" = s "1" = or
-    { bbl.first 't := }
-    { s "second" = s "2" = or
-        { bbl.second 't := }
-        { s "third" = s "3" = or
-            { bbl.third 't := }
-            { s "fourth" = s "4" = or
-                { bbl.fourth 't := }
-                { s "fifth" = s "5" = or
-                    { bbl.fifth 't := }
-                    { s #1 #1 substring$ is.num
-                        { s eng.ord 't := }
-                        { edition 't := }
-                      if$
-                    }
-                  if$
-                }
-              if$
-            }
-          if$
-        }
-      if$
-    }
-  if$
-  t
-}
-
-FUNCTION {format.edition}
-{ edition empty$
-    { "" }
-    { output.state mid.sentence =
-        { convert.edition "l" change.case$ " " * bbl.edition * }
-        { convert.edition "t" change.case$ " " * bbl.edition * }
-      if$
-    }
-  if$
-}
-
-INTEGERS { multiresult }
-
-FUNCTION {multi.page.check}
-{ 't :=
-  #0 'multiresult :=
-    { multiresult not
-      t empty$ not
-      and
-    }
-    { t #1 #1 substring$
-      duplicate$ "-" =
-      swap$ duplicate$ "," =
-      swap$ "+" =
-      or or
-        { #1 'multiresult := }
-        { t #2 global.max$ substring$ 't := }
-      if$
-    }
-  while$
-  multiresult
-}
-
-FUNCTION {format.pages}
-{ pages empty$
-    { "" }
-    { pages multi.page.check
-%        { bbl.pages pages n.dashify tie.or.space.connect }
-%        { bbl.page pages tie.or.space.connect }
-        { pages n.dashify }
-        { pages }
-      if$
-    }
-  if$
-}
-
-FUNCTION {first.page}
-{ 't :=
-  ""
-    {  t empty$ not t #1 #1 substring$ "-" = not and }
-    { t #1 #1 substring$ *
-      t #2 global.max$ substring$ 't :=
-    }
-  while$
-}
-
-FUNCTION {format.journal.pages}
-{ pages empty$
-    'skip$
-    { duplicate$ empty$
-        { pop$ format.pages }
-        {
-          ", " *
-          pages first.page *
-        }
-      if$
-    }
-  if$
-}
-
-FUNCTION {format.vol.num.pages}
-{ volume field.or.null
-}
-
-FUNCTION {format.chapter.pages}
-{ chapter empty$
-    { "" }
-    { type empty$
-        { bbl.chapter }
-        { type "l" change.case$ }
-      if$
-      chapter tie.or.space.connect
-    }
-  if$
-}
-
-FUNCTION {format.in.ed.booktitle}
-{ booktitle empty$
-    { "" }
-    { editor empty$
-        { word.in booktitle emphasize * }
-        { word.in booktitle emphasize *
-          ", " *
-          editor num.names$ #1 >
-            { bbl.editors }
-            { bbl.editor }
-          if$
-          * " " *
-          format.in.editors *
-        }
-      if$
-    }
-  if$
-}
-
-FUNCTION {format.thesis.type}
-{ type empty$
-    'skip$
-    { pop$
-      type "t" change.case$
-    }
-  if$
-}
-
-FUNCTION {format.tr.number}
-{ type empty$
-    { bbl.techrep }
-    'type
-  if$
-  number empty$
-    { "t" change.case$ }
-    { number tie.or.space.connect }
-  if$
-}
-
-FUNCTION {format.article.crossref}
-{
-  word.in
-  " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.book.crossref}
-{ volume empty$
-    { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
-      word.in
-    }
-    { bbl.volume volume tie.or.space.connect
-      bbl.of space.word *
-    }
-  if$
-  " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.incoll.inproc.crossref}
-{
-  word.in
-  " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.publisher}
-{ publisher empty$
-    { "empty publisher in " cite$ * warning$ }
-    'skip$
-  if$
-  ""
-  address empty$ publisher empty$ and
-    'skip$
-    {
-      add.blank "(" *
-      address empty$
-        'skip$
-        { address * }
-      if$
-      publisher empty$
-        'skip$
-        { address empty$
-            'skip$
-            { ": " * }
-          if$
-          publisher *
-        }
-      if$
-      ")" *
-    }
-  if$
-  output
-}
-
-STRINGS {oldname}
-
-FUNCTION {name.or.dash}
-{ 's :=
-   oldname empty$
-     { s 'oldname := s }
-     { s oldname =
-         { "---" }
-         { s 'oldname := s }
-       if$
-     }
-   if$
-}
-
-%%%%%%%%  Functions added from astrobib
-
-FUNCTION {format.edn.btitle} % Title should be on stack.
-{ duplicate$ empty$ edition empty$ or
-    'skip$
-    { ", " * format.edition * }
-  if$
-}
-
-FUNCTION {format.ed.booktitle} % The title should be on the stack.
-{ duplicate$ empty$
-  { "no book title in " cite$ * warning$ "" pop$ }
-  { editor empty$
-    author empty$ or  % Empty author means editor already given.
-      'format.edn.btitle
-      { format.edn.btitle ", " * bbl.editor * " " * format.in.editors * }
-      if$
-  }
-  if$
-}
-
-FUNCTION {format.full.book.spec} % The title should be on the stack.
-{ series empty$
-    { format.ed.booktitle
-      volume empty$
-	{ number empty$
-	    'skip$
-	    { " there's a number but no series in " cite$ * warning$
-	      " No." number tie.or.space.connect * }
-	    if$
-	}
-	{ ", Vol." volume tie.or.space.connect *
-	  number empty$
-	    'skip$
-	    {"Both volume and number fields in " * cite$ * warning$ }
-	    if$
-	}
-	if$
-    }
-    { volume empty$
-	{ format.ed.booktitle ", " * series *
-	  number empty$
-	    'skip$
-	    { " No." number tie.or.space.connect * }
-	    if$
-	}
-	{ series ", Vol." volume tie.or.space.connect *  
-          ", " * swap$ format.ed.booktitle *
-	  number empty$
-	    'skip$
-	    {"Both volume and number fields in " * cite$ * warning$ }
-	    if$
-	}
-        if$
-    }
-    if$
-}
-
-%%%%%%%  End of functions from astrobib
-
-FUNCTION {article}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  crossref missing$
-    { journal
-      "journal" output.check
-      format.vol.num.pages output
-    }
-    { format.article.crossref output.nonnull
-      format.pages output
-    }
-  if$
-  format.journal.pages
-  format.note output
-  fin.entry
-}
-
-FUNCTION {book}
-{ output.bibitem
-  author empty$
-    { format.editors "author and editor" output.check
-      editor format.key output
-      name.or.dash
-    }
-    { format.authors output.nonnull
-      name.or.dash
-      crossref missing$
-        { "author and editor" editor either.or.check }
-        'skip$
-      if$
-    }
-  if$
-  format.date "year" output.check
-  date.block
-  title format.full.book.spec output
-%  format.btitle "title" output.check
-%  crossref missing$
-%    { format.bvolume output
-%      format.number.series output
-%      format.edition output
-   format.publisher
-%    }
-%    {
-%      format.book.crossref output.nonnull
-%    }
-%  if$
-  format.pages output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {booklet}
-{ output.bibitem
-  format.authors output
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  format.title "title" output.check
-  howpublished output
-  address output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {inbook}
-{ output.bibitem
-  author empty$
-    { format.editors "author and editor" output.check
-      editor format.key output
-      name.or.dash
-    }
-    { format.authors output.nonnull
-      name.or.dash
-      crossref missing$
-        { "author and editor" editor either.or.check }
-        'skip$
-      if$
-    }
-  if$
-  format.date "year" output.check
-  date.block
-  title format.full.book.spec output
-%  format.btitle "title" output.check
-%  crossref missing$
-%    {
-%      format.bvolume output
-%      format.chapter.pages "chapter and pages" output.check
-%      format.number.series output
-%      format.edition output
-   format.publisher
-%    }
-%    {
-%      format.chapter.pages "chapter and pages" output.check
-%      format.book.crossref output.nonnull
-%    }
-%  if$
-  format.pages "pages" output.check
-  format.note output
-  fin.entry
-}
-
-FUNCTION {incollection}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  bbl.in " " * booktitle format.full.book.spec * output
-%  crossref missing$
-%    { format.in.ed.booktitle "booktitle" output.check
-%      format.bvolume output
-%      format.number.series output
-%      format.edition output
-%      format.chapter.pages output
-  format.publisher
-%    }
-%    { format.incoll.inproc.crossref output.nonnull
-%      format.chapter.pages output
-%    }
-%  if$
-  format.pages "pages" output.check
-  format.note output
-  fin.entry
-}
-
-FUNCTION {inproceedings}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output            % added
-  format.date "year" output.check
-  date.block
-  bbl.in " " * booktitle format.full.book.spec * output
-%  crossref missing$
-%    { format.in.ed.booktitle "booktitle" output.check
-%      format.bvolume output
-%      format.number.series output
-  publisher empty$
-    { organization output
-      address output
-    }
-    { organization output
-      format.publisher
-    }
-  if$
-%    }
-%    { format.incoll.inproc.crossref output.nonnull
-%    }
-%  if$
-  format.pages output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {conference} { inproceedings }
-
-FUNCTION {manual}
-{ output.bibitem
-  format.authors output
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  format.btitle "title" output.check
-  format.edition output
-  organization output
-  address output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {mastersthesis}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-%  format.title "title" output.check
-  bbl.mthesis format.thesis.type output.nonnull
-  school "school" output.check
-  address output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {misc}
-{ output.bibitem
-  format.authors output
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  format.title output
-  howpublished output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {phdthesis}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-%  format.title "title" output.check
-  bbl.phdthesis format.thesis.type output.nonnull
-  school "school" output.check
-  address output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {proceedings}
-{ output.bibitem
-  editor empty$
-    { organization output
-      organization format.key output }
-    { format.editors output }
-  if$
-%  format.editors output
-%  editor format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  title format.full.book.spec output
-%  format.btitle "title" output.check
-%  format.bvolume output
-%  format.number.series output
-  publisher empty$ not      % No need for warning if no pub.
-    { format.publisher }
-    { editor empty$         % For empty editor, organization was already given.
-        'skip$
-        { organization output }
-      if$
-      address output
-    }
-  if$
-%  address output
-%  organization output
-%  publisher output
-  format.pages output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {techreport}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-  format.title "title" output.check
-  format.tr.number output.nonnull
-  institution "institution" output.check
-  address output
-  format.note output
-  fin.entry
-}
-
-FUNCTION {unpublished}
-{ output.bibitem
-  format.authors "author" output.check
-  author format.key output
-  name.or.dash
-  format.date "year" output.check
-  date.block
-%  format.title "title" output.check
-  format.note "note" output.check
-  fin.entry
-}
-
-FUNCTION {default.type} { misc }
-
-READ
-
-FUNCTION {sortify}
-{ purify$
-  "l" change.case$
-}
-
-INTEGERS { len }
-
-FUNCTION {chop.word}
-{ 's :=
-  'len :=
-  s #1 len substring$ =
-    { s len #1 + global.max$ substring$ }
-    's
-  if$
-}
-
-FUNCTION {format.lab.names}
-{ 's :=
-  s #1 "{vv~}{ll}" format.name$
-  s num.names$ duplicate$
-  #2 >
-    { pop$
-      " {et~al.}" *
-    }
-    { #2 <
-        'skip$
-        { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
-            {
-              " {et~al.}" *
-            }
-            { " \& " * s #2 "{vv~}{ll}" format.name$
-              * }
-          if$
-        }
-      if$
-    }
-  if$
-}
-
-FUNCTION {author.key.label}
-{ author empty$
-    { key empty$
-        { cite$ #1 #3 substring$ }
-        'key
-      if$
-    }
-    { author format.lab.names }
-  if$
-}
-
-FUNCTION {author.editor.key.label}
-{ author empty$
-    { editor empty$
-        { key empty$
-            { cite$ #1 #3 substring$ }
-            'key
-          if$
-        }
-        { editor format.lab.names }
-      if$
-    }
-    { author format.lab.names }
-  if$
-}
-
-FUNCTION {editor.key.label}
-{ editor empty$
-    { key empty$
-        { cite$ #1 #3 substring$ }
-        'key
-      if$
-    }
-    { editor format.lab.names }
-  if$
-}
-
-FUNCTION {calc.short.authors}
-{ type$ "book" =
-  type$ "inbook" =
-  or
-    'author.editor.key.label
-    { type$ "proceedings" =
-        'editor.key.label
-        'author.key.label
-      if$
-    }
-  if$
-  'short.list :=
-}
-
-FUNCTION {calc.label}
-{ calc.short.authors
-  short.list
-  "("
-  *
-  year duplicate$ empty$
-     { pop$ "????" }
-     'skip$
-  if$
-  *
-  'label :=
-}
-
-FUNCTION {sort.format.names}
-{ 's :=
-  #1 'nameptr :=
-  ""
-  s num.names$ 'numnames :=
-  numnames 'namesleft :=
-    { namesleft #0 > }
-    { s nameptr
-      "{vv{ } }{ll{ }}{  f{ }}{  jj{ }}"
-      format.name$ 't :=
-      nameptr #1 >
-        {
-          "   "  *
-          namesleft #1 = t "others" = and
-            { "zzzzz" * }
-            { t sortify * }
-          if$
-        }
-        { t sortify * }
-      if$
-      nameptr #1 + 'nameptr :=
-      namesleft #1 - 'namesleft :=
-    }
-  while$
-}
-
-FUNCTION {sort.format.title}
-{ 't :=
-  "A " #2
-    "An " #3
-      "The " #4 t chop.word
-    chop.word
-  chop.word
-  sortify
-  #1 global.max$ substring$
-}
-
-FUNCTION {author.sort}
-{ author empty$
-    { key empty$
-        { "to sort, need author or key in " cite$ * warning$
-          ""
-        }
-        { key sortify }
-      if$
-    }
-    { author sort.format.names }
-  if$
-}
-
-FUNCTION {author.editor.sort}
-{ author empty$
-    { editor empty$
-        { key empty$
-            { "to sort, need author, editor, or key in " cite$ * warning$
-              ""
-            }
-            { key sortify }
-          if$
-        }
-        { editor sort.format.names }
-      if$
-    }
-    { author sort.format.names }
-  if$
-}
-
-FUNCTION {editor.sort}
-{ editor empty$
-    { key empty$
-        { "to sort, need editor or key in " cite$ * warning$
-          ""
-        }
-        { key sortify }
-      if$
-    }
-    { editor sort.format.names }
-  if$
-}
-
-FUNCTION {presort}
-{ calc.label
-  label sortify
-  "    "
-  *
-  type$ "book" =
-  type$ "inbook" =
-  or
-    'author.editor.sort
-    { type$ "proceedings" =
-        'editor.sort
-        'author.sort
-      if$
-    }
-  if$
-  #1 entry.max$ substring$
-  'sort.label :=
-  sort.label
-  *
-  "    "
-  *
-  title field.or.null
-  sort.format.title
-  *
-  #1 entry.max$ substring$
-  'sort.key$ :=
-}
-
-ITERATE {presort}
-
-SORT
-
-STRINGS { last.label next.extra }
-
-INTEGERS { last.extra.num number.label }
-
-FUNCTION {initialize.extra.label.stuff}
-{ #0 int.to.chr$ 'last.label :=
-  "" 'next.extra :=
-  #0 'last.extra.num :=
-  #0 'number.label :=
-}
-
-FUNCTION {forward.pass}
-{ last.label label =
-    { last.extra.num #1 + 'last.extra.num :=
-      last.extra.num int.to.chr$ 'extra.label :=
-    }
-    { "a" chr.to.int$ 'last.extra.num :=
-      "" 'extra.label :=
-      label 'last.label :=
-    }
-  if$
-  number.label #1 + 'number.label :=
-}
-
-FUNCTION {reverse.pass}
-{ next.extra "b" =
-    { "a" 'extra.label := }
-    'skip$
-  if$
-  extra.label 'next.extra :=
-  extra.label
-  duplicate$ empty$
-    'skip$
-    { "{\natexlab{" swap$ * "}}" * }
-  if$
-  'extra.label :=
-  label extra.label * 'label :=
-}
-
-EXECUTE {initialize.extra.label.stuff}
-
-ITERATE {forward.pass}
-
-REVERSE {reverse.pass}
-
-FUNCTION {bib.sort.order}
-{ sort.label
-  "    "
-  *
-  year field.or.null sortify
-  *
-  "    "
-  *
-  title field.or.null
-  sort.format.title
-  *
-  #1 entry.max$ substring$
-  'sort.key$ :=
-}
-
-ITERATE {bib.sort.order}
-
-SORT
-
-FUNCTION {begin.bib}
-{ preamble$ empty$
-    'skip$
-    { preamble$ write$ newline$ }
-  if$
-  "\begin{thebibliography}{" number.label int.to.str$ * "}" *
-  write$ newline$
-  "\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi"
-  write$ newline$
-}
-
-EXECUTE {begin.bib}
-
-EXECUTE {init.state.consts}
-
-ITERATE {call.type$}
-
-FUNCTION {end.bib}
-{ newline$
-  "\end{thebibliography}" write$ newline$
-}
-
-EXECUTE {end.bib}
-%% End of customized bst file
-%%
-%% End of file `apj.bst'.
Index: trunk/doc/release.2015/ps1.detrend/lib.bib
===================================================================
--- trunk/doc/release.2015/ps1.detrend/lib.bib	(revision 39865)
+++ 	(revision )
@@ -1,15929 +1,0 @@
-@ARTICLE{magnier2017a,
-   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{price2017,
-   author = {{Price}, P.~A. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{chambers2017,
-   author = {{Chambers}, K.~C. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{waters2017,
-   author = {{Waters}, C. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{magnier2017b,
-   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{magnier2017c,
-   author = {{Magnier}, E. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{flewelling2017,
-   author = {{Flewelling}, H. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{huber2017,
-   author = {{Huber}, M. and {TBD}, A. and {TBD}, B. and et al.},
-    title = "{IPP}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint ={YYYY.XXXXX},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics},
-     year = 2017,
-    month = jan,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@manual{chambers_k_c_2006_199843,
-  title        = {Mission Concept Statement for PS1},
-  author       = {Chambers, K. C.},
-  month        = sep,
-  year         = 2006,
-  doi          = {10.5281/zenodo.199843},
-  url          = {https://doi.org/10.5281/zenodo.199843}
-}
-
-
-@manual{chambers_k_c_2007_199832,
-  title        = {PS1 Science Goals Statement},
-  author       = {Chambers, K. C.},
-  month        = feb,
-  year         = 2007,
-  doi          = {10.5281/zenodo.199832},
-  url          = {https://doi.org/10.5281/zenodo.199832}
-}
-
-
-
-@manual{chambers_k_c_2008_199860,
-  title        = {PS1 Design Reference Mission},
-  author       = {Chambers, K. C. and
-                  Denneau, Larry Jr.},
-  month        = apr,
-  year         = 2008,
-  doi          = {10.5281/zenodo.199860},
-  url          = {https://doi.org/10.5281/zenodo.199860}
-}
-
-@ARTICLE{1997PASP..109.1154T,
-   author = {{Tonry}, J. and {Burke}, B.~E. and {Schechter}, P.~L.},
-    title = "{The Orthogonal Transfer CCD}",
-  journal = {\pasp},
- keywords = {INSTRUMENTATION: CAMERAS},
-     year = 1997,
-    month = oct,
-   volume = 109,
-    pages = {1154-1164},
-      doi = {10.1086/133989},
-   adsurl = {http://adsabs.harvard.edu/abs/1997PASP..109.1154T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2002SPIE.4836..206T,
-   author = {{Tonry}, J.~L. and {Luppino}, G.~A. and {Kaiser}, N. and {Burke}, B.~E. and 
-	{Jacoby}, G.~H.},
-    title = "{Rubber Focal Plane for Sky Surveys}",
-booktitle = {Survey and Other Telescope Technologies and Discoveries},
-     year = 2002,
-   series = {\procspie},
-   volume = 4836,
-   editor = {{Tyson}, J.~A. and {Wolff}, S.},
-    month = dec,
-    pages = {206-216},
-      doi = {10.1117/12.461350},
-   adsurl = {http://adsabs.harvard.edu/abs/2002SPIE.4836..206T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000PASP..112..768K,
-   author = {{Kaiser}, N. and {Tonry}, J.~L. and {Luppino}, G.~A.},
-    title = "{A New Strategy for Deep Wide-Field High-Resolution Optical Imaging}",
-  journal = {\pasp},
-   eprint = {astro-ph/9912181},
- keywords = {Atmospheric Effects, Instrumentation: Adaptive Optics, Instrumentation: Detectors, Telescopes},
-     year = 2000,
-    month = jun,
-   volume = 112,
-    pages = {768-800},
-      doi = {10.1086/316578},
-   adsurl = {http://adsabs.harvard.edu/abs/2000PASP..112..768K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2008SPIE.7014E..0DO,
-   author = {{Onaka}, P. and {Tonry}, J.~L. and {Isani}, S. and {Lee}, A. and 
-	{Uyeshiro}, R. and {Rae}, C. and {Robertson}, L. and {Ching}, G.
-	},
-    title = "{The Pan-STARRS Gigapixel Camera \#1 and STARGRASP controller results and performance}",
-booktitle = {Ground-based and Airborne Instrumentation for Astronomy II},
-     year = 2008,
-   series = {\procspie},
-   volume = 7014,
-    month = jul,
-      eid = {70140D},
-    pages = {70140D},
-      doi = {10.1117/12.788093},
-   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7014E..0DO},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJS..191..376S,
-   author = {{Stubbs}, C.~W. and {Doherty}, P. and {Cramer}, C. and {Narayan}, G. and 
-	{Brown}, Y.~J. and {Lykke}, K.~R. and {Woodward}, J.~T. and 
-	{Tonry}, J.~L.},
-    title = "{Precise Throughput Determination of the PanSTARRS Telescope and the Gigapixel Imager Using a Calibrated Silicon Photodiode and a Tunable Laser: Initial Results}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1003.3465},
- primaryClass = "astro-ph.IM",
- keywords = {instrumentation: detectors, instrumentation: photometers, surveys, techniques: photometric},
-     year = 2010,
-    month = dec,
-   volume = 191,
-    pages = {376-388},
-      doi = {10.1088/0067-0049/191/2/376},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJS..191..376S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2007PASP..119.1163S,
-   author = {{Stubbs}, C.~W. and {High}, F.~W. and {George}, M.~R. and {DeRose}, K.~L. and 
-	{Blondin}, S. and {Tonry}, J.~L. and {Chambers}, K.~C. and {Granett}, B.~R. and 
-	{Burke}, D.~L. and {Smith}, R.~C.},
-    title = "{Toward More Precise Survey Photometry for PanSTARRS and LSST: Measuring Directly the Optical Transmission Spectrum of the Atmosphere}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {0708.1364},
- keywords = {Astronomical Phenomena and Seeing},
-     year = 2007,
-    month = oct,
-   volume = 119,
-    pages = {1163-1178},
-      doi = {10.1086/522208},
-   adsurl = {http://adsabs.harvard.edu/abs/2007PASP..119.1163S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1983ApJ...266..713O,
-   author = {{Oke}, J.~B. and {Gunn}, J.~E.},
-    title = "{Secondary standard stars for absolute spectrophotometry}",
-  journal = {\apj},
- keywords = {Reference Stars, Spectral Energy Distribution, Stellar Spectrophotometry, Subdwarf Stars, Calibrating, Line Spectra},
-     year = 1983,
-    month = mar,
-   volume = 266,
-    pages = {713-717},
-      doi = {10.1086/160817},
-   adsurl = {http://adsabs.harvard.edu/abs/1983ApJ...266..713O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...815..117S,
-   author = {{Scolnic}, D. and {Casertano}, S. and {Riess}, A. and {Rest}, A. and 
-	{Schlafly}, E. and {Foley}, R.~J. and {Finkbeiner}, D. and {Tang}, C. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Draper}, P.~W. and 
-	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M.~E. and 
-	{Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Stubbs}, C.~W.},
-    title = "{Supercal: Cross-calibration of Multiple Photometric Systems to Improve Cosmological Measurements with Type Ia Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1508.05361},
- primaryClass = "astro-ph.IM",
- keywords = {dark energy, supernovae: general, surveys},
-     year = 2015,
-    month = dec,
-   volume = 815,
-      eid = {117},
-    pages = {117},
-      doi = {10.1088/0004-637X/815/2/117},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...815..117S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015IAUGA..2251124W,
-   author = {{Wainscoat}, R. and {Weryk}, R. and {Schunova}, E. and {Carter Chambers}, K.
-	},
-    title = "{The Pan-STARRS search for Near Earth Objects}",
-  journal = {IAU General Assembly},
-     year = 2015,
-    month = aug,
-   volume = 22,
-      eid = {2251124},
-    pages = {2251124},
-   adsurl = {http://adsabs.harvard.edu/abs/2015IAUGA..2251124W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...797...22L,
-   author = {{Lee}, C.-H. and {Koppenhoefer}, J. and {Seitz}, S. and {Bender}, R. and 
-	{Riffeser}, A. and {Kodric}, M. and {Hopp}, U. and {Snigula}, J. and 
-	{G{\"o}ssl}, C. and {Kudritzki}, R.-P. and {Burgett}, W. and 
-	{Chambers}, K. and {Hodapp}, K. and {Kaiser}, N. and {Waters}, C.
-	},
-    title = "{Properties of M31. V. 298 Eclipsing Binaries from PAndromeda}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1411.1115},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: eclipsing, galaxies: individual: M31, stars: distances, stars: fundamental parameters},
-     year = 2014,
-    month = dec,
-   volume = 797,
-      eid = {22},
-    pages = {22},
-      doi = {10.1088/0004-637X/797/1/22},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...797...22L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...785...11L,
-   author = {{Lee}, C.-H. and {Seitz}, S. and {Kodric}, M. and {Riffeser}, A. and 
-	{Koppenhoefer}, J. and {Bender}, R. and {Snigula}, J. and {Hopp}, U. and 
-	{G{\"o}ssl}, C. and {Bianchi}, L. and {Price}, P.~A. and {Fraser}, M. and 
-	{Burgett}, W. and {Chambers}, K.~C. and {Draper}, P.~W. and 
-	{Flewelling}, H. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Magnier}, E.~A.},
-    title = "{Properties of M31. IV. Candidate Luminous Blue Variables from PAndromeda}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1403.6859},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: M31, stars: early-type, stars: evolution, stars: massive},
-     year = 2014,
-    month = apr,
-   volume = 785,
-      eid = {11},
-    pages = {11},
-      doi = {10.1088/0004-637X/785/1/11},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...11L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...777...35L,
-   author = {{Lee}, C.-H. and {Kodric}, M. and {Seitz}, S. and {Riffeser}, A. and 
-	{Koppenhoefer}, J. and {Bender}, R. and {Hopp}, U. and {G{\"o}ssl}, C. and 
-	{Snigula}, J. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
-    title = "{Properties of M31. III. Candidate Beat Cepheids from PS1 PAndromeda Data and Their Implication on Metallicity Gradient}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1308.6576},
- primaryClass = "astro-ph.GA",
- keywords = {galaxies: individual: M31, stars: variables: Cepheids },
-     year = 2013,
-    month = nov,
-   volume = 777,
-      eid = {35},
-    pages = {35},
-      doi = {10.1088/0004-637X/777/1/35},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777...35L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013AJ....145..106K,
-   author = {{Kodric}, M. and {Riffeser}, A. and {Hopp}, U. and {Seitz}, S. and 
-	{Koppenhoefer}, J. and {Bender}, R. and {Goessl}, C. and {Snigula}, J. and 
-	{Lee}, C.-H. and {Ngeow}, C.-C. and {Chambers}, K.~C. and {Magnier}, E.~A. and 
-	{Price}, P.~A. and {Burgett}, W.~S. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P.},
-    title = "{Properties of M31. II. A Cepheid Disk Sample Derived from the First Year of PS1 PAndromeda Data}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1301.6170},
- primaryClass = "astro-ph.CO",
- keywords = {catalogs, distance scale, galaxies: individual: M31 NGC 224, galaxies: star formation, Local Group, stars: variables: Cepheids},
-     year = 2013,
-    month = apr,
-   volume = 145,
-      eid = {106},
-    pages = {106},
-      doi = {10.1088/0004-6256/145/4/106},
-   adsurl = {http://adsabs.harvard.edu/abs/2013AJ....145..106K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012AJ....143...89L,
-   author = {{Lee}, C.-H. and {Riffeser}, A. and {Koppenhoefer}, J. and {Seitz}, S. and 
-	{Bender}, R. and {Hopp}, U. and {G{\"o}ssl}, C. and {Saglia}, R.~P. and 
-	{Snigula}, J. and {Sweeney}, W.~E. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
-	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
-    title = "{PAndromeda{\mdash}First Results from the High-cadence Monitoring of M31 with Pan-STARRS 1}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1109.6320},
- primaryClass = "astro-ph.GA",
- keywords = {galaxies: individual: M31, gravitational lensing: micro, stars: variables: Cepheids},
-     year = 2012,
-    month = apr,
-   volume = 143,
-      eid = {89},
-    pages = {89},
-      doi = {10.1088/0004-6256/143/4/89},
-   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143...89L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...777L..20L,
-   author = {{Liu}, M.~C. and {Magnier}, E.~A. and {Deacon}, N.~R. and {Allers}, K.~N. and 
-	{Dupuy}, T.~J. and {Kotson}, M.~C. and {Aller}, K.~M. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Draper}, P.~W. and {Hodapp}, K.~W. and 
-	{Jedicke}, R. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Metcalfe}, N. and 
-	{Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J.
-	},
-    title = "{The Extremely Red, Young L Dwarf PSO J318.5338-22.8603: A Free-floating Planetary-mass Analog to Directly Imaged Young Gas-giant Planets}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1310.0457},
- primaryClass = "astro-ph.EP",
- keywords = {brown dwarfs, parallaxes, planets and satellites: atmospheres, proper motions, solar neighborhood, surveys},
-     year = 2013,
-    month = nov,
-   volume = 777,
-      eid = {L20},
-    pages = {L20},
-      doi = {10.1088/2041-8205/777/2/L20},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777L..20L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011AJ....142...77D,
-   author = {{Deacon}, N.~R. and {Liu}, M.~C. and {Magnier}, E.~A. and {Bowler}, B.~P. and 
-	{Goldman}, B. and {Redstone}, J.~A. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Flewelling}, H. and {Kaiser}, N. and 
-	{Lupton}, R.~H. and {Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W.~E. and 
-	{Tonry}, J.~L. and {Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Four New T Dwarfs Identified in Pan-STARRS 1 Commissioning Data}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1106.3105},
- primaryClass = "astro-ph.SR",
- keywords = {brown dwarfs, stars: low-mass, surveys},
-     year = 2011,
-    month = sep,
-   volume = 142,
-      eid = {77},
-    pages = {77},
-      doi = {10.1088/0004-6256/142/3/77},
-   adsurl = {http://adsabs.harvard.edu/abs/2011AJ....142...77D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2008SPIE.7021E..05T,
-   author = {{Tonry}, J.~L. and {Burke}, B.~E. and {Isani}, S. and {Onaka}, P.~M. and 
-	{Cooper}, M.~J.},
-    title = "{Results from the Pan-STARRS Orthogonal Transfer Array (OTA)}",
-booktitle = {High Energy, Optical, and Infrared Detectors for Astronomy III},
-     year = 2008,
-   series = {\procspie},
-   volume = 7021,
-    month = jul,
-      eid = {702105},
-    pages = {702105},
-      doi = {10.1117/12.789617},
-   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7021E..05T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2006amos.confE..47T,
-   author = {{Tonry}, J. and {Onaka}, P. and {Luppino}, G. and {Isani}, S.
-	},
-    title = "{The Pan-STARRS Gigapixel Camera}",
-booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
-     year = 2006,
-    pages = {E47},
-   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..47T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2007AAS...210.6206C,
-   author = {{Chambers}, K. and {Pan-STARRS Telescope No.~1} and {PS1 Science Consortium}
-	},
-    title = "{The PS1 Sky Surveys and Science Mission}",
-booktitle = {American Astronomical Society Meeting Abstracts \#210},
-     year = 2007,
-   series = {Bulletin of the American Astronomical Society},
-   volume = 39,
-    month = may,
-      eid = {62.06},
-    pages = {171},
-   adsurl = {http://adsabs.harvard.edu/abs/2007AAS...210.6206C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2006amos.confE..39C,
-   author = {{Chambers}, K.},
-    title = "{PS1 and the PS1 Science Mission}",
-booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
-     year = 2006,
-    pages = {E39},
-   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..39C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2012SPIE.8444E..0HM,
-   author = {{Morgan}, J.~S. and {Kaiser}, N. and {Moreau}, V. and {Anderson}, D. and 
-	{Burgett}, W.},
-    title = "{Design differences between the Pan-STARRS PS1 and PS2 telescopes}",
-booktitle = {Ground-based and Airborne Telescopes IV},
-     year = 2012,
-   series = {\procspie},
-   volume = 8444,
-archivePrefix = "arXiv",
-   eprint = {1207.2513},
- primaryClass = "astro-ph.IM",
-    month = sep,
-      eid = {84440H},
-    pages = {84440H},
-      doi = {10.1117/12.926646},
-   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8444E..0HM},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2008AIPC.1082..352H,
-   author = {{Heasley}, J.~N.},
-    title = "{The Pan-STARRS Data Processing and Science Analysis Software Systems}",
- keywords = {X- and gamma-ray telescopes and instrumentation, Astronomical catalogs atlases sky surveys databases retrieval systems archives etc., Cosmology},
-booktitle = {American Institute of Physics Conference Series},
-     year = 2008,
-   series = {American Institute of Physics Conference Series},
-   volume = 1082,
-   editor = {{Bailer-Jones}, C.~A.~L.},
-    month = dec,
-    pages = {352-358},
-      doi = {10.1063/1.3059075},
-   adsurl = {http://adsabs.harvard.edu/abs/2008AIPC.1082..352H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2006amos.confE..50M,
-   author = {{Magnier}, E.},
-    title = "{The Pan-STARRS PS1 Image Processing Pipeline}",
-booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
-     year = 2006,
-    pages = {E50},
-   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..50M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{1973egfs.conf..433C,
-   author = {{Carter}, W.~E. and {Williams}, J.~D.},
-    title = "{University of Hawaii LURE Observatory}",
-booktitle = {The Earth's Gravitational Field and Secular Variations in Position},
-     year = 1973,
-   editor = {{Angus-Leppan}, P.~V. and {Bomford}, A.~G. and {Dooley}, J.~C. and 
-	{Mather}, R.~S.},
-    pages = {433},
-   adsurl = {http://adsabs.harvard.edu/abs/1973egfs.conf..433C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004AN....325..636H,
-   author = {{Hodapp}, K.~W. and {Kaiser}, N. and {Aussel}, H. and {Burgett}, W. and 
-	{Chambers}, K.~C. and {Chun}, M. and {Dombeck}, T. and {Douglas}, A. and 
-	{Hafner}, D. and {Heasley}, J. and {Hoblitt}, J. and {Hude}, C. and 
-	{Isani}, S. and {Jedicke}, R. and {Jewitt}, D. and {Laux}, U. and 
-	{Luppino}, G.~A. and {Lupton}, R. and {Maberry}, M. and {Magnier}, E. and 
-	{Mannery}, E. and {Monet}, D. and {Morgan}, J. and {Onaka}, P. and 
-	{Price}, P. and {Ryan}, A. and {Siegmund}, W. and {Szapudi}, I. and 
-	{Tonry}, J. and {Wainscoat}, R. and {Waterson}, M.},
-    title = "{Design of the Pan-STARRS telescopes}",
-  journal = {Astronomische Nachrichten},
- keywords = {survey telescope, optical design},
-     year = 2004,
-    month = oct,
-   volume = 325,
-    pages = {636-642},
-      doi = {10.1002/asna.200410300},
-   adsurl = {http://adsabs.harvard.edu/abs/2004AN....325..636H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2004SPIE.5489..667H,
-   author = {{Hodapp}, K.~W. and {Siegmund}, W.~A. and {Kaiser}, N. and {Chambers}, K.~C. and 
-	{Laux}, U. and {Morgan}, J. and {Mannery}, E.},
-    title = "{Optical design of the Pan-STARRS telescopes}",
-booktitle = {Ground-based Telescopes},
-     year = 2004,
-   series = {\procspie},
-   volume = 5489,
-   editor = {{Oschmann}, Jr., J.~M.},
-    month = oct,
-    pages = {667-678},
-      doi = {10.1117/12.550179},
-   adsurl = {http://adsabs.harvard.edu/abs/2004SPIE.5489..667H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2008SPIE.7012E..1KM,
-   author = {{Morgan}, J.~S. and {Kaiser}, N.},
-    title = "{Alignment of the Pan-STARRS PS1 prototype telescope optics}",
-booktitle = {Ground-based and Airborne Telescopes II},
-     year = 2008,
-   series = {\procspie},
-   volume = 7012,
-    month = jul,
-      eid = {70121K},
-    pages = {70121K},
-      doi = {10.1117/12.788426},
-   adsurl = {http://adsabs.harvard.edu/abs/2008SPIE.7012E..1KM},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ApJS..185..124S,
-   author = {{Stalder}, B. and {Chambers}, K.~C. and {Vacca}, W.~D.},
-    title = "{58 Radio Sources Near Bright Natural Guide Stars}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {0909.1566},
- keywords = {galaxies: evolution, galaxies: formation, galaxies: fundamental parameters, galaxies: high-redshift},
-     year = 2009,
-    month = nov,
-   volume = 185,
-    pages = {124-155},
-      doi = {10.1088/0067-0049/185/1/124},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJS..185..124S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2012SPIE.8453E..0KO,
-   author = {{Onaka}, P. and {Rae}, C. and {Isani}, S. and {Tonry}, J.~L. and 
-	{Lee}, A. and {Uyeshiro}, R. and {Robertson}, L. and {Ching}, G.
-	},
-    title = "{GPC1 and GPC2: the Pan-STARRS 1.4 gigapixel mosaic focal plane CCD cameras with an on-sky on-CCD tip-tilt image compensation}",
-booktitle = {High Energy, Optical, and Infrared Detectors for Astronomy V},
-     year = 2012,
-   series = {\procspie},
-   volume = 8453,
-    month = jul,
-      eid = {84530K},
-    pages = {84530K},
-      doi = {10.1117/12.925830},
-   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8453E..0KO},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999AJ....118.1406L,
-   author = {{Lupton}, R.~H. and {Gunn}, J.~E. and {Szalay}, A.~S.},
-    title = "{A Modified Magnitude System that Produces Well-Behaved Magnitudes, Colors, and Errors Even for Low Signal-to-Noise Ratio Measurements}",
-  journal = {\aj},
-   eprint = {astro-ph/9903081},
- keywords = {CATALOGS, METHODS: STATISTICAL, TECHNIQUES: PHOTOMETRIC},
-     year = 1999,
-    month = sep,
-   volume = 118,
-    pages = {1406-1410},
-      doi = {10.1086/301004},
-   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....118.1406L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2016arXiv160203842A,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{The Rate of Binary Black Hole Mergers Inferred from Advanced LIGO Observations Surrounding GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.03842},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{amos2006,
-   author = {{Chambers}, K.},
-    title = "{PS1 and the PS1 Science Mission}",
-booktitle = {The Advanced Maui Optical and Space Surveillance Technologies Conference},
-     year = 2006,
-    pages = {E39},
-   adsurl = {http://adsabs.harvard.edu/abs/2006amos.confE..39C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2009AAS...21330107C,
-   author = {{Chambers}, K.~C.},
-    title = "{Pan-STARRS Telescope \#1 Status and Science Mission}",
-booktitle = {American Astronomical Society Meeting Abstracts \#213},
-     year = 2009,
-   series = {Bulletin of the American Astronomical Society},
-   volume = 41,
-    month = jan,
-      eid = {301.07},
-    pages = {270},
-   adsurl = {http://adsabs.harvard.edu/abs/2009AAS...21330107C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@INPROCEEDINGS{2007AAS...21114206C,
-   author = {{Chambers}, K.~C.},
-    title = "{The PS1 System and Science Mission}",
-booktitle = {American Astronomical Society Meeting Abstracts},
-     year = 2007,
-   series = {Bulletin of the American Astronomical Society},
-   volume = 39,
-    month = dec,
-      eid = {142.06},
-    pages = {995},
-   adsurl = {http://adsabs.harvard.edu/abs/2007AAS...21114206C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-
-@INPROCEEDINGS{2002SPIE.4836..154K,
-   author = {{Kaiser}, N. and {Aussel}, H. and {Burke}, B.~E. and {Boesgaard}, H. and 
-	{Chambers}, K. and {Chun}, M.~R. and {Heasley}, J.~N. and {Hodapp}, K.-W. and 
-	{Hunt}, B. and {Jedicke}, R. and {Jewitt}, D. and {Kudritzki}, R. and 
-	{Luppino}, G.~A. and {Maberry}, M. and {Magnier}, E. and {Monet}, D.~G. and 
-	{Onaka}, P.~M. and {Pickles}, A.~J. and {Rhoads}, P.~H.~H. and 
-	{Simon}, T. and {Szalay}, A. and {Szapudi}, I. and {Tholen}, D.~J. and 
-	{Tonry}, J.~L. and {Waterson}, M. and {Wick}, J.},
-    title = "{Pan-STARRS: A Large Synoptic Survey Telescope Array}",
-booktitle = {Survey and Other Telescope Technologies and Discoveries},
-     year = 2002,
-   series = {\procspie},
-   volume = 4836,
-   editor = {{Tyson}, J.~A. and {Wolff}, S.},
-    month = dec,
-    pages = {154-164},
-      doi = {10.1117/12.457365},
-   adsurl = {http://adsabs.harvard.edu/abs/2002SPIE.4836..154K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-
-@INPROCEEDINGS{kaiser2010,
-   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
-	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
-	{Onaka}, P. and {Tonry}, J.},
-    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
-booktitle = {Ground-based and Airborne Telescopes III},
-     year = 2010,
-   series = {\procspie},
-   volume = 7733,
-    month = jul,
-      eid = {77330E},
-    pages = {77330E},
-      doi = {10.1117/12.859188},
-   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..0EK},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@INPROCEEDINGS{{2010SPIE.7733E..0EK},
-   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
-	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
-	{Onaka}, P. and {Tonry}, J.},
-    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
-booktitle = {Ground-based and Airborne Telescopes III},
-     year = 2010,
-   series = {\procspie},
-   volume = 7733,
-    month = jul,
-      eid = {77330E},
-    pages = {77330E},
-      doi = {10.1117/12.859188},
-   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..0EK},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1980ApJS...43..305K,
-   author = {{Kron}, R.~G.},
-    title = "{Photometry of a complete sample of faint galaxies}",
-  journal = {\apjs},
- keywords = {Astronomical Photometry, Galactic Radiation, Galaxies, Star Distribution, Calibrating, Colorimetry, Distribution Functions, Galactic Evolution, Luminous Intensity, Tables (Data)},
-     year = 1980,
-    month = jun,
-   volume = 43,
-    pages = {305-325},
-      doi = {10.1086/190669},
-   adsurl = {http://adsabs.harvard.edu/abs/1980ApJS...43..305K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2002AJ....123..485S,
-   author = {{Stoughton}, C. and {Lupton}, R.~H. and {Bernardi}, M. and {Blanton}, M.~R. and 
-	{Burles}, S. and {Castander}, F.~J. and {Connolly}, A.~J. and 
-	{Eisenstein}, D.~J. and {Frieman}, J.~A. and {Hennessy}, G.~S. and 
-	{Hindsley}, R.~B. and {Ivezi{\'c}}, {\v Z}. and {Kent}, S. and 
-	{Kunszt}, P.~Z. and {Lee}, B.~C. and {Meiksin}, A. and {Munn}, J.~A. and 
-	{Newberg}, H.~J. and {Nichol}, R.~C. and {Nicinski}, T. and 
-	{Pier}, J.~R. and {Richards}, G.~T. and {Richmond}, M.~W. and 
-	{Schlegel}, D.~J. and {Smith}, J.~A. and {Strauss}, M.~A. and 
-	{SubbaRao}, M. and {Szalay}, A.~S. and {Thakar}, A.~R. and {Tucker}, D.~L. and 
-	{Vanden Berk}, D.~E. and {Yanny}, B. and {Adelman}, J.~K. and 
-	{Anderson}, Jr., J.~E. and {Anderson}, S.~F. and {Annis}, J. and 
-	{Bahcall}, N.~A. and {Bakken}, J.~A. and {Bartelmann}, M. and 
-	{Bastian}, S. and {Bauer}, A. and {Berman}, E. and {B{\"o}hringer}, H. and 
-	{Boroski}, W.~N. and {Bracker}, S. and {Briegel}, C. and {Briggs}, J.~W. and 
-	{Brinkmann}, J. and {Brunner}, R. and {Carey}, L. and {Carr}, M.~A. and 
-	{Chen}, B. and {Christian}, D. and {Colestock}, P.~L. and {Crocker}, J.~H. and 
-	{Csabai}, I. and {Czarapata}, P.~C. and {Dalcanton}, J. and 
-	{Davidsen}, A.~F. and {Davis}, J.~E. and {Dehnen}, W. and {Dodelson}, S. and 
-	{Doi}, M. and {Dombeck}, T. and {Donahue}, M. and {Ellman}, N. and 
-	{Elms}, B.~R. and {Evans}, M.~L. and {Eyer}, L. and {Fan}, X. and 
-	{Federwitz}, G.~R. and {Friedman}, S. and {Fukugita}, M. and 
-	{Gal}, R. and {Gillespie}, B. and {Glazebrook}, K. and {Gray}, J. and 
-	{Grebel}, E.~K. and {Greenawalt}, B. and {Greene}, G. and {Gunn}, J.~E. and 
-	{de Haas}, E. and {Haiman}, Z. and {Haldeman}, M. and {Hall}, P.~B. and 
-	{Hamabe}, M. and {Hansen}, B. and {Harris}, F.~H. and {Harris}, H. and 
-	{Harvanek}, M. and {Hawley}, S.~L. and {Hayes}, J.~J.~E. and 
-	{Heckman}, T.~M. and {Helmi}, A. and {Henden}, A. and {Hogan}, C.~J. and 
-	{Hogg}, D.~W. and {Holmgren}, D.~J. and {Holtzman}, J. and {Huang}, C.-H. and 
-	{Hull}, C. and {Ichikawa}, S.-I. and {Ichikawa}, T. and {Johnston}, D.~E. and 
-	{Kauffmann}, G. and {Kim}, R.~S.~J. and {Kimball}, T. and {Kinney}, E. and 
-	{Klaene}, M. and {Kleinman}, S.~J. and {Klypin}, A. and {Knapp}, G.~R. and 
-	{Korienek}, J. and {Krolik}, J. and {Kron}, R.~G. and {Krzesi{\'n}ski}, J. and 
-	{Lamb}, D.~Q. and {Leger}, R.~F. and {Limmongkol}, S. and {Lindenmeyer}, C. and 
-	{Long}, D.~C. and {Loomis}, C. and {Loveday}, J. and {MacKinnon}, B. and 
-	{Mannery}, E.~J. and {Mantsch}, P.~M. and {Margon}, B. and {McGehee}, P. and 
-	{McKay}, T.~A. and {McLean}, B. and {Menou}, K. and {Merelli}, A. and 
-	{Mo}, H.~J. and {Monet}, D.~G. and {Nakamura}, O. and {Narayanan}, V.~K. and 
-	{Nash}, T. and {Neilsen}, Jr., E.~H. and {Newman}, P.~R. and 
-	{Nitta}, A. and {Odenkirchen}, M. and {Okada}, N. and {Okamura}, S. and 
-	{Ostriker}, J.~P. and {Owen}, R. and {Pauls}, A.~G. and {Peoples}, J. and 
-	{Peterson}, R.~S. and {Petravick}, D. and {Pope}, A. and {Pordes}, R. and 
-	{Postman}, M. and {Prosapio}, A. and {Quinn}, T.~R. and {Rechenmacher}, R. and 
-	{Rivetta}, C.~H. and {Rix}, H.-W. and {Rockosi}, C.~M. and {Rosner}, R. and 
-	{Ruthmansdorfer}, K. and {Sandford}, D. and {Schneider}, D.~P. and 
-	{Scranton}, R. and {Sekiguchi}, M. and {Sergey}, G. and {Sheth}, R. and 
-	{Shimasaku}, K. and {Smee}, S. and {Snedden}, S.~A. and {Stebbins}, A. and 
-	{Stubbs}, C. and {Szapudi}, I. and {Szkody}, P. and {Szokoly}, G.~P. and 
-	{Tabachnik}, S. and {Tsvetanov}, Z. and {Uomoto}, A. and {Vogeley}, M.~S. and 
-	{Voges}, W. and {Waddell}, P. and {Walterbos}, R. and {Wang}, S.-i. and 
-	{Watanabe}, M. and {Weinberg}, D.~H. and {White}, R.~L. and 
-	{White}, S.~D.~M. and {Wilhite}, B. and {Wolfe}, D. and {Yasuda}, N. and 
-	{York}, D.~G. and {Zehavi}, I. and {Zheng}, W.},
-    title = "{Sloan Digital Sky Survey: Early Data Release}",
-  journal = {\aj},
- keywords = {Atlases, Catalogs, Surveys},
-     year = 2002,
-    month = jan,
-   volume = 123,
-    pages = {485-548},
-      doi = {10.1086/324741},
-   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....123..485S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1995ApJ...449..460K,
-   author = {{Kaiser}, N. and {Squires}, G. and {Broadhurst}, T.},
-    title = "{A Method for Weak Lensing Observations}",
-  journal = {\apj},
-   eprint = {astro-ph/9411005},
- keywords = {COSMOLOGY: OBSERVATIONS, COSMOLOGY: DARK MATTER, GALAXIES: FORMATION, COSMOLOGY: GRAVITATIONAL LENSING, COSMOLOGY: LARGE-SCALE STRUCTURE OF UNIVERSE},
-     year = 1995,
-    month = aug,
-   volume = 449,
-    pages = {460},
-      doi = {10.1086/176071},
-   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...449..460K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2017Icar..284..114S,
-   author = {{Schunov{\'a}-Lilly}, E. and {Jedicke}, R. and {Vere{\v s}}, P. and
-        {Denneau}, L. and {Wainscoat}, R.~J.},
-    title = "{The size-frequency distribution of H $\gt$ 13 NEOs and ARM target candidates detected by Pan-STARRS1}",
-  journal = {\icarus},
-archivePrefix = "arXiv",
-   eprint = {1611.03095},
- primaryClass = "astro-ph.EP",
- keywords = {Near-Earth objects, Asteroids, Asteroids, Dynamics},
-     year = 2017,
-    month = mar,
-   volume = 284,
-    pages = {114-125},
-      doi = {10.1016/j.icarus.2016.11.010},
-   adsurl = {http://adsabs.harvard.edu/abs/2017Icar..284..114S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015Icar..261...34V,
-   author = {{Vere{\v s}}, P. and {Jedicke}, R. and {Fitzsimmons}, A. and
-        {Denneau}, L. and {Granvik}, M. and {Bolin}, B. and {Chastel}, S. and
-        {Wainscoat}, R.~J. and {Burgett}, W.~S. and {Chambers}, K.~C. and
-        {Flewelling}, H. and {Kaiser}, N. and {Magnier}, E.~A. and {Morgan}, J.~S. and
-        {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
-    title = "{Absolute magnitudes and slope parameters for 250,000 asteroids observed by Pan-STARRS PS1 - Preliminary results}",
-  journal = {\icarus},
-archivePrefix = "arXiv",
-   eprint = {1506.00762},
- primaryClass = "astro-ph.EP",
- keywords = {Near-Earth objects, Asteroids, Data reduction techniques},
-     year = 2015,
-    month = nov,
-   volume = 261,
-    pages = {34-47},
-      doi = {10.1016/j.icarus.2015.08.007},
-   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..261...34V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015Icar..248..289H,
-   author = {{Hsieh}, H.~H. and {Denneau}, L. and {Wainscoat}, R.~J. and
-        {Sch{\"o}rghofer}, N. and {Bolin}, B. and {Fitzsimmons}, A. and
-        {Jedicke}, R. and {Kleyna}, J. and {Micheli}, M. and {Vere{\v s}}, P. and
-        {Kaiser}, N. and {Chambers}, K.~C. and {Burgett}, W.~S. and
-        {Flewelling}, H. and {Hodapp}, K.~W. and {Magnier}, E.~A. and
-        {Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.
-        },
-    title = "{The main-belt comets: The Pan-STARRS1 perspective}",
-  journal = {\icarus},
-archivePrefix = "arXiv",
-   eprint = {1410.5084},
- primaryClass = "astro-ph.EP",
- keywords = {Asteroids, Comets, Astrobiology, Asteroids, composition, Comets, origin},
-     year = 2015,
-    month = mar,
-   volume = 248,
-    pages = {289-312},
-      doi = {10.1016/j.icarus.2014.10.031},
-   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..248..289H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015Icar..245....1D,
-   author = {{Denneau}, L. and {Jedicke}, R. and {Fitzsimmons}, A. and {Hsieh}, H. and
-        {Kleyna}, J. and {Granvik}, M. and {Micheli}, M. and {Spahr}, T. and
-        {Vere{\v s}}, P. and {Wainscoat}, R. and {Burgett}, W.~S. and
-        {Chambers}, K.~C. and {Draper}, P.~W. and {Flewelling}, H. and
-        {Huber}, M.~E. and {Kaiser}, N. and {Morgan}, J.~S. and {Tonry}, J.~L.
-        },
-    title = "{Observational constraints on the catastrophic disruption rate of small main belt asteroids}",
-  journal = {\icarus},
-archivePrefix = "arXiv",
-   eprint = {1408.6807},
- primaryClass = "astro-ph.EP",
- keywords = {Asteroids},
-     year = 2015,
-    month = jan,
-   volume = 245,
-    pages = {1-15},
-      doi = {10.1016/j.icarus.2014.08.044},
-   adsurl = {http://adsabs.harvard.edu/abs/2015Icar..245....1D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...776L..20M,
-   author = {{Meech}, K.~J. and {Yang}, B. and {Kleyna}, J. and {Ansdell}, M. and
-        {Chiang}, H.-F. and {Hainaut}, O. and {Vincent}, J.-B. and {Boehnhardt}, H. and
-        {Fitzsimmons}, A. and {Rector}, T. and {Riesen}, T. and {Keane}, J.~V. and
-        {Reipurth}, B. and {Hsieh}, H.~H. and {Michaud}, P. and {Milani}, G. and
-        {Bryssinck}, E. and {Ligustri}, R. and {Trabatti}, R. and {Tozzi}, G.-P. and
-        {Mottola}, S. and {Kuehrt}, E. and {Bhatt}, B. and {Sahu}, D. and
-        {Lisse}, C. and {Denneau}, L. and {Jedicke}, R. and {Magnier}, E. and
-        {Wainscoat}, R.},
-    title = "{Outgassing Behavior of C/2012 S1 (ISON) from 2011 September to 2013 June}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1309.2688},
- primaryClass = "astro-ph.EP",
- keywords = {comets: general, comets: individual: ISON},
-     year = 2013,
-    month = oct,
-   volume = 776,
-      eid = {L20},
-    pages = {L20},
-      doi = {10.1088/2041-8205/776/2/L20},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...776L..20M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016ApJS..227...11B,
-   author = {{Ba{\~n}ados}, E. and {Venemans}, B.~P. and {Decarli}, R. and 
-	{Farina}, E.~P. and {Mazzucchelli}, C. and {Walter}, F. and 
-	{Fan}, X. and {Stern}, D. and {Schlafly}, E. and {Chambers}, K.~C. and 
-	{Rix}, H.-W. and {Jiang}, L. and {McGreer}, I. and {Simcoe}, R. and 
-	{Wang}, F. and {Yang}, J. and {Morganson}, E. and {De Rosa}, G. and 
-	{Greiner}, J. and {Balokovi{\'c}}, M. and {Burgett}, W.~S. and 
-	{Cooper}, T. and {Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Jun}, H.~D. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Miller}, D. and {Schindler}, J.-T. and {Tonry}, J.~L. and 
-	{Wainscoat}, R.~J. and {Waters}, C. and {Yang}, Q.},
-    title = "{The Pan-STARRS1 Distant z $\gt$ 5.6 Quasar Survey: More than 100 Quasars within the First Gyr of the Universe}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1608.03279},
- keywords = {cosmology: observations, quasars: emission lines, quasars: general},
-     year = 2016,
-    month = nov,
-   volume = 227,
-      eid = {11},
-    pages = {11},
-      doi = {10.3847/0067-0049/227/1/11},
-   adsurl = {http://adsabs.harvard.edu/abs/2016ApJS..227...11B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...801L..11V,
-   author = {{Venemans}, B.~P. and {Ba{\~n}ados}, E. and {Decarli}, R. and 
-	{Farina}, E.~P. and {Walter}, F. and {Chambers}, K.~C. and {Fan}, X. and 
-	{Rix}, H.-W. and {Schlafly}, E. and {McMahon}, R.~G. and {Simcoe}, R. and 
-	{Stern}, D. and {Burgett}, W.~S. and {Draper}, P.~W. and {Flewelling}, H. and 
-	{Hodapp}, K.~W. and {Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and 
-	{Morgan}, J.~S. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C. and 
-	{AlSayyad}, Y. and {Banerji}, M. and {Chen}, S.~S. and {Gonz{\'a}lez-Solares}, E.~A. and 
-	{Greiner}, J. and {Mazzucchelli}, C. and {McGreer}, I. and {Miller}, D.~R. and 
-	{Reed}, S. and {Sullivan}, P.~W.},
-    title = "{The Identification of Z-dropouts in Pan-STARRS1: Three Quasars at 6.5$\lt$ z$\lt$ 6.7}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1502.01927},
- keywords = {cosmology: observations, galaxies: active, galaxies: individual: PSO J036.5078+03.0498, PSO J167.6415-13.4960, PSO J338.2298+29.5089, quasars: general},
-     year = 2015,
-    month = mar,
-   volume = 801,
-      eid = {L11},
-    pages = {L11},
-      doi = {10.1088/2041-8205/801/1/L11},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...801L..11V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014AJ....148...14B,
-   author = {{Ba{\~n}ados}, E. and {Venemans}, B.~P. and {Morganson}, E. and 
-	{Decarli}, R. and {Walter}, F. and {Chambers}, K.~C. and {Rix}, H.-W. and 
-	{Farina}, E.~P. and {Fan}, X. and {Jiang}, L. and {McGreer}, I. and 
-	{De Rosa}, G. and {Simcoe}, R. and {Wei{\ss}}, A. and {Price}, P.~A. and 
-	{Morgan}, J.~S. and {Burgett}, W.~S. and {Greiner}, J. and {Kaiser}, N. and 
-	{Kudritzki}, R.-P. and {Magnier}, E.~A. and {Metcalfe}, N. and 
-	{Stubbs}, C.~W. and {Sweeney}, W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C.},
-    title = "{Discovery of Eight z \~{} 6 Quasars from Pan-STARRS1}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1405.3986},
- keywords = {cosmology: observations, quasars: emission lines, quasars: general, surveys},
-     year = 2014,
-    month = jul,
-   volume = 148,
-      eid = {14},
-    pages = {14},
-      doi = {10.1088/0004-6256/148/1/14},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....148...14B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012AJ....143..142M,
-   author = {{Morganson}, E. and {De Rosa}, G. and {Decarli}, R. and {Walter}, F. and 
-	{Chambers}, K. and {McGreer}, I. and {Fan}, X. and {Burgett}, W. and 
-	{Flewelling}, H. and {Greiner}, J. and {Hodapp}, K. and {Kaiser}, N. and 
-	{Magnier}, E. and {Price}, P. and {Rix}, H.-W. and {Sweeney}, B. and 
-	{Waters}, C.},
-    title = "{The First High-redshift Quasar from Pan-STARRS}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1109.6241},
- keywords = {early Universe, quasars: individual: PSO J215.1512-16.0417, surveys},
-     year = 2012,
-    month = jun,
-   volume = 143,
-      eid = {142},
-    pages = {142},
-      doi = {10.1088/0004-6256/143/6/142},
-   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143..142M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{Farrow14,
-   author = {{Farrow}, D.~J. and {Cole}, S. and {Metcalfe}, N. and {Draper}, P.~W. and
-{Norberg}, P. and {Foucaud}, S. and {Burgett}, W.~S. and {Chambers}, K.~C. and
-{Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and
-{Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
-    title = "{Pan-STARRS1: Galaxy clustering in the Small Area Survey 2}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.6366},
- primaryClass = "astro-ph.CO",
- keywords = {methods: observational, surveys, large-scale structure of Universe},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {748-770},
-      doi = {10.1093/mnras/stt1933},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..748F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{Jian14,
-   author = {{Jian}, H.-Y. and {Lin}, L. and {Chiueh}, T. and {Lin}, K.-Y. and
-{Liu}, H.~B. and {Merson}, A. and {Baugh}, C. and {Huang}, J.-S. and
-{Chen}, C.-W. and {Foucaud}, S. and {Murphy}, D.~N.~A. and {Cole}, S. and
-{Burgett}, W. and {Kaiser}, N.},
-    title = "{Probability Friends-of-Friends (PFOF) Group Finder: Performance Study and Observational Data Applications on Photometric Surveys}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1305.1891},
- keywords = {galaxies: clusters: general, galaxies: groups: general, large-scale structure of universe, methods: data analysis},
-     year = 2014,
-    month = jun,
-   volume = 788,
-      eid = {109},
-    pages = {109},
-      doi = {10.1088/0004-637X/788/2/109},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788..109J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{Lin14,
-   author = {{Lin}, L. and {Jian}, H.-Y. and {Foucaud}, S. and {Norberg}, P. and
-{Bower}, R.~G. and {Cole}, S. and {Arnalte-Mur}, P. and {Chen}, C.-W. and
-{Coupon}, J. and {Hsieh}, B.-C. and {Heinis}, S. and {Phleps}, S. and
-{Chen}, W.-P. and {Lee}, C.-H. and {Burgett}, W. and {Chambers}, K.~C. and
-{Denneau}, L. and {Draper}, P. and {Flewelling}, H. and {Hodapp}, K.~W. and
-{Huber}, M.~E. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and
-{Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and
-{Waters}, C.},
-    title = "{The Pan-STARRS1 Medium-Deep Survey: The Role of Galaxy Group Environment in the Star Formation Rate versus Stellar Mass Relation and Quiescent Fraction out to z \~{} 0.8}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1312.4736},
- keywords = {galaxies: evolution, galaxies: groups: general, galaxies: high-redshift, large-scale structure of universe},
-     year = 2014,
-    month = feb,
-   volume = 782,
-      eid = {33},
-    pages = {33},
-      doi = {10.1088/0004-637X/782/1/33},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...782...33L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{Liu15,
-   author = {{Liu}, J. and {Hennig}, C. and {Desai}, S. and {Hoyle}, B. and
-{Koppenhoefer}, J. and {Mohr}, J.~J. and {Paech}, K. and {Burgett}, W.~S. and
-{Chambers}, K.~C. and {Cole}, S. and {Draper}, P.~W. and {Kaiser}, N. and
-{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P.~A. and {Stubbs}, C.~W. and
-{Tonry}, J.~L. and {Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Optical confirmation and redshift estimation of the Planck cluster candidates overlapping the Pan-STARRS Survey}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1407.6001},
- keywords = {catalogues, galaxies: clusters: general, large-scale structure of Universe},
-     year = 2015,
-    month = jun,
-   volume = 449,
-    pages = {3370-3380},
-      doi = {10.1093/mnras/stv458},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.3370L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{Szapudi15,
-   author = {{Szapudi}, I. and {Kov{\'a}cs}, A. and {Granett}, B.~R. and
-{Frei}, Z. and {Silk}, J. and {Burgett}, W. and {Cole}, S. and
-{Draper}, P.~W. and {Farrow}, D.~J. and {Kaiser}, N. and {Magnier}, E.~A. and
-{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P. and {Tonry}, J. and
-{Wainscoat}, R.},
-    title = "{Detection of a supervoid aligned with the cold spot of the cosmic microwave background}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1405.1566},
- keywords = {surveys, cosmic background radiation, cosmology: observations, large-scale structure of Universe},
-     year = 2015,
-    month = jun,
-   volume = 450,
-    pages = {288-294},
-      doi = {10.1093/mnras/stv488},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.450..288S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{theprizepaper,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{Observation of Gravitational Waves from a Binary Black Hole Merger}",
-  journal = {Physical Review Letters},
-archivePrefix = "arXiv",
-   eprint = {1602.03837},
- primaryClass = "gr-qc",
-     year = 2016,
-    month = jan,
-   volume = 116,
-   number = 6,
-      eid = {061102},
-    pages = {061102},
-      doi = {10.1103/PhysRevLett.116.061102},
-   adsurl = {http://adsabs.harvard.edu/abs/2016PhRvL.116f1102A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{gw151226,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{GW151226}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {8888.99999},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
-     year = 2016,
-    month = jun,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016ApJ...818L..22A,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{Astrophysical Implications of the Binary Black Hole Merger GW150914}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1602.03846},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, stars: black holes, stars: massive},
-     year = 2016,
-    month = feb,
-   volume = 818,
-      eid = {L22},
-    pages = {L22},
-      doi = {10.3847/2041-8205/818/2/L22},
-   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...818L..22A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160203842A,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{The Rate of Binary Black Hole Mergers Inferred from Advanced LIGO Observations Surrounding GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.03842},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203842A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016arXiv160208492A,
-   author = {{Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and {Abernathy}, M.~R. and 
-	{Acernese}, F. and {Ackley}, K. and {Adams}, C. and {Adams}, T. and 
-	{Addesso}, P. and {Adhikari}, R.~X. and et al.},
-    title = "{Localization and broadband follow-up of the gravitational-wave transient GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.08492},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160208492A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160203840T,
-   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaboration}
-	},
-    title = "{Properties of the binary black hole merger GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.03840},
- primaryClass = "gr-qc",
- keywords = {General Relativity and Quantum Cosmology, Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203840T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2016arXiv160400439T,
-   author = {{The LIGO Scientific Collaboration} and {Martynov}, D.~V. and 
-	{Hall}, E.~D. and {Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and 
-	{Abernathy}, M.~R. and {Ackley}, K. and {Adams}, C. and {Addesso}, P. and et al.},
-    title = "{The Sensitivity of the Advanced LIGO Detectors at the Beginning of Gravitational Wave Astronomy}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1604.00439},
- primaryClass = "astro-ph.IM",
- keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Physics - Instrumentation and Detectors},
-     year = 2016,
-    month = apr,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160400439T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160203920C,
-   author = {{Connaughton}, V. and {Burns}, E. and {Goldstein}, A. and {Briggs}, M.~S. and 
-	{Zhang}, B.-B. and {Hui}, C.~M. and {Jenke}, P. and {Racusin}, J. and 
-	{Wilson-Hodge}, C.~A. and {Bhat}, P.~N. and {Bissaldi}, E. and 
-	{Cleveland}, W. and {Fitzpatrick}, G. and {Giles}, M.~M. and 
-	{Gibby}, M.~H. and {Greiner}, J. and {von Kienlin}, A. and {Kippen}, R.~M. and 
-	{McBreen}, S. and {Mailyan}, B. and {Meegan}, C.~A. and {Paciesas}, W.~S. and 
-	{Preece}, R.~D. and {Roberts}, O. and {Sparke}, L. and {Stanbro}, M. and 
-	{Toelge}, K. and {Veres}, P. and {Yu}, H.-F. and {authors}, o.
-	},
-    title = "{Fermi GBM Observations of LIGO Gravitational Wave event GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.03920},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160203920C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014A&A...571A..16P,
-   author = {{Planck Collaboration} and {Ade}, P.~A.~R. and {Aghanim}, N. and 
-	{Armitage-Caplan}, C. and {Arnaud}, M. and {Ashdown}, M. and 
-	{Atrio-Barandela}, F. and {Aumont}, J. and {Baccigalupi}, C. and 
-	{Banday}, A.~J. and et al.},
-    title = "{Planck 2013 results. XVI. Cosmological parameters}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1303.5076},
- keywords = {cosmic background radiation, cosmological parameters, early Universe, inflation, primordial nucleosynthesis},
-     year = 2014,
-    month = nov,
-   volume = 571,
-      eid = {A16},
-    pages = {A16},
-      doi = {10.1051/0004-6361/201321591},
-   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...571A..16P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2010CQGra..27q3001A,
-   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abernathy}, M. and 
-	{Accadia}, T. and {Acernese}, F. and {Adams}, C. and {Adhikari}, R. and 
-	{Ajith}, P. and {Allen}, B. and et al.},
-    title = "{TOPICAL REVIEW:  Predictions for the rates of compact binary coalescences observable by ground-based gravitational-wave detectors}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1003.2480},
- primaryClass = "astro-ph.HE",
-     year = 2010,
-    month = sep,
-   volume = 27,
-   number = 17,
-      eid = {173001},
-    pages = {173001},
-      doi = {10.1088/0264-9381/27/17/173001},
-   adsurl = {http://adsabs.harvard.edu/abs/2010CQGra..27q3001A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...555..900P,
-   author = {{Patat}, F. and {Cappellaro}, E. and {Danziger}, J. and {Mazzali}, P.~A. and 
-	{Sollerman}, J. and {Augusteijn}, T. and {Brewer}, J. and {Doublier}, V. and 
-	{Gonzalez}, J.~F. and {Hainaut}, O. and {Lidman}, C. and {Leibundgut}, B. and 
-	{Nomoto}, K. and {Nakamura}, T. and {Spyromilio}, J. and {Rizzi}, L. and 
-	{Turatto}, M. and {Walsh}, J. and {Galama}, T.~J. and {van Paradijs}, J. and 
-	{Kouveliotou}, C. and {Vreeswijk}, P.~M. and {Frontera}, F. and 
-	{Masetti}, N. and {Palazzi}, E. and {Pian}, E.},
-    title = "{The Metamorphosis of SN 1998bw}",
-  journal = {\apj},
-   eprint = {astro-ph/0103111},
- keywords = {Gamma Rays: Bursts, Stars: Supernovae: General, supernovae: individual (SN 1998bw)},
-     year = 2001,
-    month = jul,
-   volume = 555,
-    pages = {900-917},
-      doi = {10.1086/321526},
-   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...555..900P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1998Natur.395..670G,
-   author = {{Galama}, T.~J. and {Vreeswijk}, P.~M. and {van Paradijs}, J. and 
-	{Kouveliotou}, C. and {Augusteijn}, T. and {B{\"o}hnhardt}, H. and 
-	{Brewer}, J.~P. and {Doublier}, V. and {Gonzalez}, J.-F. and 
-	{Leibundgut}, B. and {Lidman}, C. and {Hainaut}, O.~R. and {Patat}, F. and 
-	{Heise}, J. and {in't Zand}, J. and {Hurley}, K. and {Groot}, P.~J. and 
-	{Strom}, R.~G. and {Mazzali}, P.~A. and {Iwamoto}, K. and {Nomoto}, K. and 
-	{Umeda}, H. and {Nakamura}, T. and {Young}, T.~R. and {Suzuki}, T. and 
-	{Shigeyama}, T. and {Koshut}, T. and {Kippen}, M. and {Robinson}, C. and 
-	{de Wildt}, P. and {Wijers}, R.~A.~M.~J. and {Tanvir}, N. and 
-	{Greiner}, J. and {Pian}, E. and {Palazzi}, E. and {Frontera}, F. and 
-	{Masetti}, N. and {Nicastro}, L. and {Feroci}, M. and {Costa}, E. and 
-	{Piro}, L. and {Peterson}, B.~A. and {Tinney}, C. and {Boyle}, B. and 
-	{Cannon}, R. and {Stathakis}, R. and {Sadler}, E. and {Begam}, M.~C. and 
-	{Ianna}, P.},
-    title = "{An unusual supernova in the error box of the {$\gamma$}-ray burst of 25 April 1998}",
-  journal = {\nat},
-   eprint = {astro-ph/9806175},
-     year = 1998,
-    month = oct,
-   volume = 395,
-    pages = {670-672},
-      doi = {10.1038/27150},
-   adsurl = {http://adsabs.harvard.edu/abs/1998Natur.395..670G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016ApJ...819L..21L,
-   author = {{Loeb}, A.},
-    title = "{Electromagnetic Counterparts to Black Hole Mergers Detected by LIGO}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1602.04735},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves},
-     year = 2016,
-    month = mar,
-   volume = 819,
-      eid = {L21},
-    pages = {L21},
-      doi = {10.3847/2041-8205/819/2/L21},
-   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...819L..21L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160300511W,
-   author = {{Woosley}, S.~E.},
-    title = "{The Progenitor of GW 150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1603.00511},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2016,
-    month = mar,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160300511W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2016JCAP...03..031L,
-   author = {{Lombriser}, L. and {Taylor}, A.},
-    title = "{Breaking a dark degeneracy with gravitational waves}",
-  journal = {J. Cosmol. Astropart. Phys.},
-archivePrefix = "arXiv",
-   eprint = {1509.08458},
-     year = 2016,
-    month = mar,
-   volume = 3,
-      eid = {031},
-    pages = {031},
-      doi = {10.1088/1475-7516/2016/03/031},
-   adsurl = {http://adsabs.harvard.edu/abs/2016JCAP...03..031L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160204156S,
-   author = {{Smartt}, S.~J. and {Chambers}, K.~C. and {Smith}, K.~W. and 
-	{Huber}, M.~E. and {Young}, D.~R. and {Cappellaro}, E. and {Wright}, D.~E. and 
-	{Coughlin}, M. and {Schultz}, A.~S.~B. and {Denneau}, L. and 
-	{Flewelling}, H. and {Heinze}, A. and {Magnier}, E.~A. and {Primak}, N. and 
-	{Rest}, A. and {Sherstyuk}, A. and {Stalder}, B. and {Stubbs}, C.~W. and 
-	{Tonry}, J. and {Waters}, C. and {Willman}, M. and {Anderson}, J.~P. and 
-	{Baltay}, C. and {Botticella}, M.~T. and {Campbell}, H. and 
-	{Dennefeld}, M. and {Chen}, T.-W. and {Della Valle}, M. and 
-	{Elias-Rosa}, N. and {Fraser}, M. and {Inserra}, C. and {Kankare}, E. and 
-	{Kotak}, R. and {Kupfer}, T. and {Harmanen}, J. and {Galbany}, L. and 
-	{Gal-Yam}, A. and {Guillou}, L.~L. and {Lyman}, J.~D. and {Maguire}, K. and 
-	{Mitra}, A. and {Nicholl}, M. and {Olivares E}, F. and {Rabinowitz}, D. and 
-	{Razza}, A. and {Sollerman}, J. and {Smith}, M. and {Terreran}, G. and 
-	{Valenti}, S.},
-    title = "{Pan-STARRS and PESSTO search for the optical counterpart to the LIGO gravitational wave source GW150914}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.04156},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160204156S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-  
-@ARTICLE{GCN18330,
-   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaborations}
-	},    title = "{GCN18330}",
-  journal = {GRB Coordinates Network},
-     year = 2015,
-   volume = 18330,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18858,
-   author = {{The LIGO Scientific Collaboration} and {the Virgo Collaboration}
-	},
-    title = "{GCN18858}",
-  journal = {GRB Coordinates Network},
-     year = 2015,
-   volume = 18858,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18371,
-   author = {{Steele}, I.~S. and {Copperwheat}, C.M. and {Piascik}, A.S.},
-    title = "{GCN18371}",
-  journal = {GRB Coordinates Network},
-     year = 2015,
-   volume = 18371,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{GCN18811,
-   author = {{Chambers}, K.~C. and {Chen}, T.W. and {Smartt}, S.J. and et al..},
-    title = "{18811}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18811,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18762,
-   author = {{Cenko}, S.~B. and {Cao}, Y. and {Ferretti}, R and et al..},
-    title = "{18762}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18804,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18848,
-   author = {{Cenko}, S.~B. and {Kasliwal}, M. and {Singer}, L.P. and et al..},
-    title = "{18848}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18848,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{GCN18804,
-   author = {{Lipunov}, V. and {Gorbovskoy}, E. and {Tyurina}, N and et al..},
-    title = "{18804}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18804,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18806,
-   author = {{Frohmaier}, C. and {Dimitriadis}, G. and {Firth}, R. and et al..},
-    title = "{18806}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18806,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18807,
-   author = {{Copperwheat}, C.~M. and {Steele}, I.S. and  et al..},
-    title = "{18807}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18806,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN18791,
-   author = {{Copperwheat}, C.~M. and {Steele}, I.S. and  et al..},
-    title = "{18791}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18791,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{GCN18868,
-   author = {{D'Avanzo}, P. and {Melandri}, A. and  et al..},
-    title = "{18868}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18868,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN19145,
-   author = {{Palazzi}, P. and {Cappellaro}, E. and  et al..},
-    title = "{19145}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 19145,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{GCN19258,
-   author = {{Castro-Tirado}, P. and {Caballero-Garcia}, E. and  et al..},
-    title = "{19258}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 19258,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{GCN18873,
-   author = {{Corsi}, A. and {Palliyaguru}, N.},
-    title = "{18873}",
-  journal = {GRB Coordinates Network},
-     year = 2016,
-   volume = 18873,
-   adsurl = {http://adsabs.harvard.edu/abs/2015GCN..17421...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-
-}
-
-
-@ARTICLE{2015ATel.8239....1K,
-   author = {{Kilpatrick}, C. and {Andrews}, J. and {Smith}, N. and {Milne}, P.
-	},
-    title = "{Spectroscopic Classification of ASASSN-15rw as a Type Ia}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae, Transient},
-     year = 2015,
-    month = nov,
-   volume = 8239,
-   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.8239....1K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016ATel.8506....1P,
-   author = {{Pan}, Y.-C. and {Downing}, S. and {Foley}, R.~J. and {Jha}, S.~W. and 
-	{Rest}, A. and {Scolnic}, D.},
-    title = "{Spectroscopic Classifications of Optical Transients with Mayall/KOSMOS}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae, Transient},
-     year = 2016,
-    month = jan,
-   volume = 8506,
-   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8506....1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016ATel.8526....1S,
-   author = {{Seibert}, M. and {Shappee}, B.~J. and {Prieto}, J.~L. and {Dong}, S.
-	},
-    title = "{Spectroscopic Classification of ASASSN-15un as a Type II SN}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae},
-     year = 2016,
-    month = jan,
-   volume = 8526,
-   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8526....1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2016ATel.8680....1T,
-   author = {{Tonry}, J. and {Denneau}, L. and {Stalder}, B. and {Heinze}, A. and 
-	{Sherstyuk}, A. and {Rest}, A. and {Smith}, K.~W. and {Smartt}, S.~J.
-	},
-    title = "{Discovery and Classification of 3 Type Supernovae by ATLAS}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae, Transient},
-     year = 2016,
-    month = feb,
-   volume = 8680,
-   adsurl = {http://adsabs.harvard.edu/abs/2016ATel.8680....1T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160405205C,
-   author = {{Coughlin}, M.~W. and {Stubbs}, C.~W.},
-    title = "{Maximizing the Probability of Detecting an Electromagnetic Counterpart of Gravitational-wave Events}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1604.05205},
- primaryClass = "astro-ph.IM",
- keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
-     year = 2016,
-    month = apr,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160405205C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015NatCo...6E7323Y,
-   author = {{Yang}, B. and {Jin}, Z.-P. and {Li}, X. and {Covino}, S. and 
-	{Zheng}, X.-Z. and {Hotokezaka}, K. and {Fan}, Y.-Z. and {Piran}, T. and 
-	{Wei}, D.-M.},
-    title = "{A possible macronova in the late afterglow of the long-short burst GRB 060614}",
-  journal = {Nature Communications},
-archivePrefix = "arXiv",
-   eprint = {1503.07761},
- primaryClass = "astro-ph.HE",
-     year = 2015,
-    month = jun,
-   volume = 6,
-      eid = {7323},
-    pages = {7323},
-      doi = {10.1038/ncomms8323},
-   adsurl = {http://adsabs.harvard.edu/abs/2015NatCo...6E7323Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016PhRvD..93b4013S,
-   author = {{Singer}, L.~P. and {Price}, L.~R.},
-    title = "{Rapid Bayesian position reconstruction for gravitational-wave transients}",
-  journal = {\prd},
-archivePrefix = "arXiv",
-   eprint = {1508.03634},
- primaryClass = "gr-qc",
-     year = 2016,
-    month = jan,
-   volume = 93,
-   number = 2,
-      eid = {024013},
-    pages = {024013},
-      doi = {10.1103/PhysRevD.93.024013},
-   adsurl = {http://adsabs.harvard.edu/abs/2016PhRvD..93b4013S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...775..113T,
-   author = {{Tanaka}, M. and {Hotokezaka}, K.},
-    title = "{Radiative Transfer Simulations of Neutron Star Merger Ejecta}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1306.3742},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer, supernovae: general},
-     year = 2013,
-    month = oct,
-   volume = 775,
-      eid = {113},
-    pages = {113},
-      doi = {10.1088/0004-637X/775/2/113},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775..113T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ARep...51..308B,
-   author = {{Bogomazov}, A.~I. and {Lipunov}, V.~M. and {Tutukov}, A.~V.
-	},
-    title = "{Evolution of close binaries and gamma-ray bursts}",
-  journal = {Astronomy Reports},
-   eprint = {astro-ph/0607329},
- keywords = {97.80.Fk, 97.10.Cv, 98.70.Rz},
-     year = 2007,
-    month = apr,
-   volume = 51,
-    pages = {308-317},
-      doi = {10.1134/S1063772907040063},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ARep...51..308B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...780...31T,
-   author = {{Tanaka}, M. and {Hotokezaka}, K. and {Kyutoku}, K. and {Wanajo}, S. and 
-	{Kiuchi}, K. and {Sekiguchi}, Y. and {Shibata}, M.},
-    title = "{Radioactively Powered Emission from Black Hole-Neutron Star Mergers}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.2774},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer },
-     year = 2014,
-    month = jan,
-   volume = 780,
-      eid = {31},
-    pages = {31},
-      doi = {10.1088/0004-637X/780/1/31},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...31T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.443..671G,
-   author = {{Gorbikov}, E. and {Gal-Yam}, A. and {Ofek}, E.~O. and {Vreeswijk}, P.~M. and 
-	{Nugent}, P.~E. and {Chotard}, N. and {Kulkarni}, S.~R. and 
-	{Cao}, Y. and {De Cia}, A. and {Yaron}, O. and {Tal}, D. and 
-	{Arcavi}, I. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and {Sullivan}, M. and 
-	{Chen}, J.},
-    title = "{iPTF13beo: the double-peaked light curve of a Type Ibn supernova discovered shortly after explosion}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1312.0012},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: iPTF13beo, stars: winds, outflows, stars: Wolf-Rayet},
-     year = 2014,
-    month = sep,
-   volume = 443,
-    pages = {671-677},
-      doi = {10.1093/mnras/stu1184},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.443..671G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010Natur.463..513S,
-   author = {{Soderberg}, A.~M. and {Chakraborti}, S. and {Pignata}, G. and 
-	{Chevalier}, R.~A. and {Chandra}, P. and {Ray}, A. and {Wieringa}, M.~H. and 
-	{Copete}, A. and {Chaplin}, V. and {Connaughton}, V. and {Barthelmy}, S.~D. and 
-	{Bietenholz}, M.~F. and {Chugai}, N. and {Stritzinger}, M.~D. and 
-	{Hamuy}, M. and {Fransson}, C. and {Fox}, O. and {Levesque}, E.~M. and 
-	{Grindlay}, J.~E. and {Challis}, P. and {Foley}, R.~J. and {Kirshner}, R.~P. and 
-	{Milne}, P.~A. and {Torres}, M.~A.~P.},
-    title = "{A relativistic type Ibc supernova without a detected {$\gamma$}-ray burst}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0908.2817},
- primaryClass = "astro-ph.HE",
-     year = 2010,
-    month = jan,
-   volume = 463,
-    pages = {513-515},
-      doi = {10.1038/nature08714},
-   adsurl = {http://adsabs.harvard.edu/abs/2010Natur.463..513S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160401226I,
-   author = {{Inserra}, C. and {Smartt}, S.~J. and {Gall}, E.~E.~E. and {Leloudas}, G. and 
-	{Chen}, T.-W. and {Schulze}, S. and {Jerkstarnd}, A. and {Nicholl}, M. and 
-	{Anderson}, J.~P. and {Arcavi}, I. and {Benetti}, S. and {Cartier}, R.~A. and 
-	{Childress}, M. and {Della Valle}, M. and {Flewelling}, H. and 
-	{Fraser}, M. and {Gal-Yam}, A. and {Gutierrez}, C.~P. and {Hosseinzadeh}, G. and 
-	{Howell}, D.~A. and {Huber}, M. and {Kankare}, E. and {Magnier}, E.~A. and 
-	{Maguire}, K. and {McCully}, C. and {Prajs}, S. and {Primak}, N. and 
-	{Scalzo}, R. and {Schmidt}, B.~P. and {Smith}, K.~W. and {Tucker}, B.~E. and 
-	{Valenti}, S. and {Wilman}, M. and {Young}, D.~R. and {Yuan}, F.
-	},
-    title = "{On the nature of Hydrogen-rich Superluminous Supernovae}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1604.01226},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
-     year = 2016,
-    month = apr,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160401226I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015ApJ...811L..22J,
-   author = {{Jin}, Z.-P. and {Li}, X. and {Cano}, Z. and {Covino}, S. and 
-	{Fan}, Y.-Z. and {Wei}, D.-M.},
-    title = "{The Light Curve of the Macronova Associated with the Long-Short Burst GRB 060614}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1507.07206},
- primaryClass = "astro-ph.HE",
- keywords = {binaries: general, gamma-ray burst: individual: GRB 060614, radiation mechanisms: thermal, stars: neutron},
-     year = 2015,
-    month = oct,
-   volume = 811,
-      eid = {L22},
-    pages = {L22},
-      doi = {10.1088/2041-8205/811/2/L22},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...811L..22J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010MNRAS.403L..41C,
-   author = {{Crowther}, P.~A. and {Barnard}, R. and {Carpano}, S. and {Clark}, J.~S. and 
-	{Dhillon}, V.~S. and {Pollock}, A.~M.~T.},
-    title = "{NGC 300 X-1 is a Wolf-Rayet/black hole binary}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1001.4616},
- primaryClass = "astro-ph.SR",
- keywords = {stars: Wolf-Rayet, galaxies: individual: NGC 300, X-rays: binaries, X-rays: individual: NGC 300 X-1},
-     year = 2010,
-    month = mar,
-   volume = 403,
-    pages = {L41-L45},
-      doi = {10.1111/j.1745-3933.2010.00811.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.403L..41C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...669L..21P,
-   author = {{Prestwich}, A.~H. and {Kilgard}, R. and {Crowther}, P.~A. and 
-	{Carpano}, S. and {Pollock}, A.~M.~T. and {Zezas}, A. and {Saar}, S.~H. and 
-	{Roberts}, T.~P. and {Ward}, M.~J.},
-    title = "{The Orbital Period of the Wolf-Rayet Binary IC 10 X-1: Dynamic Evidence that the Compact Object Is a Black Hole}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0709.2892},
- keywords = {Galaxies: Starburst, Stars: Wolf-Rayet, X-Rays: Binaries, X-Rays: Galaxies},
-     year = 2007,
-    month = nov,
-   volume = 669,
-    pages = {L21-L24},
-      doi = {10.1086/523755},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...669L..21P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...657L.105F,
-   author = {{Foley}, R.~J. and {Smith}, N. and {Ganeshalingam}, M. and {Li}, W. and 
-	{Chornock}, R. and {Filippenko}, A.~V.},
-    title = "{SN 2006jc: A Wolf-Rayet Star Exploding in a Dense He-rich Circumstellar Medium}",
-  journal = {\apjl},
-   eprint = {astro-ph/0612711},
- keywords = {Stars: Winds, Outflows, Stars: Wolf-Rayet, Stars: Supernovae: General, supernovae: individual (SN 1999cq), supernovae: individual (SN2002ao), supernovae: individual (SN 2006jc)},
-     year = 2007,
-    month = mar,
-   volume = 657,
-    pages = {L105-L108},
-      doi = {10.1086/513145},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...657L.105F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015MNRAS.449.1921P,
-   author = {{Pastorello}, A. and {Benetti}, S. and {Brown}, P.~J. and {Tsvetkov}, D.~Y. and 
-	{Inserra}, C. and {Taubenberger}, S. and {Tomasella}, L. and 
-	{Fraser}, M. and {Rich}, D.~J. and {Botticella}, M.~T. and {Bufano}, F. and 
-	{Cappellaro}, E. and {Ergon}, M. and {Gorbovskoy}, E.~S. and 
-	{Harutyunyan}, A. and {Huang}, F. and {Kotak}, R. and {Lipunov}, V.~M. and 
-	{Magill}, L. and {Miluzio}, M. and {Morrell}, N. and {Ochner}, P. and 
-	{Smartt}, S.~J. and {Sollerman}, J. and {Spiro}, S. and {Stritzinger}, M.~D. and 
-	{Turatto}, M. and {Valenti}, S. and {Wang}, X. and {Wright}, D.~E. and 
-	{Yurkov}, V.~V. and {Zampieri}, L. and {Zhang}, T.},
-    title = "{Massive stars exploding in a He-rich circumstellar medium - IV. Transitional Type Ibn supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1502.04946},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2010al, supernovae: individual: SN 2011hw, supernovae: individual: SN 2006jc, supernovae: individual: SN 2005la, supernovae: individual: SN 2000er},
-     year = 2015,
-    month = may,
-   volume = 449,
-    pages = {1921-1940},
-      doi = {10.1093/mnras/stu2745},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.1921P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007Natur.447..829P,
-   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
-	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
-	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
-	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
-	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
-	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
-	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
-	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
-	},
-    title = "{A giant outburst two years before the core-collapse of a massive star}",
-  journal = {\nat},
-   eprint = {astro-ph/0703663},
-     year = 2007,
-    month = jun,
-   volume = 447,
-    pages = {829-832},
-      doi = {10.1038/nature05825},
-   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.389..113P,
-   author = {{Pastorello}, A. and {Mattila}, S. and {Zampieri}, L. and {Della Valle}, M. and 
-	{Smartt}, S.~J. and {Valenti}, S. and {Agnoletto}, I. and {Benetti}, S. and 
-	{Benn}, C.~R. and {Branch}, D. and {Cappellaro}, E. and {Dennefeld}, M. and 
-	{Eldridge}, J.~J. and {Gal-Yam}, A. and {Harutyunyan}, A. and 
-	{Hunter}, I. and {Kjeldsen}, H. and {Lipkin}, Y. and {Mazzali}, P.~A. and 
-	{Milne}, P. and {Navasardyan}, H. and {Ofek}, E.~O. and {Pian}, E. and 
-	{Shemmer}, O. and {Spiro}, S. and {Stathakis}, R.~A. and {Taubenberger}, S. and 
-	{Turatto}, M. and {Yamaoka}, H.},
-    title = "{Massive stars exploding in a He-rich circumstellar medium - I. Type Ibn (SN 2006jc-like) events}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0801.2277},
- keywords = {supernovae: general , supernovae: individual: SN 2006jc , supernovae: individual: SN 1999cq , supernovae: individual: SN 2000er , supernovae: individual: SN 2002ao , supernovae: individual: SN 1885A},
-     year = 2008,
-    month = sep,
-   volume = 389,
-    pages = {113-130},
-      doi = {10.1111/j.1365-2966.2008.13602.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..113P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2011PASP..123...58T,
-   author = {{Tonry}, J.~L.},
-    title = "{An Early Warning System for Asteroid Impact}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {1011.1028},
- primaryClass = "astro-ph.IM",
-     year = 2011,
-    month = jan,
-   volume = 123,
-    pages = {58-73},
-      doi = {10.1086/657997},
-   adsurl = {http://adsabs.harvard.edu/abs/2011PASP..123...58T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015A&A...584A..62C,
-   author = {{Cappellaro}, E. and {Botticella}, M.~T. and {Pignata}, G. and 
-	{Grado}, A. and {Greggio}, L. and {Limatola}, L. and {Vaccari}, M. and 
-	{Baruffolo}, A. and {Benetti}, S. and {Bufano}, F. and {Capaccioli}, M. and 
-	{Cascone}, E. and {Covone}, G. and {De Cicco}, D. and {Falocco}, S. and 
-	{Della Valle}, M. and {Jarvis}, M. and {Marchetti}, L. and {Napolitano}, N.~R. and 
-	{Paolillo}, M. and {Pastorello}, A. and {Radovich}, M. and {Schipani}, P. and 
-	{Spiro}, S. and {Tomasella}, L. and {Turatto}, M.},
-    title = "{Supernova rates from the SUDARE VST-OmegaCAM search. I. Rates per unit volume}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1509.04496},
- keywords = {supernovae: general, galaxies: star formation, Galaxy: stellar content, surveys},
-     year = 2015,
-    month = dec,
-   volume = 584,
-      eid = {A62},
-    pages = {A62},
-      doi = {10.1051/0004-6361/201526712},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...584A..62C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-
-
-@ARTICLE{2009MNRAS.397..677T,
-   author = {{Taubenberger}, S. and {Valenti}, S. and {Benetti}, S. and {Cappellaro}, E. and 
-	{Della Valle}, M. and {Elias-Rosa}, N. and {Hachinger}, S. and 
-	{Hillebrandt}, W. and {Maeda}, K. and {Mazzali}, P.~A. and {Pastorello}, A. and 
-	{Patat}, F. and {Sim}, S.~A. and {Turatto}, M.},
-    title = "{Nebular emission-line profiles of Type Ib/c supernovae - probing the ejecta asphericity}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0904.4632},
- keywords = {line: profiles , techniques: spectroscopic , supernovae: general},
-     year = 2009,
-    month = aug,
-   volume = 397,
-    pages = {677-694},
-      doi = {10.1111/j.1365-2966.2009.15003.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.397..677T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008Sci...319.1220M,
-   author = {{Maeda}, K. and {Kawabata}, K. and {Mazzali}, P.~A. and {Tanaka}, M. and 
-	{Valenti}, S. and {Nomoto}, K. and {Hattori}, T. and {Deng}, J. and 
-	{Pian}, E. and {Taubenberger}, S. and {Iye}, M. and {Matheson}, T. and 
-	{Filippenko}, A.~V. and {Aoki}, K. and {Kosugi}, G. and {Ohyama}, Y. and 
-	{Sasaki}, T. and {Takata}, T.},
-    title = "{Asphericity in Supernova Explosions from Late-Time Spectroscopy}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {0801.1100},
-     year = 2008,
-    month = feb,
-   volume = 319,
-    pages = {1220},
-      doi = {10.1126/science.1149437},
-   adsurl = {http://adsabs.harvard.edu/abs/2008Sci...319.1220M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2012ApJ...761...63P,
-   author = {{Piro}, A.~L. and {Thrane}, E.},
-    title = "{Gravitational Waves from Fallback Accretion onto Neutron Stars}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1207.3805},
- primaryClass = "astro-ph.HE",
- keywords = {black hole physics, gravitational waves, stars: neutron, supernovae: general },
-     year = 2012,
-    month = dec,
-   volume = 761,
-      eid = {63},
-    pages = {63},
-      doi = {10.1088/0004-637X/761/1/63},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...761...63P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015arXiv151201214F,
-   author = {{Finkbeiner}, D.~P. and {Schlafly}, E.~F. and {Schlegel}, D.~J. and 
-	{Padmanabhan}, N. and {Juric}, M. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Denneau}, L. and {Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and {Morgan}, J.~S. and 
-	{Price}, P.~A. and {Stubbs}, C.~W. and {Tonry}, J.~L.},
-    title = "{Hypercalibration: A Pan-STARRS1-based recalibration of the Sloan Digital Sky Survey}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1512.01214},
- primaryClass = "astro-ph.IM",
- keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
-     year = 2015,
-    month = dec,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151201214F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015ApJ...806...52S,
-   author = {{Singer}, L.~P. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and 
-	{Perley}, D.~A. and {Anderson}, G.~E. and {Anupama}, G.~C. and 
-	{Arcavi}, I. and {Bhalerao}, V. and {Bue}, B.~D. and {Cao}, Y. and 
-	{Connaughton}, V. and {Corsi}, A. and {Cucchiara}, A. and {Fender}, R.~P. and 
-	{Fox}, D.~B. and {Gehrels}, N. and {Goldstein}, A. and {Gorosabel}, J. and 
-	{Horesh}, A. and {Hurley}, K. and {Johansson}, J. and {Kann}, D.~A. and 
-	{Kouveliotou}, C. and {Huang}, K. and {Kulkarni}, S.~R. and 
-	{Masci}, F. and {Nugent}, P. and {Rau}, A. and {Rebbapragada}, U.~D. and 
-	{Staley}, T.~D. and {Svinkin}, D. and {Th{\"o}ne}, C.~C. and 
-	{de Ugarte Postigo}, A. and {Urata}, Y. and {Weinstein}, A.},
-    title = "{The Needle in the 100 deg$^{2}$ Haystack: Uncovering Afterglows of Fermi GRBs with the Palomar Transient Factory}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1501.00495},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: individual: GRB 130702A, GRB 140606B, gravitational waves, methods: observational, supernovae: general, surveys},
-     year = 2015,
-    month = jun,
-   volume = 806,
-      eid = {52},
-    pages = {52},
-      doi = {10.1088/0004-637X/806/1/52},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...806...52S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016arXiv160201736P,
-   author = {{Prentice}, S.~J. and {Mazzali}, P.~A. and {Pian}, E. and {Gal-Yam}, A. and 
-	{Kulkarni}, S.~R. and {Rubin}, A. and {Corsi}, A. and {Fremling}, C. and 
-	{Sollerman}, J. and {Yaron}, O. and {Arcavi}, I. and {Zheng}, W. and 
-	{Kasliwal}, M.~M. and {Filippenko}, V.~V. and {Cenko}, S.~B. and 
-	{Cao}, Y. and {Nugent}, P.},
-    title = "{The bolometric light curves and physical parameters of stripped-envelope supernovae}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1602.01736},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2016,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2016arXiv160201736P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015arXiv151200733R,
-   author = {{Rubin}, A. and {Gal-Yam}, A. and {De Cia}, A. and {Horesh}, A. and 
-	{Khazov}, D. and {Ofek}, E.~O. and {Kulkarni}, S.~R. and {Arcavi}, I. and 
-	{Manulis}, I. and {Yaron}, O. and {Vreeswijk}, P. and {Kasliwal}, M.~M. and 
-	{Ben-Ami}, S. and {Perley}, D.~A. and {Cao}, Y. and {Cenko}, S.~B. and 
-	{Rebbapragada}, U.~D. and {Wo{\'z}niak}, P.~R. and {Filippenko}, A.~V. and 
-	{Clubb}, K.~I. and {Nugent}, P.~E. and {Pan}, Y.-C. and {Badenes}, C. and 
-	{Howell}, D.~A. and {Valenti}, S. and {Sand}, D. and {Sollerman}, J. and 
-	{Johansson}, J. and {Leonard}, D.~C. and {Horst}, J.~C. and 
-	{Armen}, S.~F. and {Fedrow}, J.~M. and {Quimby}, R.~M. and {Mazzali}, P. and 
-	{Pian}, E. and {Sternberg}, A. and {Matheson}, T. and {Sullivan}, M. and 
-	{Maguire}, K. and {Lazarevic}, S.},
-    title = "{Type II supernova energetics and comparison of light curves to shock-cooling models}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1512.00733},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Cosmology and Nongalactic Astrophysics},
-     year = 2015,
-    month = nov,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151200733R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006ApJ...650..510A,
-   author = {{Aldering}, G. and {Antilogus}, P. and {Bailey}, S. and {Baltay}, C. and 
-	{Bauer}, A. and {Blanc}, N. and {Bongard}, S. and {Copin}, Y. and 
-	{Gangler}, E. and {Gilles}, S. and {Kessler}, R. and {Kocevski}, D. and 
-	{Lee}, B.~C. and {Loken}, S. and {Nugent}, P. and {Pain}, R. and 
-	{P{\'e}contal}, E. and {Pereira}, R. and {Perlmutter}, S. and 
-	{Rabinowitz}, D. and {Rigaudier}, G. and {Scalzo}, R. and {Smadja}, G. and 
-	{Thomas}, R.~C. and {Wang}, L. and {Weaver}, B.~A. and {Nearby Supernova Factory}
-	},
-    title = "{Nearby Supernova Factory Observations of SN 2005gj: Another Type Ia Supernova in a Massive Circumstellar Envelope}",
-  journal = {\apj},
-   eprint = {astro-ph/0606499},
- keywords = {Galaxies: Abundances, Stars: Winds, Outflows, Stars: Supernovae: General, supernovae: individual (SN 2005gj), Stars: Supernovae: Individual: Alphanumeric: SN 2002ic},
-     year = 2006,
-    month = oct,
-   volume = 650,
-    pages = {510-527},
-      doi = {10.1086/507020},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...650..510A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2001MNRAS.326...23B,
-   author = {{Bacon}, R. and {Copin}, Y. and {Monnet}, G. and {Miller}, B.~W. and 
-	{Allington-Smith}, J.~R. and {Bureau}, M. and {Carollo}, C.~M. and 
-	{Davies}, R.~L. and {Emsellem}, E. and {Kuntschner}, H. and 
-	{Peletier}, R.~F. and {Verolme}, E.~K. and {de Zeeuw}, P.~T.
-	},
-    title = "{The SAURON project - I. The panoramic integral-field spectrograph}",
-  journal = {\mnras},
-   eprint = {astro-ph/0103451},
- keywords = {INSTRUMENTATION: SPECTROGRAPHS, GALAXIES: ELLIPTICAL AND LENTICULAR, CD, GALAXIES: INDIVIDUAL: NGC 3377, GALAXIES: KINEMATICS AND DYNAMICS, GALAXIES: SPIRAL, GALAXIES: STELLAR CONTENT},
-     year = 2001,
-    month = sep,
-   volume = 326,
-    pages = {23-35},
-      doi = {10.1046/j.1365-8711.2001.04612.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.326...23B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...775..113T,
-   author = {{Tanaka}, M. and {Hotokezaka}, K.},
-    title = "{Radiative Transfer Simulations of Neutron Star Merger Ejecta}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1306.3742},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer, supernovae: general},
-     year = 2013,
-    month = oct,
-   volume = 775,
-      eid = {113},
-    pages = {113},
-      doi = {10.1088/0004-637X/775/2/113},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775..113T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...780...31T,
-   author = {{Tanaka}, M. and {Hotokezaka}, K. and {Kyutoku}, K. and {Wanajo}, S. and 
-	{Kiuchi}, K. and {Sekiguchi}, Y. and {Shibata}, M.},
-    title = "{Radioactively Powered Emission from Black Hole-Neutron Star Mergers}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.2774},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves, nuclear reactions, nucleosynthesis, abundances, radiative transfer },
-     year = 2014,
-    month = jan,
-   volume = 780,
-      eid = {31},
-    pages = {31},
-      doi = {10.1088/0004-637X/780/1/31},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...31T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015MNRAS.450.1777K,
-   author = {{Kasen}, D. and {Fern{\'a}ndez}, R. and {Metzger}, B.~D.},
-    title = "{Kilonova light curves from the disc wind outflows of compact object mergers}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1411.3726},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, hydrodynamics, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, gamma-ray burst: general},
-     year = 2015,
-    month = jun,
-   volume = 450,
-    pages = {1777-1786},
-      doi = {10.1093/mnras/stv721},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.450.1777K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015MNRAS.452.3869N,
-   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
-	{Sim}, S.~A. and {Chen}, T.-W. and {Benetti}, S. and {Fraser}, M. and 
-	{Gal-Yam}, A. and {Kankare}, E. and {Maguire}, K. and {Smith}, K. and 
-	{Sullivan}, M. and {Valenti}, S. and {Young}, D.~R. and {Baltay}, C. and 
-	{Bauer}, F.~E. and {Baumont}, S. and {Bersier}, D. and {Botticella}, M.-T. and 
-	{Childress}, M. and {Dennefeld}, M. and {Della Valle}, M. and 
-	{Elias-Rosa}, N. and {Feindt}, U. and {Galbany}, L. and {Hadjiyska}, E. and 
-	{Le Guillou}, L. and {Leloudas}, G. and {Mazzali}, P. and {McKinnon}, R. and 
-	{Polshaw}, J. and {Rabinowitz}, D. and {Rostami}, S. and {Scalzo}, R. and 
-	{Schmidt}, B.~P. and {Schulze}, S. and {Sollerman}, J. and {Taddia}, F. and 
-	{Yuan}, F.},
-    title = "{On the diversity of superluminous supernovae: ejected mass as the dominant factor}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1503.03310},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: LSQ14bdq, supernovae: individual: LSQ14mo, supernovae: individual: SN 2013hx},
-     year = 2015,
-    month = oct,
-   volume = 452,
-    pages = {3869-3893},
-      doi = {10.1093/mnras/stv1522},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.452.3869N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015A&A...582A...3G,
-   author = {{Gall}, E.~E.~E. and {Polshaw}, J. and {Kotak}, R. and {Jerkstrand}, A. and 
-	{Leibundgut}, B. and {Rabinowitz}, D. and {Sollerman}, J. and 
-	{Sullivan}, M. and {Smartt}, S.~J. and {Anderson}, J.~P. and 
-	{Benetti}, S. and {Baltay}, C. and {Feindt}, U. and {Fraser}, M. and 
-	{Gonz{\'a}lez-Gait{\'a}n}, S. and {Inserra}, C. and {Maguire}, K. and 
-	{McKinnon}, R. and {Valenti}, S. and {Young}, D.},
-    title = "{A comparative study of Type II-P and II-L supernova rise times as exemplified by the case of LSQ13cuw}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1502.06034},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: LSQ13cuw, methods: analytical},
-     year = 2015,
-    month = oct,
-   volume = 582,
-      eid = {A3},
-    pages = {A3},
-      doi = {10.1051/0004-6361/201525868},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...582A...3G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.451.2212G,
-   author = {{Gonz{\'a}lez-Gait{\'a}n}, S. and {Tominaga}, N. and {Molina}, J. and 
-	{Galbany}, L. and {Bufano}, F. and {Anderson}, J.~P. and {Gutierrez}, C. and 
-	{F{\"o}rster}, F. and {Pignata}, G. and {Bersten}, M. and {Howell}, D.~A. and 
-	{Sullivan}, M. and {Carlberg}, R. and {de Jaeger}, T. and {Hamuy}, M. and 
-	{Baklanov}, P.~V. and {Blinnikov}, S.~I.},
-    title = "{The rise-time of Type II supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1505.02988},
- primaryClass = "astro-ph.SR",
- keywords = {supergiants, supernoave: general},
-     year = 2015,
-    month = aug,
-   volume = 451,
-    pages = {2212-2229},
-      doi = {10.1093/mnras/stv1097},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.451.2212G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2013A&A...555A.142I,
-   author = {{Inserra}, C. and {Pastorello}, A. and {Turatto}, M. and {Pumo}, M.~L. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Botticella}, M.~T. and 
-	{Bufano}, F. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
-	{Taubenberger}, S. and {Valenti}, S. and {Zampieri}, L.},
-    title = "{Moderately luminous Type II supernovae}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1210.1411},
- keywords = {supernovae: general, supernovae: individual: SN 2009dd, supernovae: individual: SN 2007pk, supernovae: individual: SN 2010aj, supernovae: individual: SN 1995ad, supernovae: individual: SN 1996W},
-     year = 2013,
-    month = jul,
-   volume = 555,
-      eid = {A142},
-    pages = {A142},
-      doi = {10.1051/0004-6361/201220496},
-   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...555A.142I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...786...67A,
-   author = {{Anderson}, J.~P. and {Gonz{\'a}lez-Gait{\'a}n}, S. and {Hamuy}, M. and 
-	{Guti{\'e}rrez}, C.~P. and {Stritzinger}, M.~D. and {Olivares E.}, F. and 
-	{Phillips}, M.~M. and {Schulze}, S. and {Antezana}, R. and {Bolt}, L. and 
-	{Campillay}, A. and {Castell{\'o}n}, S. and {Contreras}, C. and 
-	{de Jaeger}, T. and {Folatelli}, G. and {F{\"o}rster}, F. and 
-	{Freedman}, W.~L. and {Gonz{\'a}lez}, L. and {Hsiao}, E. and 
-	{Krzemi{\'n}ski}, W. and {Krisciunas}, K. and {Maza}, J. and 
-	{McCarthy}, P. and {Morrell}, N.~I. and {Persson}, S.~E. and 
-	{Roth}, M. and {Salgado}, F. and {Suntzeff}, N.~B. and {Thomas-Osip}, J.
-	},
-    title = "{Characterizing the V-band Light-curves of Hydrogen-rich Type II Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1403.7091},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general},
-     year = 2014,
-    month = may,
-   volume = 786,
-      eid = {67},
-    pages = {67},
-      doi = {10.1088/0004-637X/786/1/67},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...786...67A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015ApJ...799..208S,
-   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Gezari}, S. and 
-	{Betancourt}, M. and {Chornock}, R. and {Berger}, E. and {Foley}, R.~J. and 
-	{Challis}, P. and {Drout}, M. and {Kirshner}, R.~P. and {Lunnan}, R. and 
-	{Marion}, G.~H. and {Margutti}, R. and {McKinnon}, R. and {Milisavljevic}, D. and 
-	{Narayan}, G. and {Rest}, A. and {Kankare}, E. and {Mattila}, S. and 
-	{Smartt}, S.~J. and {Huber}, M.~E. and {Burgett}, W.~S. and 
-	{Draper}, P.~W. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.~P. and 
-	{Magnier}, E.~A. and {Metcalfe}, N. and {Morgan}, J.~S. and 
-	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C.},
-    title = "{Toward Characterization of the Type IIP Supernova Progenitor Population: A Statistical Sample of Light Curves from Pan-STARRS1}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1404.2004},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, surveys},
-     year = 2015,
-    month = feb,
-   volume = 799,
-      eid = {208},
-    pages = {208},
-      doi = {10.1088/0004-637X/799/2/208},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...799..208S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2008AJ....136.2306H,
-   author = {{Holtzman}, J.~A. and {Marriner}, J. and {Kessler}, R. and {Sako}, M. and 
-	{Dilday}, B. and {Frieman}, J.~A. and {Schneider}, D.~P. and 
-	{Bassett}, B. and {Becker}, A. and {Cinabro}, D. and {DeJongh}, F. and 
-	{Depoy}, D.~L. and {Doi}, M. and {Garnavich}, P.~M. and {Hogan}, C.~J. and 
-	{Jha}, S. and {Konishi}, K. and {Lampeitl}, H. and {Marshall}, J.~L. and 
-	{McGinnis}, D. and {Miknaitis}, G. and {Nichol}, R.~C. and {Prieto}, J.~L. and 
-	{Riess}, A.~G. and {Richmond}, M.~W. and {Romani}, R. and {Smith}, M. and 
-	{Takanashi}, N. and {Tokita}, K. and {van der Heyden}, K. and 
-	{Yasuda}, N. and {Zheng}, C.},
-    title = "{The Sloan Digital Sky Survey-II: Photometry and Supernova IA Light Curves from the 2005 Data}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {0908.4277},
- keywords = {supernovae: general, techniques: photometric},
-     year = 2008,
-    month = dec,
-   volume = 136,
-    pages = {2306-2320},
-      doi = {10.1088/0004-6256/136/6/2306},
-   adsurl = {http://adsabs.harvard.edu/abs/2008AJ....136.2306H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007ApJ...657L..73G,
-   author = {{Guetta}, D. and {Della Valle}, M.},
-    title = "{On the Rates of Gamma-Ray Bursts and Type Ib/c Supernovae}",
-  journal = {\apjl},
-   eprint = {astro-ph/0612194},
- keywords = {Gamma Rays: Bursts},
-     year = 2007,
-    month = mar,
-   volume = 657,
-    pages = {L73-L76},
-      doi = {10.1086/511417},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...657L..73G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015arXiv151101466G,
-   author = {{Graham}, J.~F. and {Schady}, P.},
-    title = "{The Absolute Rate of LGRB Formation}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1511.01466},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2015,
-    month = nov,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151101466G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...759..107K,
-   author = {{Kelly}, P.~L. and {Kirshner}, R.~P.},
-    title = "{Core-collapse Supernovae and Host Galaxy Stellar Populations}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1110.1377},
- keywords = {galaxies: star formation, gamma ray burst: general, stars: abundances, supernovae: general},
-     year = 2012,
-    month = nov,
-   volume = 759,
-      eid = {107},
-    pages = {107},
-      doi = {10.1088/0004-637X/759/2/107},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759..107K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2011Natur.474..487Q,
-   author = {{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Kasliwal}, M.~M. and 
-	{Gal-Yam}, A. and {Arcavi}, I. and {Sullivan}, M. and {Nugent}, P. and 
-	{Thomas}, R. and {Howell}, D.~A. and {Nakar}, E. and {Bildsten}, L. and 
-	{Theissen}, C. and {Law}, N.~M. and {Dekany}, R. and {Rahmer}, G. and 
-	{Hale}, D. and {Smith}, R. and {Ofek}, E.~O. and {Zolkower}, J. and 
-	{Velur}, V. and {Walters}, R. and {Henning}, J. and {Bui}, K. and 
-	{McKenna}, D. and {Poznanski}, D. and {Cenko}, S.~B. and {Levitan}, D.
-	},
-    title = "{Hydrogen-poor superluminous stellar explosions}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0910.0059},
- primaryClass = "astro-ph.CO",
-     year = 2011,
-    month = jun,
-   volume = 474,
-    pages = {487-489},
-      doi = {10.1038/nature10095},
-   adsurl = {http://adsabs.harvard.edu/abs/2011Natur.474..487Q},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.431..912Q,
-   author = {{Quimby}, R.~M. and {Yuan}, F. and {Akerlof}, C. and {Wheeler}, J.~C.
-	},
-    title = "{Rates of superluminous supernovae at z {\tilde} 0.2}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.0911},
- keywords = {supernovae: general},
-     year = 2013,
-    month = may,
-   volume = 431,
-    pages = {912-922},
-      doi = {10.1093/mnras/stt213},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431..912Q},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@incollection{Ngiam11,
-   title = {Sparse Filtering},
-   author = {{Ngiam}, J. and {Chen}, Z. and {Bhaskar}, S.~A. and Koh, P.~W. and Ng, A.~Y.},
-   booktitle = {Advances in Neural Information Processing Systems 24},
-   editor = {J. Shawe-Taylor and R.S. Zemel and P.L. Bartlett and F. Pereira and K.Q. Weinberger},
-   pages = {1125--1133},
-   year = {2011},
-   publisher = {Curran Associates, Inc.},
-   url = {http://papers.nips.cc/paper/4334-sparse-filtering.pdf}
-}
-
-
-
-
-@phdthesis{Wright15,
-   author = {{Wright}, D.},
-   school = {Department of Physics and Astronomy, Queen's University Belfast.},
-   title = {Machine Learning for Transient Surveys.},
-   year = 2015,
-  month = December,
-  adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ATel.7102....1G,
-   author = {{Guillou}, L.~L. and {Mitra}, A. and {Baumont}, S. and {Chotard}, N. and 
-	{Leget}, P.-F. and {Fraser}, M. and {Galbany}, L. and {Dennefeld}, M. and 
-	{Inserra}, C. and {Maguire}, K. and {Smartt}, S. and {Smith}, K.~W. and 
-	{Sullivan}, M. and {Valenti}, S. and {Yaron}, O. and {Young}, D. and 
-	{Manulis}, I. and {Baltay}, C. and {Ellman}, N. and {Hadjiyska}, E. and 
-	{McKinnon}, R. and {Rabinowitz}, D. and {Rostami}, S. and {Feindt}, U. and 
-	{Kowalski}, M. and {Nugent}, P. and {Wright}, D. and {Chambers}, K. and 
-	{Flewelling}, H. and {Huber}, M. and {Magnier}, E. and {Tonry}, J. and 
-	{Waters}, C. and {Wainscoat}, R.~J.},
-    title = "{PESSTO spectroscopic classification of optical transients}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae},
-     year = 2015,
-    month = feb,
-   volume = 7102,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.7102....1G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...738..154H,
-   author = {{Horiuchi}, S. and {Beacom}, J.~F. and {Kochanek}, C.~S. and 
-	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A.},
-    title = "{The Cosmic Core-collapse Supernova Rate Does Not Match the Massive-star Formation Rate}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1102.1977},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: evolution, galaxies: starburst, stars: formation, supernovae: general},
-     year = 2011,
-    month = sep,
-   volume = 738,
-      eid = {154},
-    pages = {154},
-      doi = {10.1088/0004-637X/738/2/154},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...738..154H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...713.1026D,
-   author = {{Dilday}, B. and {Smith}, M. and {Bassett}, B. and {Becker}, A. and 
-	{Bender}, R. and {Castander}, F. and {Cinabro}, D. and {Filippenko}, A.~V. and 
-	{Frieman}, J.~A. and {Galbany}, L. and {Garnavich}, P.~M. and 
-	{Goobar}, A. and {Hopp}, U. and {Ihara}, Y. and {Jha}, S.~W. and 
-	{Kessler}, R. and {Lampeitl}, H. and {Marriner}, J. and {Miquel}, R. and 
-	{Moll{\'a}}, M. and {Nichol}, R.~C. and {Nordin}, J. and {Riess}, A.~G. and 
-	{Sako}, M. and {Schneider}, D.~P. and {Sollerman}, J. and {Wheeler}, J.~C. and 
-	{{\"O}stman}, L. and {Bizyaev}, D. and {Brewington}, H. and 
-	{Malanushenko}, E. and {Malanushenko}, V. and {Oravetz}, D. and 
-	{Pan}, K. and {Simmons}, A. and {Snedden}, S.},
-    title = "{Measurements of the Rate of Type Ia Supernovae at Redshift lsim0.3 from the Sloan Digital Sky Survey II Supernova Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1001.4995},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general},
-     year = 2010,
-    month = apr,
-   volume = 713,
-    pages = {1026-1036},
-      doi = {10.1088/0004-637X/713/2/1026},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...713.1026D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013MNRAS.435.1047B,
-   author = {{Brink}, H. and {Richards}, J.~W. and {Poznanski}, D. and {Bloom}, J.~S. and 
-	{Rice}, J. and {Negahban}, S. and {Wainwright}, M.},
-    title = "{Using machine learning for discovery in synoptic survey imaging data}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1209.3775},
- primaryClass = "astro-ph.IM",
- keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
-     year = 2013,
-    month = oct,
-   volume = 435,
-    pages = {1047-1060},
-      doi = {10.1093/mnras/stt1306},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.435.1047B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015AJ....150...82G,
-   author = {{Goldstein}, D.~A. and {D'Andrea}, C.~B. and {Fischer}, J.~A. and 
-	{Foley}, R.~J. and {Gupta}, R.~R. and {Kessler}, R. and {Kim}, A.~G. and 
-	{Nichol}, R.~C. and {Nugent}, P.~E. and {Papadopoulos}, A. and 
-	{Sako}, M. and {Smith}, M. and {Sullivan}, M. and {Thomas}, R.~C. and 
-	{Wester}, W. and {Wolf}, R.~C. and {Abdalla}, F.~B. and {Banerji}, M. and 
-	{Benoit-Levy}, A. and {Bertin}, E. and {Brooks}, D. and 
-	{Carnero Rosell}, A. and {Castander}, F.~J. and {da Costa}, L.~N. and 
-	{Covarrubias}, R. and {DePoy}, D.~L. and {Desai}, S. and {Diehl}, H.~T. and 
-	{Doel}, P. and {Eifler}, T.~F. and {Fausti Neto}, A. and {Finley}, D.~A. and 
-	{Flaugher}, B. and {Fosalba}, P. and {Frieman}, J. and {Gerdes}, D. and 
-	{Gruen}, D. and {Gruendl}, R.~A. and {James}, D. and {Kuehn}, K. and 
-	{Kuropatkin}, N. and {Lahav}, O. and {Li}, T.~S. and {Maia}, M.~A.~G. and 
-	{Makler}, M. and {March}, M. and {Marshall}, J.~L. and {Martini}, P. and 
-	{Merritt}, K.~W. and {Miquel}, R. and {Nord}, B. and {Ogando}, R. and 
-	{Plazas}, A.~A. and {Romer}, A.~K. and {Roodman}, A. and {Sanchez}, E. and 
-	{Scarpine}, V. and {Schubnell}, M. and {Sevilla-Noarbe}, I. and 
-	{Smith}, R.~C. and {Soares-Santos}, M. and {Sobreira}, F. and 
-	{Suchyta}, E. and {Swanson}, M.~E.~C. and {Tarle}, G. and {Thaler}, J. and 
-	{Walker}, A.~R.},
-    title = "{Automated Transient Identification in the Dark Energy Survey}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1504.02936},
- primaryClass = "astro-ph.IM",
- keywords = {methods: data analysis, methods: statistical, supernovae: general},
-     year = 2015,
-    month = sep,
-   volume = 150,
-      eid = {82},
-    pages = {82},
-      doi = {10.1088/0004-6256/150/3/82},
-   adsurl = {http://adsabs.harvard.edu/abs/2015AJ....150...82G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015arXiv151205435F,
-   author = {{Fern{\'a}ndez}, R. and {Metzger}, B.~D.},
-    title = "{Electromagnetic Signatures of Neutron Star Mergers in the Advanced LIGO Era}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1512.05435},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics, General Relativity and Quantum Cosmology, Nuclear Theory},
-     year = 2015,
-    month = dec,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv151205435F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013IJMPD..2241011K,
-   author = {{Kamble}, A. and {Kaplan}, D.~L.~A.},
-    title = "{Electromagnetic Counterparts of Gravitational Wave Sources: Mergers of Compact Objects}",
-  journal = {International Journal of Modern Physics D},
- keywords = {Gravitational waves, Wave generation and sources, Gravitational-wave astrophysics, Gravitational radiation magnetic fields and other observations},
-     year = 2013,
-    month = jan,
-   volume = 22,
-      eid = {1341011},
-    pages = {41011},
-      doi = {10.1142/S0218271813410113},
-   adsurl = {http://adsabs.harvard.edu/abs/2013IJMPD..2241011K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...774...25K,
-   author = {{Kasen}, D. and {Badnell}, N.~R. and {Barnes}, J.},
-    title = "{Opacities and Spectra of the r-process Ejecta from Neutron Star Mergers}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.5788},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, stars: neutron, supernovae: general },
-     year = 2013,
-    month = sep,
-   volume = 774,
-      eid = {25},
-    pages = {25},
-      doi = {10.1088/0004-637X/774/1/25},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...774...25K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...775...18B,
-   author = {{Barnes}, J. and {Kasen}, D.},
-    title = "{Effect of a High Opacity on the Light Curves of Radioactively Powered Transients from Compact Object Mergers}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.5787},
- primaryClass = "astro-ph.HE",
- keywords = {atomic data, nuclear reactions, nucleosynthesis, abundances, opacity, radiative transfer, stars: neutron, supernovae: general},
-     year = 2013,
-    month = sep,
-   volume = 775,
-      eid = {18},
-    pages = {18},
-      doi = {10.1088/0004-637X/775/1/18},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775...18B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...737..103S,
-   author = {{Schlafly}, E.~F. and {Finkbeiner}, D.~P.},
-    title = "{Measuring Reddening with Sloan Digital Sky Survey Stellar Spectra and Recalibrating SFD}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1012.4804},
- primaryClass = "astro-ph.GA",
- keywords = {dust, extinction, Galaxy: stellar content, ISM: clouds},
-     year = 2011,
-    month = aug,
-   volume = 737,
-      eid = {103},
-    pages = {103},
-      doi = {10.1088/0004-637X/737/2/103},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...737..103S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.416.3138V,
-   author = {{Valenti}, S. and {Fraser}, M. and {Benetti}, S. and {Pignata}, G. and 
-	{Sollerman}, J. and {Inserra}, C. and {Cappellaro}, E. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Ergon}, M. and {Botticella}, M.~T. and 
-	{Brimacombe}, J. and {Bufano}, F. and {Crockett}, M. and {Eder}, I. and 
-	{Fugazza}, D. and {Haislip}, J.~B. and {Hamuy}, M. and {Harutyunyan}, A. and 
-	{Ivarsen}, K.~M. and {Kankare}, E. and {Kotak}, R. and {Lacluyze}, A.~P. and 
-	{Magill}, L. and {Mattila}, S. and {Maza}, J. and {Mazzali}, P.~A. and 
-	{Reichart}, D.~E. and {Taubenberger}, S. and {Turatto}, M. and 
-	{Zampieri}, L.},
-    title = "{SN 2009jf: a slow-evolving stripped-envelope core-collapse supernova}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1106.3030},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2009jf, galaxies: individual: NGC 7479},
-     year = 2011,
-    month = oct,
-   volume = 416,
-    pages = {3138-3159},
-      doi = {10.1111/j.1365-2966.2011.19262.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.3138V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015A&A...574A..60T,
-   author = {{Taddia}, F. and {Sollerman}, J. and {Leloudas}, G. and {Stritzinger}, M.~D. and 
-	{Valenti}, S. and {Galbany}, L. and {Kessler}, R. and {Schneider}, D.~P. and 
-	{Wheeler}, J.~C.},
-    title = "{Early-time light curves of Type Ib/c supernovae from the SDSS-II Supernova Survey}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1408.4084},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general},
-     year = 2015,
-    month = feb,
-   volume = 574,
-      eid = {A60},
-    pages = {A60},
-      doi = {10.1051/0004-6361/201423915},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...574A..60T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011MNRAS.416.2607G,
-   author = {{Ganeshalingam}, M. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{The rise-time distribution of nearby Type Ia supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1107.2404},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general},
-     year = 2011,
-    month = oct,
-   volume = 416,
-    pages = {2607-2622},
-      doi = {10.1111/j.1365-2966.2011.19213.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.2607G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ARA&A..44..507W,
-   author = {{Woosley}, S.~E. and {Bloom}, J.~S.},
-    title = "{The Supernova Gamma-Ray Burst Connection}",
-  journal = {\araa},
-   eprint = {astro-ph/0609142},
-     year = 2006,
-    month = sep,
-   volume = 44,
-    pages = {507-556},
-      doi = {10.1146/annurev.astro.43.072103.150558},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ARA&A..44..507W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{1992AJ....103.1632P,
-   author = {{Phillips}, M.~M. and {Wells}, L.~A. and {Suntzeff}, N.~B. and 
-	{Hamuy}, M. and {Leibundgut}, B. and {Kirshner}, R.~P. and {Foltz}, C.~B.
-	},
-    title = "{SN 1991T - Further evidence of the heterogeneous nature of type IA supernovae}",
-  journal = {\aj},
- keywords = {Stellar Composition, Stellar Evolution, Stellar Spectra, Supernovae, Light Curve, Stellar Color, Stellar Spectrophotometry},
-     year = 1992,
-    month = may,
-   volume = 103,
-    pages = {1632-1637},
-      doi = {10.1086/116177},
-   adsurl = {http://adsabs.harvard.edu/abs/1992AJ....103.1632P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015A&A...581L...4K,
-   author = {{Kankare}, E. and {Kotak}, R. and {Pastorello}, A. and {Fraser}, M. and 
-	{Mattila}, S. and {Smartt}, S.~J. and {Bruce}, A. and {Chambers}, K.~C. and 
-	{Elias-Rosa}, N. and {Flewelling}, H. and {Fremling}, C. and 
-	{Harmanen}, J. and {Huber}, M. and {Jerkstrand}, A. and {Kangas}, T. and 
-	{Kuncarayakti}, H. and {Magee}, M. and {Magnier}, E. and {Polshaw}, J. and 
-	{Smith}, K.~W. and {Sollerman}, J. and {Tomasella}, L.},
-    title = "{On the triple peaks of SNHunt248 in NGC 5806}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1508.04730},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SNHunt248},
-     year = 2015,
-    month = sep,
-   volume = 581,
-      eid = {L4},
-    pages = {L4},
-      doi = {10.1051/0004-6361/201526631},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...581L...4K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015ApJ...804...28G,
-   author = {{Gezari}, S. and {Jones}, D.~O. and {Sanders}, N.~E. and {Soderberg}, A.~M. and 
-	{Hung}, T. and {Heinis}, S. and {Smartt}, S.~J. and {Rest}, A. and 
-	{Scolnic}, D. and {Chornock}, R. and {Berger}, E. and {Foley}, R.~J. and 
-	{Huber}, M.~E. and {Price}, P. and {Stubbs}, C.~W. and {Riess}, A.~G. and 
-	{Kirshner}, R.~P. and {Smith}, K. and {Wood-Vasey}, W.~M. and 
-	{Schiminovich}, D. and {Martin}, D.~C. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Flewelling}, H. and {Kaiser}, N. and 
-	{Tonry}, J.~L. and {Wainscoat}, R.},
-    title = "{GALEX Detection of Shock Breakout in Type IIP Supernova PS1-13arp: Implications for the Progenitor Star Wind}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1502.06964},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: individual: PS1-13arp, surveys, ultraviolet: general},
-     year = 2015,
-    month = may,
-   volume = 804,
-      eid = {28},
-    pages = {28},
-      doi = {10.1088/0004-637X/804/1/28},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...804...28G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2013PASP..125..357D,
-   author = {{Denneau}, L. and {Jedicke}, R. and {Grav}, T. and {Granvik}, M. and 
-	{Kubica}, J. and {Milani}, A. and {Vere{\v s}}, P. and {Wainscoat}, R. and 
-	{Chang}, D. and {Pierfederici}, F. and {Kaiser}, N. and {Chambers}, K.~C. and 
-	{Heasley}, J.~N. and {Magnier}, E.~A. and {Price}, P.~A. and 
-	{Myers}, J. and {Kleyna}, J. and {Hsieh}, H. and {Farnocchia}, D. and 
-	{Waters}, C. and {Sweeney}, W.~H. and {Green}, D. and {Bolin}, B. and 
-	{Burgett}, W.~S. and {Morgan}, J.~S. and {Tonry}, J.~L. and 
-	{Hodapp}, K.~W. and {Chastel}, S. and {Chesley}, S. and {Fitzsimmons}, A. and 
-	{Holman}, M. and {Spahr}, T. and {Tholen}, D. and {Williams}, G.~V. and 
-	{Abe}, S. and {Armstrong}, J.~D. and {Bressi}, T.~H. and {Holmes}, R. and 
-	{Lister}, T. and {McMillan}, R.~S. and {Micheli}, M. and {Ryan}, E.~V. and 
-	{Ryan}, W.~H. and {Scotti}, J.~V.},
-    title = "{The Pan-STARRS Moving Object Processing System}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {1302.7281},
- primaryClass = "astro-ph.IM",
- keywords = {Astronomical Instrumentation},
-     year = 2013,
-    month = apr,
-   volume = 125,
-    pages = {357-395},
-      doi = {10.1086/670337},
-   adsurl = {http://adsabs.harvard.edu/abs/2013PASP..125..357D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...746..128S,
-   author = {{Saglia}, R.~P. and {Tonry}, J.~L. and {Bender}, R. and {Greisel}, N. and 
-	{Seitz}, S. and {Senger}, R. and {Snigula}, J. and {Phleps}, S. and 
-	{Wilman}, D. and {Bailer-Jones}, C.~A.~L. and {Klement}, R.~J. and 
-	{Rix}, H.-W. and {Smith}, K. and {Green}, P.~J. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Heasley}, J.~N. and {Kaiser}, N. and 
-	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
-	{Stubbs}, C.~W. and {Wainscoat}, R.~J.},
-    title = "{The Photometric Classification Server for Pan-STARRS1}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1109.5080},
- keywords = {galaxies: active, galaxies: distances and redshifts, stars: general, surveys},
-     year = 2012,
-    month = feb,
-   volume = 746,
-      eid = {128},
-    pages = {128},
-      doi = {10.1088/0004-637X/746/2/128},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..128S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.449..451W,
-   author = {{Wright}, D.~E. and {Smartt}, S.~J. and {Smith}, K.~W. and {Miller}, P. and 
-	{Kotak}, R. and {Rest}, A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M. and {Jedicke}, R. and 
-	{Kaiser}, N. and {Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and 
-	{Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Machine learning for transient discovery in Pan-STARRS1 difference imaging}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1501.05470},
- primaryClass = "astro-ph.IM",
- keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
-     year = 2015,
-    month = may,
-   volume = 449,
-    pages = {451-466},
-      doi = {10.1093/mnras/stv292},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449..451W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009A&A...494..707K,
-   author = {{Koppenhoefer}, J. and {Afonso}, C. and {Saglia}, R.~P. and 
-	{Henning}, T.},
-    title = "{Investigating the potential of the Pan-Planets project using Monte Carlo simulations}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0812.1559},
- keywords = {stars: planetary systems, methods: statistical, techniques: photometric},
-     year = 2009,
-    month = feb,
-   volume = 494,
-    pages = {707-717},
-      doi = {10.1051/0004-6361:200810754},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...494..707K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2007ASPC..366..326A,
-   author = {{Afonso}, C. and {Henning}, T.},
-    title = "{The Pan-Planets Project}",
-booktitle = {Transiting Extrapolar Planets Workshop},
-     year = 2007,
-   series = {Astronomical Society of the Pacific Conference Series},
-   volume = 366,
-   editor = {{Afonso}, C. and {Weldrake}, D. and {Henning}, T.},
-    month = jul,
-    pages = {326},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ASPC..366..326A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016A&A...587A..49O,
-  author = {{Obermeier}, C. and {Koppenhoefer}, J. and {Saglia}, R.~P. and
-	{Henning}, T. and {Bender}, R. and {Kodric}, M. and {Deacon}, N. and
-	{Riffeser}, A. and {Burgett}, W. and {Chambers}, K.~C. and {Draper}, P.~W. and
-	{Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and
-	{Magnier}, E.~A. and {Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and
-	{Wainscoat}, R.~J. and {Waters}, C.},
-   title = "{Pan-Planets: Searching for hot Jupiters around cool dwarfs}",
- journal = {\aap},
-archivePrefix = "arXiv",
-  eprint = {1512.07259},
-primaryClass = "astro-ph.EP",
-keywords = {techniques: image processing, techniques: photometric, stars: low-mass, planetary systems},
-    year = 2016,
-   month = mar,
-  volume = 587,
-     eid = {A49},
-   pages = {A49},
-     doi = {10.1051/0004-6361/201527633},
-  adsurl = {http://adsabs.harvard.edu/abs/2016A&A...587A..49O},
- adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2016ApJ...825..140M,
-   author = {{Morganson}, E. and {Conn}, B. and {Rix}, H.-W. and {Bell}, E.~F. and 
-	{Burgett}, W.~S. and {Chambers}, K. and {Dolphin}, A. and {Draper}, P.~W. and 
-	{Flewelling}, H. and {Hodapp}, K. and {Kaiser}, N. and {Magnier}, E.~A. and 
-	{Martin}, N.~F. and {Martinez-Delgado}, D. and {Metcalfe}, N. and 
-	{Schlafly}, E.~F. and {Slater}, C.~T. and {Wainscoat}, R.~J. and 
-	{Waters}, C.~Z.},
-    title = "{Mapping the Monoceros Ring in 3D with Pan-STARRS1}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1604.07501},
- keywords = {Galaxy: disk},
-     year = 2016,
-    month = jul,
-   volume = 825,
-      eid = {140},
-    pages = {140},
-      doi = {10.3847/0004-637X/825/2/140},
-   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...825..140M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016ApJ...831..144L,
-   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Milisavljevic}, D. and 
-	{Jones}, D.~O. and {Rest}, A. and {Fong}, W. and {Fransson}, C. and 
-	{Margutti}, R. and {Drout}, M.~R. and {Blanchard}, P.~K. and 
-	{Challis}, P. and {Cowperthwaite}, P.~S. and {Foley}, R.~J. and 
-	{Kirshner}, R.~P. and {Morrell}, N. and {Riess}, A.~G. and {Roth}, K.~C. and 
-	{Scolnic}, D. and {Smartt}, S.~J. and {Smith}, K.~W. and {Villar}, V.~A. and 
-	{Chambers}, K.~C. and {Draper}, P.~W. and {Huber}, M.~E. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Waters}, C.},
-    title = "{PS1-14bj: A Hydrogen-poor Superluminous Supernova With a Long Rise and Slow Decay}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1605.05235},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: PS1-14bj, LSQ14an},
-     year = 2016,
-    month = nov,
-   volume = 831,
-      eid = {144},
-    pages = {144},
-      doi = {10.3847/0004-637X/831/2/144},
-   adsurl = {http://adsabs.harvard.edu/abs/2016ApJ...831..144L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2012ApJ...745...42T,
-   author = {{Tonry}, J.~L. and {Stubbs}, C.~W. and {Kilic}, M. and {Flewelling}, H.~A. and 
-	{Deacon}, N.~R. and {Chornock}, R. and {Berger}, E. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Hodapp}, K.~W. and {Magnier}, E.~A. and {Morgan}, J.~S. and 
-	{Price}, P.~A. and {Wainscoat}, R.~J.},
-    title = "{First Results from Pan-STARRS1: Faint, High Proper Motion White Dwarfs in the Medium-Deep Fields}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1110.0060},
- keywords = {Galaxy: evolution, proper motions, surveys, white dwarfs},
-     year = 2012,
-    month = jan,
-   volume = 745,
-      eid = {42},
-    pages = {42},
-      doi = {10.1088/0004-637X/745/1/42},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...745...42T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...774L..23B,
-   author = {{Berger}, E. and {Fong}, W. and {Chornock}, R.},
-    title = "{An r-process Kilonova Associated with the Short-hard GRB 130603B}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1306.3960},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gamma-ray burst: individual: 130603B},
-     year = 2013,
-    month = sep,
-   volume = 774,
-      eid = {L23},
-    pages = {L23},
-      doi = {10.1088/2041-8205/774/2/L23},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...774L..23B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011CQGra..28h5016W,
-   author = {{White}, D.~J. and {Daw}, E.~J. and {Dhillon}, V.~S.},
-    title = "{A list of galaxies for gravitational wave searches}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1103.0695},
-     year = 2011,
-    month = apr,
-   volume = 28,
-   number = 8,
-      eid = {085016},
-    pages = {085016},
-      doi = {10.1088/0264-9381/28/8/085016},
-   adsurl = {http://adsabs.harvard.edu/abs/2011CQGra..28h5016W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015arXiv150900055C,
-   author = {{Chen}, H.-Y. and {Holz}, D.~E.},
-    title = "{Facilitating follow-up of LIGO-Virgo events using rapid sky localization}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1509.00055},
- primaryClass = "astro-ph.IM",
- keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - High Energy Astrophysical Phenomena, General Relativity and Quantum Cosmology},
-     year = 2015,
-    month = aug,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150900055C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015CQGra..32m5012C,
-   author = {{Cornish}, N.~J. and {Littenberg}, T.~B.},
-    title = "{Bayeswave: Bayesian inference for gravitational wave bursts and instrument glitches}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1410.3835},
- primaryClass = "gr-qc",
-     year = 2015,
-    month = jul,
-   volume = 32,
-   number = 13,
-      eid = {135012},
-    pages = {135012},
-      doi = {10.1088/0264-9381/32/13/135012},
-   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32m5012C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...800...81E,
-   author = {{Essick}, R. and {Vitale}, S. and {Katsavounidis}, E. and {Vedovato}, G. and 
-	{Klimenko}, S.},
-    title = "{Localization of Short Duration Gravitational-wave Transients with the Early Advanced LIGO and Virgo Detectors}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1409.2435},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, methods: data analysis },
-     year = 2015,
-    month = feb,
-   volume = 800,
-      eid = {81},
-    pages = {81},
-      doi = {10.1088/0004-637X/800/2/81},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...800...81E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...804..114B,
-   author = {{Berry}, C.~P.~L. and {Mandel}, I. and {Middleton}, H. and {Singer}, L.~P. and 
-	{Urban}, A.~L. and {Vecchio}, A. and {Vitale}, S. and {Cannon}, K. and 
-	{Farr}, B. and {Farr}, W.~M. and {Graff}, P.~B. and {Hanna}, C. and 
-	{Haster}, C.-J. and {Mohapatra}, S. and {Pankow}, C. and {Price}, L.~R. and 
-	{Sidery}, T. and {Veitch}, J.},
-    title = "{Parameter Estimation for Binary Neutron-star Coalescences with Realistic Noise during the Advanced LIGO Era}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1411.6934},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, methods: data analysis, stars: neutron, surveys},
-     year = 2015,
-    month = may,
-   volume = 804,
-      eid = {114},
-    pages = {114},
-      doi = {10.1088/0004-637X/804/2/114},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...804..114B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...784....8H,
-   author = {{Hanna}, C. and {Mandel}, I. and {Vousden}, W.},
-    title = "{Utility of Galaxy Catalogs for Following up Gravitational Waves from Binary Neutron Star Mergers with Wide-field Telescopes}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1312.2077},
- primaryClass = "astro-ph.HE",
- keywords = {binaries: close, catalogs, gravitational waves, stars: neutron},
-     year = 2014,
-    month = mar,
-   volume = 784,
-      eid = {8},
-    pages = {8},
-      doi = {10.1088/0004-637X/784/1/8},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...784....8H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...795..105S,
-   author = {{Singer}, L.~P. and {Price}, L.~R. and {Farr}, B. and {Urban}, A.~L. and 
-	{Pankow}, C. and {Vitale}, S. and {Veitch}, J. and {Farr}, W.~M. and 
-	{Hanna}, C. and {Cannon}, K. and {Downes}, T. and {Graff}, P. and 
-	{Haster}, C.-J. and {Mandel}, I. and {Sidery}, T. and {Vecchio}, A.
-	},
-    title = "{The First Two Years of Electromagnetic Follow-up with Advanced LIGO and Virgo}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1404.5623},
- primaryClass = "astro-ph.HE",
- keywords = {gravitational waves, stars: neutron, surveys},
-     year = 2014,
-    month = nov,
-   volume = 795,
-      eid = {105},
-    pages = {105},
-      doi = {10.1088/0004-637X/795/2/105},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795..105S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...769..130C,
-   author = {{Cenko}, S.~B. and {Kulkarni}, S.~R. and {Horesh}, A. and {Corsi}, A. and 
-	{Fox}, D.~B. and {Carpenter}, J. and {Frail}, D.~A. and {Nugent}, P.~E. and 
-	{Perley}, D.~A. and {Gruber}, D. and {Gal-Yam}, A. and {Groot}, P.~J. and 
-	{Hallinan}, G. and {Ofek}, E.~O. and {Rau}, A. and {MacLeod}, C.~L. and 
-	{Miller}, A.~A. and {Bloom}, J.~S. and {Filippenko}, A.~V. and 
-	{Kasliwal}, M.~M. and {Law}, N.~M. and {Morgan}, A.~N. and {Polishook}, D. and 
-	{Poznanski}, D. and {Quimby}, R.~M. and {Sesar}, B. and {Shen}, K.~J. and 
-	{Silverman}, J.~M. and {Sternberg}, A.},
-    title = "{Discovery of a Cosmological, Relativistic Outburst via its Rapidly Fading Optical Emission}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1304.4236},
- keywords = {gamma-ray burst: general, stars: flare, supernovae: general},
-     year = 2013,
-    month = jun,
-   volume = 769,
-      eid = {130},
-    pages = {130},
-      doi = {10.1088/0004-637X/769/2/130},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769..130C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...806...52S,
-   author = {{Singer}, L.~P. and {Kasliwal}, M.~M. and {Cenko}, S.~B. and 
-	{Perley}, D.~A. and {Anderson}, G.~E. and {Anupama}, G.~C. and 
-	{Arcavi}, I. and {Bhalerao}, V. and {Bue}, B.~D. and {Cao}, Y. and 
-	{Connaughton}, V. and {Corsi}, A. and {Cucchiara}, A. and {Fender}, R.~P. and 
-	{Fox}, D.~B. and {Gehrels}, N. and {Goldstein}, A. and {Gorosabel}, J. and 
-	{Horesh}, A. and {Hurley}, K. and {Johansson}, J. and {Kann}, D.~A. and 
-	{Kouveliotou}, C. and {Huang}, K. and {Kulkarni}, S.~R. and 
-	{Masci}, F. and {Nugent}, P. and {Rau}, A. and {Rebbapragada}, U.~D. and 
-	{Staley}, T.~D. and {Svinkin}, D. and {Th{\"o}ne}, C.~C. and 
-	{de Ugarte Postigo}, A. and {Urata}, Y. and {Weinstein}, A.},
-    title = "{The Needle in the 100 deg$^{2}$ Haystack: Uncovering Afterglows of Fermi GRBs with the Palomar Transient Factory}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1501.00495},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: individual: GRB 130702A, GRB 140606B, gravitational waves, methods: observational, supernovae: general, surveys},
-     year = 2015,
-    month = jun,
-   volume = 806,
-      eid = {52},
-    pages = {52},
-      doi = {10.1088/0004-637X/806/1/52},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...806...52S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...811...52A,
-   author = {{Aartsen}, M.~G. and {Abraham}, K. and {Ackermann}, M. and {Adams}, J. and 
-	{Aguilar}, J.~A. and {Ahlers}, M. and {Ahrens}, M. and {Altmann}, D. and 
-	{Anderson}, T. and {Archinger}, M. and et al.},
-    title = "{The Detection of a Type IIn Supernova in Optical Follow-up Observations of IceCube Neutrino Events}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1506.03115},
- primaryClass = "astro-ph.HE",
-     year = 2015,
-    month = sep,
-   volume = 811,
-      eid = {52},
-    pages = {52},
-      doi = {10.1088/0004-637X/811/1/52},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...811...52A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ARAA..52...43B,
-   author = {{Berger}, E.},
-    title = "{Short-Duration Gamma-Ray Bursts}",
-  journal = {\araa},
-archivePrefix = "arXiv",
-   eprint = {1311.2603},
- primaryClass = "astro-ph.HE",
-     year = 2014,
-    month = aug,
-   volume = 52,
-    pages = {43-105},
-      doi = {10.1146/annurev-astro-081913-035926},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ARA&A..52...43B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996ApJ...470..172S,
-   author = {{Shectman}, S.~A. and {Landy}, S.~D. and {Oemler}, A. and {Tucker}, D.~L. and 
-	{Lin}, H. and {Kirshner}, R.~P. and {Schechter}, P.~L.},
-    title = "{The Las Campanas Redshift Survey}",
-  journal = {\apj},
-   eprint = {astro-ph/9604167},
- keywords = {COSMOLOGY: OBSERVATIONS, GALAXIES: CLUSTERS: GENERAL, GALAXIES: DISTANCES AND REDSHIFTS, SURVEYS},
-     year = 1996,
-    month = oct,
-   volume = 470,
-    pages = {172},
-      doi = {10.1086/177858},
-   adsurl = {http://adsabs.harvard.edu/abs/1996ApJ...470..172S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJS..172....1S,
-   author = {{Scoville}, N. and {Aussel}, H. and {Brusa}, M. and {Capak}, P. and 
-	{Carollo}, C.~M. and {Elvis}, M. and {Giavalisco}, M. and {Guzzo}, L. and 
-	{Hasinger}, G. and {Impey}, C. and {Kneib}, J.-P. and {LeFevre}, O. and 
-	{Lilly}, S.~J. and {Mobasher}, B. and {Renzini}, A. and {Rich}, R.~M. and 
-	{Sanders}, D.~B. and {Schinnerer}, E. and {Schminovich}, D. and 
-	{Shopbell}, P. and {Taniguchi}, Y. and {Tyson}, N.~D.},
-    title = "{The Cosmic Evolution Survey (COSMOS): Overview}",
-  journal = {\apjs},
-   eprint = {astro-ph/0612305},
- keywords = {Cosmology: Observations, Cosmology: Dark Matter, Galaxies: Evolution, Galaxies: Formation, Cosmology: Large-Scale Structure of Universe, Surveys},
-     year = 2007,
-    month = sep,
-   volume = 172,
-    pages = {1-8},
-      doi = {10.1086/516585},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJS..172....1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.435.1825M,
-   author = {{Metcalfe}, N. and {Farrow}, D.~J. and {Cole}, S. and {Draper}, P.~W. and 
-	{Norberg}, P. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Denneau}, L. and {Flewelling}, H. and {Kaiser}, N. and {Kudritzki}, R. and 
-	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
-	{Sweeney}, W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C.},
-    title = "{The Pan-STARRS1 Small Area Survey 2}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.6368},
- primaryClass = "astro-ph.CO",
- keywords = {methods: data analysis, techniques: image processing, catalogues, surveys},
-     year = 2013,
-    month = nov,
-   volume = 435,
-    pages = {1825-1839},
-      doi = {10.1093/mnras/stt1343},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.435.1825M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.437..748F,
-   author = {{Farrow}, D.~J. and {Cole}, S. and {Metcalfe}, N. and {Draper}, P.~W. and {Norberg}, P. and {Foucaud}, S. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Kaiser}, N. and {Kudritzki}, R.~P. and {Magnier}, E.~A. and {Price}, P.~A. and {Tonry}, J.~L. and {Waters}, C.},
-    title = "{Pan-STARRS1: Galaxy clustering in the Small Area Survey 2}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.6366},
- primaryClass = "astro-ph.CO",
- keywords = {methods: observational â surveys â large-scale structure of Universe},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {748-770},
-      doi = {10.1093/mnras/stt1933},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..748F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...746..128S,
-   author = {{Saglia}, R.~P. and {Tonry}, J.~L. and {Bender}, R. and {Greisel}, N. and 
-	{Seitz}, S. and {Senger}, R. and {Snigula}, J. and {Phleps}, S. and 
-	{Wilman}, D. and {Bailer-Jones}, C.~A.~L. and {Klement}, R.~J. and 
-	{Rix}, H.-W. and {Smith}, K. and {Green}, P.~J. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Heasley}, J.~N. and {Kaiser}, N. and 
-	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
-	{Stubbs}, C.~W. and {Wainscoat}, R.~J.},
-    title = "{The Photometric Classification Server for Pan-STARRS1}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1109.5080},
- keywords = {galaxies: active, galaxies: distances and redshifts, stars: general, surveys},
-     year = 2012,
-    month = feb,
-   volume = 746,
-      eid = {128},
-    pages = {128},
-      doi = {10.1088/0004-637X/746/2/128},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..128S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006A&A...445..805F,
-   author = {{Fasano}, G. and {Marmo}, C. and {Varela}, J. and {D'Onofrio}, M. and 
-	{Poggianti}, B.~M. and {Moles}, M. and {Pignatelli}, E. and 
-	{Bettoni}, D. and {Kj{\ae}rgaard}, P. and {Rizzi}, L. and {Couch}, W.~J. and 
-	{Dressler}, A.},
-    title = "{WINGS: a WIde-field Nearby Galaxy-cluster Survey. I. Optical imaging}",
-  journal = {\aap},
-   eprint = {astro-ph/0507247},
- keywords = {galaxies: photometry, galaxies: fundamental parameters, galaxies: evolution},
-     year = 2006,
-    month = jan,
-   volume = 445,
-    pages = {805-817},
-      doi = {10.1051/0004-6361:20053816},
-   adsurl = {http://cdsads.u-strasbg.fr/abs/2006A&A...445..805F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015ApJ...814...25C,
-   author = {{Cowperthwaite}, P.~S. and {Berger}, E.},
-    title = "{A Comprehensive Study of Detectability and Contamination in Deep Rapid Optical Searches for Gravitational Wave Counterparts}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1503.07869},
- primaryClass = "astro-ph.IM",
- keywords = {gamma-ray burst: general, gravitational waves, surveys, telescopes},
-     year = 2015,
-    month = nov,
-   volume = 814,
-      eid = {25},
-    pages = {25},
-      doi = {10.1088/0004-637X/814/1/25},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...814...25C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1992ApJ...395L..83N,
-   author = {{Narayan}, R. and {Paczynski}, B. and {Piran}, T.},
-    title = "{Gamma-ray bursts as the death throes of massive binary stars}",
-  journal = {\apjl},
-   eprint = {astro-ph/9204001},
- keywords = {Binary Stars, Black Holes (Astronomy), Gamma Ray Bursts, Massive Stars, Neutron Stars, Computational Astrophysics, Electron-Positron Pairs, Gravitational Waves, Neutrinos, Stellar Magnetic Fields, Stellar Models},
-     year = 1992,
-    month = aug,
-   volume = 395,
-    pages = {L83-L86},
-      doi = {10.1086/186493},
-   adsurl = {http://adsabs.harvard.edu/abs/1992ApJ...395L..83N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015arXiv150803608G,
-   author = {{Gehrels}, N. and {Cannizzo}, J.~K. and {Kanner}, J. and {Kasliwal}, M.~M. and 
-	{Nissanke}, S. and {Singer}, L.~P.},
-    title = "{Galaxy Strategy for LIGO-Virgo Gravitational Wave Counterpart Searches}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1508.03608},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2015,
-    month = aug,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150803608G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...767..124N,
-   author = {{Nissanke}, S. and {Kasliwal}, M. and {Georgieva}, A.},
-    title = "{Identifying Elusive Electromagnetic Counterparts to Gravitational Wave Mergers: An End-to-end Simulation}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1210.6362},
- primaryClass = "astro-ph.HE",
- keywords = {binaries: close, catalogs, gamma-ray burst: general, gravitational waves, stars: neutron, surveys},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {124},
-    pages = {124},
-      doi = {10.1088/0004-637X/767/2/124},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767..124N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...789L...5K,
-   author = {{Kasliwal}, M.~M. and {Nissanke}, S.},
-    title = "{On Discovering Electromagnetic Emission from Neutron Star Mergers: The Early Years of Two Gravitational Wave Detectors}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1309.1554},
- primaryClass = "astro-ph.HE",
- keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
-     year = 2014,
-    month = jul,
-   volume = 789,
-      eid = {L5},
-    pages = {L5},
-      doi = {10.1088/2041-8205/789/1/L5},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...789L...5K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJS..211....7A,
-   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
-	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
-	{Adams}, C. and {Adams}, T. and et al.},
-    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1310.2314},
- primaryClass = "astro-ph.IM",
- keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
-     year = 2014,
-    month = mar,
-   volume = 211,
-      eid = {7},
-    pages = {7},
-      doi = {10.1088/0067-0049/211/1/7},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.446.1115M,
-   author = {{Metzger}, B.~D. and {Bauswein}, A. and {Goriely}, S. and {Kasen}, D.
-	},
-    title = "{Neutron-powered precursors of kilonovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1409.0544},
- primaryClass = "astro-ph.HE",
- keywords = {gravitation, nuclear reactions, nucleosynthesis, abundances, binaries: close, stars: neutron, supernovae: general},
-     year = 2015,
-    month = jan,
-   volume = 446,
-    pages = {1115-1120},
-      doi = {10.1093/mnras/stu2225},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.1115M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013Natur.500..547T,
-   author = {{Tanvir}, N.~R. and {Levan}, A.~J. and {Fruchter}, A.~S. and 
-	{Hjorth}, J. and {Hounsell}, R.~A. and {Wiersema}, K. and {Tunnicliffe}, R.~L.
-	},
-    title = "{A `kilonova' associated with the short-duration {$\gamma$}-ray burst GRB 130603B}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1306.4971},
- primaryClass = "astro-ph.HE",
-     year = 2013,
-    month = aug,
-   volume = 500,
-    pages = {547-549},
-      doi = {10.1038/nature12505},
-   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.500..547T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.406.2650M,
-   author = {{Metzger}, B.~D. and {Mart{\'{\i}}nez-Pinedo}, G. and {Darbha}, S. and 
-	{Quataert}, E. and {Arcones}, A. and {Kasen}, D. and {Thomas}, R. and 
-	{Nugent}, P. and {Panov}, I.~V. and {Zinner}, N.~T.},
-    title = "{Electromagnetic counterparts of compact object mergers powered by the radioactive decay of r-process nuclei}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1001.5029},
- primaryClass = "astro-ph.HE",
- keywords = {gravitation, nuclear reactions, nucleosynthesis, abundances, binaries: close, gamma-ray burst: general, stars: neutron, supernovae: general},
-     year = 2010,
-    month = aug,
-   volume = 406,
-    pages = {2650-2662},
-      doi = {10.1111/j.1365-2966.2010.16864.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.406.2650M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...746...48M,
-   author = {{Metzger}, B.~D. and {Berger}, E.},
-    title = "{What is the Most Promising Electromagnetic Counterpart of a Neutron Star Binary Merger?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1108.6056},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, gravitational waves, stars: neutron, surveys},
-     year = 2012,
-    month = feb,
-   volume = 746,
-      eid = {48},
-    pages = {48},
-      doi = {10.1088/0004-637X/746/1/48},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746...48M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013PhRvD..87b2002A,
-   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
-	{Abbott}, T.~D. and {Abernathy}, M. and {Accadia}, T. and {Acernese}, F. and 
-	{Adams}, C. and {Adams}, T. and et al.},
-    title = "{Search for gravitational waves from binary black hole inspiral, merger, and ringdown in LIGO-Virgo data from 2009-2010}",
-  journal = {\prd},
-archivePrefix = "arXiv",
-   eprint = {1209.6533},
- primaryClass = "gr-qc",
- keywords = {Gravitational waves: theory, Gravitational-wave astrophysics, Gravitational radiation magnetic fields and other observations, Black holes},
-     year = 2013,
-    month = jan,
-   volume = 87,
-   number = 2,
-      eid = {022002},
-    pages = {022002},
-      doi = {10.1103/PhysRevD.87.022002},
-   adsurl = {http://adsabs.harvard.edu/abs/2013PhRvD..87b2002A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012PhRvD..85h2002A,
-   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abbott}, T.~D. and 
-	{Abernathy}, M. and {Accadia}, T. and {Acernese}, F. and {Adams}, C. and 
-	{Adhikari}, R. and {Affeldt}, C. and et al.},
-    title = "{Search for gravitational waves from low mass compact binary coalescence in LIGO's sixth science run and Virgo's science runs 2 and 3}",
-  journal = {\prd},
-archivePrefix = "arXiv",
-   eprint = {1111.7314},
- primaryClass = "gr-qc",
- keywords = {Wave generation and sources, Experimental tests of gravitational theories},
-     year = 2012,
-    month = apr,
-   volume = 85,
-   number = 8,
-      eid = {082002},
-    pages = {082002},
-      doi = {10.1103/PhysRevD.85.082002},
-   adsurl = {http://adsabs.harvard.edu/abs/2012PhRvD..85h2002A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010CQGra..27q3001A,
-   author = {{Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and {Abernathy}, M. and 
-	{Accadia}, T. and {Acernese}, F. and {Adams}, C. and {Adhikari}, R. and 
-	{Ajith}, P. and {Allen}, B. and et al.},
-    title = "{TOPICAL REVIEW:  Predictions for the rates of compact binary coalescences observable by ground-based gravitational-wave detectors}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1003.2480},
- primaryClass = "astro-ph.HE",
-     year = 2010,
-    month = sep,
-   volume = 27,
-   number = 17,
-      eid = {173001},
-    pages = {173001},
-      doi = {10.1088/0264-9381/27/17/173001},
-   adsurl = {http://adsabs.harvard.edu/abs/2010CQGra..27q3001A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012arXiv1203.2674T,
-   author = {{The LIGO Scientific Collaboration} and {The Virgo Collaboration}
-	},
-    title = "{Sensitivity Achieved by the LIGO and Virgo Gravitational Wave Detectors during LIGO's Sixth and Virgo's Second and Third Science Runs}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1203.2674},
- primaryClass = "gr-qc",
- keywords = {General Relativity and Quantum Cosmology},
-     year = 2012,
-    month = mar,
-   adsurl = {http://adsabs.harvard.edu/abs/2012arXiv1203.2674T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015CQGra..32g4001T,
-   author = {{The LIGO Scientific Collaboration} and {Aasi}, J. and {Abbott}, B.~P. and 
-	{Abbott}, R. and {Abbott}, T. and {Abernathy}, M.~R. and {Ackley}, K. and 
-	{Adams}, C. and {Adams}, T. and {Addesso}, P. and et al.},
-    title = "{Advanced LIGO}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1411.4547},
- primaryClass = "gr-qc",
-     year = 2015,
-    month = apr,
-   volume = 32,
-   number = 7,
-      eid = {074001},
-    pages = {074001},
-      doi = {10.1088/0264-9381/32/7/074001},
-   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32g4001T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015CQGra..32b4001A,
-   author = {{Acernese}, F. and {Agathos}, M. and {Agatsuma}, K. and {Aisa}, D. and 
-	{Allemandou}, N. and {Allocca}, A. and {Amarni}, J. and {Astone}, P. and 
-	{Balestri}, G. and {Ballardin}, G. and et al.},
-    title = "{Advanced Virgo: a second-generation interferometric gravitational wave detector}",
-  journal = {Classical and Quantum Gravity},
-archivePrefix = "arXiv",
-   eprint = {1408.3978},
- primaryClass = "gr-qc",
-     year = 2015,
-    month = jan,
-   volume = 32,
-   number = 2,
-      eid = {024001},
-    pages = {024001},
-      doi = {10.1088/0264-9381/32/2/024001},
-   adsurl = {http://adsabs.harvard.edu/abs/2015CQGra..32b4001A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJS..211....7A,
-   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
-	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
-	{Adams}, C. and {Adams}, T. and et al.},
-    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1310.2314},
- primaryClass = "astro-ph.IM",
- keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
-     year = 2014,
-    month = mar,
-   volume = 211,
-      eid = {7},
-    pages = {7},
-      doi = {10.1088/0067-0049/211/1/7},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015A&A...579A..40S,
-   author = {{Smartt}, S.~J. and {Valenti}, S. and {Fraser}, M. and {Inserra}, C. and 
-	{Young}, D.~R. and {Sullivan}, M. and {Pastorello}, A. and {Benetti}, S. and 
-	{Gal-Yam}, A. and {Knapic}, C. and {Molinaro}, M. and {Smareglia}, R. and 
-	{Smith}, K.~W. and {Taubenberger}, S. and {Yaron}, O. and {Anderson}, J.~P. and 
-	{Ashall}, C. and {Balland}, C. and {Baltay}, C. and {Barbarino}, C. and 
-	{Bauer}, F.~E. and {Baumont}, S. and {Bersier}, D. and {Blagorodnova}, N. and 
-	{Bongard}, S. and {Botticella}, M.~T. and {Bufano}, F. and {Bulla}, M. and 
-	{Cappellaro}, E. and {Campbell}, H. and {Cellier-Holzem}, F. and 
-	{Chen}, T.-W. and {Childress}, M.~J. and {Clocchiatti}, A. and 
-	{Contreras}, C. and {Dall'Ora}, M. and {Danziger}, J. and {de Jaeger}, T. and 
-	{De Cia}, A. and {Della Valle}, M. and {Dennefeld}, M. and {Elias-Rosa}, N. and 
-	{Elman}, N. and {Feindt}, U. and {Fleury}, M. and {Gall}, E. and 
-	{Gonzalez-Gaitan}, S. and {Galbany}, L. and {Morales Garoffolo}, A. and 
-	{Greggio}, L. and {Guillou}, L.~L. and {Hachinger}, S. and {Hadjiyska}, E. and 
-	{Hage}, P.~E. and {Hillebrandt}, W. and {Hodgkin}, S. and {Hsiao}, E.~Y. and 
-	{James}, P.~A. and {Jerkstrand}, A. and {Kangas}, T. and {Kankare}, E. and 
-	{Kotak}, R. and {Kromer}, M. and {Kuncarayakti}, H. and {Leloudas}, G. and 
-	{Lundqvist}, P. and {Lyman}, J.~D. and {Hook}, I.~M. and {Maguire}, K. and 
-	{Manulis}, I. and {Margheim}, S.~J. and {Mattila}, S. and {Maund}, J.~R. and 
-	{Mazzali}, P.~A. and {McCrum}, M. and {McKinnon}, R. and {Moreno-Raya}, M.~E. and 
-	{Nicholl}, M. and {Nugent}, P. and {Pain}, R. and {Pignata}, G. and 
-	{Phillips}, M.~M. and {Polshaw}, J. and {Pumo}, M.~L. and {Rabinowitz}, D. and 
-	{Reilly}, E. and {Romero-Ca{\~n}izales}, C. and {Scalzo}, R. and 
-	{Schmidt}, B. and {Schulze}, S. and {Sim}, S. and {Sollerman}, J. and 
-	{Taddia}, F. and {Tartaglia}, L. and {Terreran}, G. and {Tomasella}, L. and 
-	{Turatto}, M. and {Walker}, E. and {Walton}, N.~A. and {Wyrzykowski}, L. and 
-	{Yuan}, F. and {Zampieri}, L.},
-    title = "{PESSTO: survey description and products from the first data release by the Public ESO Spectroscopic Survey of Transient Objects}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1411.0299},
- primaryClass = "astro-ph.SR",
- keywords = {instrumentation: spectrographs, methods: data analysis, techniques: spectroscopic, surveys, supernovae: general},
-     year = 2015,
-    month = jul,
-   volume = 579,
-      eid = {A40},
-    pages = {A40},
-      doi = {10.1051/0004-6361/201425237},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...579A..40S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2015MNRAS.448.1206M,
-   author = {{McCrum}, M. and {Smartt}, S.~J. and {Rest}, A. and {Smith}, K. and 
-	{Kotak}, R. and {Rodney}, S.~A. and {Young}, D.~R. and {Chornock}, R. and 
-	{Berger}, E. and {Foley}, R.~J. and {Fraser}, M. and {Wright}, D. and 
-	{Scolnic}, D. and {Tonry}, J.~L. and {Urata}, Y. and {Huang}, K. and 
-	{Pastorello}, A. and {Botticella}, M.~T. and {Valenti}, S. and 
-	{Mattila}, S. and {Kankare}, E. and {Farrow}, D.~J. and {Huber}, M.~E. and 
-	{Stubbs}, C.~W. and {Kirshner}, R.~P. and {Bresolin}, F. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Draper}, P.~W. and 
-	{Flewelling}, H. and {Jedicke}, R. and {Kaiser}, N. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W. and 
-	{Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Selecting superluminous supernovae in faint galaxies from the first year of the Pan-STARRS1 Medium Deep Survey}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1402.1631},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: PS1-10pm, supernovae: individual: PS1-10ahf},
-     year = 2015,
-    month = apr,
-   volume = 448,
-    pages = {1206-1231},
-      doi = {10.1093/mnras/stv034},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.448.1206M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.449..451W,
-   author = {{Wright}, D.~E. and {Smartt}, S.~J. and {Smith}, K.~W. and {Miller}, P. and 
-	{Kotak}, R. and {Rest}, A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Flewelling}, H. and {Hodapp}, K.~W. and {Huber}, M. and {Jedicke}, R. and 
-	{Kaiser}, N. and {Metcalfe}, N. and {Price}, P.~A. and {Tonry}, J.~L. and 
-	{Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Machine learning for transient discovery in Pan-STARRS1 difference imaging}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1501.05470},
- primaryClass = "astro-ph.IM",
- keywords = {methods: data analysis, methods: statistical, techniques: image processing, surveys, supernovae: general},
-     year = 2015,
-    month = may,
-   volume = 449,
-    pages = {451-466},
-      doi = {10.1093/mnras/stv292},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449..451W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...756..158S,
-   author = {{Schlafly}, E.~F. and {Finkbeiner}, D.~P. and {Juri{\'c}}, M. and 
-	{Magnier}, E.~A. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Grav}, T. and {Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Martin}, N.~F. and {Morgan}, J.~S. and {Price}, P.~A. and {Rix}, H.-W. and 
-	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J.},
-    title = "{Photometric Calibration of the First 1.5 Years of the Pan-STARRS1 Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1201.2208},
- primaryClass = "astro-ph.IM",
- keywords = {atmospheric effects, methods: data analysis, surveys, techniques: photometric},
-     year = 2012,
-    month = sep,
-   volume = 756,
-      eid = {158},
-    pages = {158},
-      doi = {10.1088/0004-637X/756/2/158},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..158S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...810...25G,
-   author = {{Green}, G.~M. and {Schlafly}, E.~F. and {Finkbeiner}, D.~P. and 
-	{Rix}, H.-W. and {Martin}, N. and {Burgett}, W. and {Draper}, P.~W. and 
-	{Flewelling}, H. and {Hodapp}, K. and {Kaiser}, N. and {Kudritzki}, R.~P. and 
-	{Magnier}, E. and {Metcalfe}, N. and {Price}, P. and {Tonry}, J. and 
-	{Wainscoat}, R.},
-    title = "{A Three-dimensional Map of Milky Way Dust}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1507.01005},
- keywords = {dust, extinction, Galaxy: structure, methods: statistical},
-     year = 2015,
-    month = sep,
-   volume = 810,
-      eid = {25},
-    pages = {25},
-      doi = {10.1088/0004-637X/810/1/25},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...810...25G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...750...99T,
-   author = {{Tonry}, J.~L. and {Stubbs}, C.~W. and {Lykke}, K.~R. and {Doherty}, P. and 
-	{Shivvers}, I.~S. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A. and 
-	{Wainscoat}, R.~J.},
-    title = "{The Pan-STARRS1 Photometric System}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1203.0297},
- primaryClass = "astro-ph.IM",
- keywords = {atmospheric effects, instrumentation: photometers, surveys, techniques: photometric},
-     year = 2012,
-    month = may,
-   volume = 750,
-      eid = {99},
-    pages = {99},
-      doi = {10.1088/0004-637X/750/2/99},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...750...99T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015A&A...580L..15P,
-   author = {{Polshaw}, J. and {Kotak}, R. and {Chambers}, K.~C. and {Smartt}, S.~J. and 
-	{Taubenberger}, S. and {Kromer}, M. and {Gall}, E.~E.~E. and 
-	{Hillebrandt}, W. and {Huber}, M. and {Smith}, K.~W. and {Wainscoat}, R.~J.
-	},
-    title = "{A supernova distance to the anchor galaxy NGC 4258}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1509.00507},
- keywords = {supernovae: general, supernovae: individual: SN 2014bc, distance scale, galaxies: individual: NGC 4258},
-     year = 2015,
-    month = aug,
-   volume = 580,
-      eid = {L15},
-    pages = {L15},
-      doi = {10.1051/0004-6361/201526902},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...580L..15P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ApJS..182..543A,
-   author = {{Abazajian}, K.~N. and {Adelman-McCarthy}, J.~K. and {Ag{\"u}eros}, M.~A. and 
-	{Allam}, S.~S. and {Allende Prieto}, C. and {An}, D. and {Anderson}, K.~S.~J. and 
-	{Anderson}, S.~F. and {Annis}, J. and {Bahcall}, N.~A. and et al.},
-    title = "{The Seventh Data Release of the Sloan Digital Sky Survey}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {0812.0649},
- keywords = {atlases, catalogs, surveys},
-     year = 2009,
-    month = jun,
-   volume = 182,
-      eid = {543},
-    pages = {543-558},
-      doi = {10.1088/0067-0049/182/2/543},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJS..182..543A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJS..211....7A,
-   author = {{Aasi}, J. and {Abadie}, J. and {Abbott}, B.~P. and {Abbott}, R. and 
-	{Abbott}, T. and {Abernathy}, M.~R. and {Accadia}, T. and {Acernese}, F. and 
-	{Adams}, C. and {Adams}, T. and et al.},
-    title = "{First Searches for Optical Counterparts to Gravitational-wave Candidate Events}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1310.2314},
- primaryClass = "astro-ph.IM",
- keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys},
-     year = 2014,
-    month = mar,
-   volume = 211,
-      eid = {7},
-    pages = {7},
-      doi = {10.1088/0067-0049/211/1/7},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJS..211....7A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015IAUGA..2258303H,
-   author = {{Huber}, M. and {Carter Chambers}, K. and {Flewelling}, H. and 
-	{Smartt}, S.~J. and {Smith}, K. and {Wright}, D.},
-    title = "{The Pan-STARRS Survey for Transients (PSST)}",
-  journal = {IAU General Assembly},
-     year = 2015,
-    month = aug,
-   volume = 22,
-    pages = {58303},
-   adsurl = {http://adsabs.harvard.edu/abs/2015IAUGA..2258303H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...788...48S,
-   author = {{Shappee}, B.~J. and {Prieto}, J.~L. and {Grupe}, D. and {Kochanek}, C.~S. and 
-	{Stanek}, K.~Z. and {De Rosa}, G. and {Mathur}, S. and {Zu}, Y. and 
-	{Peterson}, B.~M. and {Pogge}, R.~W. and {Komossa}, S. and {Im}, M. and 
-	{Jencson}, J. and {Holoien}, T.~W.-S. and {Basu}, U. and {Beacom}, J.~F. and 
-	{Szczygie{\l}}, D.~M. and {Brimacombe}, J. and {Adams}, S. and 
-	{Campillay}, A. and {Choi}, C. and {Contreras}, C. and {Dietrich}, M. and 
-	{Dubberley}, M. and {Elphick}, M. and {Foale}, S. and {Giustini}, M. and 
-	{Gonzalez}, C. and {Hawkins}, E. and {Howell}, D.~A. and {Hsiao}, E.~Y. and 
-	{Koss}, M. and {Leighly}, K.~M. and {Morrell}, N. and {Mudd}, D. and 
-	{Mullins}, D. and {Nugent}, J.~M. and {Parrent}, J. and {Phillips}, M.~M. and 
-	{Pojmanski}, G. and {Rosing}, W. and {Ross}, R. and {Sand}, D. and 
-	{Terndrup}, D.~M. and {Valenti}, S. and {Walker}, Z. and {Yoon}, Y.
-	},
-    title = "{The Man behind the Curtain: X-Rays Drive the UV through NIR Variability in the 2013 Active Galactic Nucleus Outburst in NGC 2617}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.2241},
- primaryClass = "astro-ph.HE",
- keywords = {galaxies: active, galaxies: nuclei, galaxies: Seyfert, line: formation, line: profiles},
-     year = 2014,
-    month = jun,
-   volume = 788,
-      eid = {48},
-    pages = {48},
-      doi = {10.1088/0004-637X/788/1/48},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788...48S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ATel.4872....1D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A.~A. and 
-	{Graham}, M.~J. and {Williams}, R. and {Prieto}, J. and {Catelan}, M. and 
-	{Christensen}, E. and {Larson}, S.~M. and {Beshore}, E.~C.},
-    title = "{Catalina Supernova Candidates}",
-  journal = {The Astronomer's Telegram},
- keywords = {Optical, Supernovae, Transient},
-     year = 2013,
-    month = mar,
-   volume = 4872,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ATel.4872....1D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015PASA...32...10F,
-   author = {{Flesch}, E.~W.},
-    title = "{The Half Million Quasars (HMQ) Catalogue}",
-  journal = {\pasa},
-archivePrefix = "arXiv",
-   eprint = {1502.06303},
- keywords = {catalogues, quasars: general},
-     year = 2015,
-    month = mar,
-   volume = 32,
-      eid = {e010},
-    pages = {10},
-      doi = {10.1017/pasa.2015.10},
-   adsurl = {http://adsabs.harvard.edu/abs/2015PASA...32...10F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ATel.7153....1H,
-   author = {{Huber}, M. and {Chambers}, K.~C. and {Flewelling}, H. and {Willman}, M. and 
-	{Primak}, N. and {Schultz}, A. and {Gibson}, B. and {Magnier}, E. and 
-	{Waters}, C. and {Tonry}, J. and {Wainscoat}, R.~J. and {Smith}, K.~W. and 
-	{Wright}, D. and {Smartt}, S.~J. and {Foley}, R.~J. and {Jha}, S.~W. and 
-	{Rest}, A. and {Scolnic}, D.},
-    title = "{The Pan-STARRS Survey for Transients (PSST) - first announcement and public release}",
-  journal = {The Astronomer's Telegram},
- keywords = {Supernovae},
-     year = 2015,
-    month = feb,
-   volume = 7153,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ATel.7153....1H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001A&A...374...92V,
-   author = {{V{\'e}ron-Cetty}, M.-P. and {V{\'e}ron}, P.},
-    title = "{A catalogue of quasars and active nuclei: 10th edition}",
-  journal = {\aap},
- keywords = {QUASARS: GENERAL, GALAXIES: SEYFERT, BL LACERTAE OBJECTS: GENERAL},
-     year = 2001,
-    month = jul,
-   volume = 374,
-    pages = {92-94},
-      doi = {10.1051/0004-6361:20010718},
-   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...374...92V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003AJ....126..666I,
-   author = {{Inada}, N. and {Becker}, R.~H. and {Burles}, S. and {Castander}, F.~J. and 
-	{Eisenstein}, D. and {Hall}, P.~B. and {Johnston}, D.~E. and 
-	{Pindor}, B. and {Richards}, G.~T. and {Schechter}, P.~L. and 
-	{Sekiguchi}, M. and {White}, R.~L. and {Brinkmann}, J. and {Frieman}, J.~A. and 
-	{Kleinman}, S.~J. and {Krzesi{\'n}ski}, J. and {Long}, D.~C. and 
-	{Neilsen}, Jr., E.~H. and {Newman}, P.~R. and {Nitta}, A. and 
-	{Schneider}, D.~P. and {Snedden}, S. and {York}, D.~G.},
-    title = "{SDSS J092455.87+021924.9: An Interesting Gravitationally Lensed Quasar from the Sloan Digital Sky Survey}",
-  journal = {\aj},
-   eprint = {astro-ph/0304377},
- keywords = {Cosmology: Gravitational Lensing, quasars: individual (SDSS J092455.87+021924.9)},
-     year = 2003,
-    month = aug,
-   volume = 126,
-    pages = {666-674},
-      doi = {10.1086/375906},
-   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126..666I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008Natur.456..617K,
-   author = {{Krause}, O. and {Tanaka}, M. and {Usuda}, T. and {Hattori}, T. and 
-	{Goto}, M. and {Birkmann}, S. and {Nomoto}, K.},
-    title = "{Tycho Brahe's 1572 supernova as a standard typeIa as revealed by its light-echo spectrum}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0810.5106},
-     year = 2008,
-    month = dec,
-   volume = 456,
-    pages = {617-619},
-      doi = {10.1038/nature07608},
-   adsurl = {http://adsabs.harvard.edu/abs/2008Natur.456..617K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...780...96S,
-   author = {{Shiode}, J.~H. and {Quataert}, E.},
-    title = "{Setting the Stage for Circumstellar Interaction in Core-Collapse Supernovae. II. Wave-driven Mass Loss in Supernova Progenitors}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1308.5978},
- primaryClass = "astro-ph.SR",
- keywords = {stars: mass-loss, stars: winds, outflows, supernovae: general},
-     year = 2014,
-    month = jan,
-   volume = 780,
-      eid = {96},
-    pages = {96},
-      doi = {10.1088/0004-637X/780/1/96},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...96S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ApJ...697...29E,
-   author = {{Eriksen}, K.~A. and {Arnett}, D. and {McCarthy}, D.~W. and 
-	{Young}, P.},
-    title = "{The Reddening Toward Cassiopeia A's Supernova: Constraining the $^{56}$Ni Yield}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0902.4029},
- primaryClass = "astro-ph.SR",
- keywords = {dust, extinction, nuclear reactions, nucleosynthesis, abundances, supernova remnants, supernovae: individual: SN1680},
-     year = 2009,
-    month = may,
-   volume = 697,
-    pages = {29-36},
-      doi = {10.1088/0004-637X/697/1/29},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...697...29E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015Sci...347..526M,
-   author = {{Milisavljevic}, D. and {Fesen}, R.~A.},
-    title = "{The bubble-like interior of the core-collapse supernova remnant Cassiopeia A}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {1501.07283},
- primaryClass = "astro-ph.HE",
-     year = 2015,
-    month = jan,
-   volume = 347,
-    pages = {526-530},
-      doi = {10.1126/science.1261949},
-   adsurl = {http://adsabs.harvard.edu/abs/2015Sci...347..526M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ApJ...697..535P,
-   author = {{Patnaude}, D.~J. and {Fesen}, R.~A.},
-    title = "{Proper Motions and Brightness Variations of Nonthermal X-ray Filaments in the Cassiopeia A Supernova Remnant}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0808.0692},
- keywords = {cosmic rays, ISM: individual: Cassiopeia A, radiation mechanisms: non-thermal},
-     year = 2009,
-    month = may,
-   volume = 697,
-    pages = {535-543},
-      doi = {10.1088/0004-637X/697/1/535},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...697..535P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008ApJ...681L..81R,
-   author = {{Rest}, A. and {Welch}, D.~L. and {Suntzeff}, N.~B. and {Oaster}, L. and 
-	{Lanning}, H. and {Olsen}, K. and {Smith}, R.~C. and {Becker}, A.~C. and 
-	{Bergmann}, M. and {Challis}, P. and {Clocchiatti}, A. and {Cook}, K.~H. and 
-	{Damke}, G. and {Garg}, A. and {Huber}, M.~E. and {Matheson}, T. and 
-	{Minniti}, D. and {Prieto}, J.~L. and {Wood-Vasey}, W.~M.},
-    title = "{Scattered-Light Echoes from the Historical Galactic Supernovae Cassiopeia A and Tycho (SN 1572)}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0805.4607},
- keywords = {ISM: Individual: Name: Cassiopeia A, ISM: individual (Tycho), ISM: Supernova Remnants, Stars: Supernovae: General},
-     year = 2008,
-    month = jul,
-   volume = 681,
-    pages = {L81-L84},
-      doi = {10.1086/590427},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...681L..81R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ApJ...703..883H,
-   author = {{Hwang}, U. and {Laming}, J.~M.},
-    title = "{The Circumstellar Medium of Cassiopeia a Inferred from the Outer Ejecta Knot Properties}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0907.5177},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, supernova remnants, X-rays: individual: Cassiopeia A},
-     year = 2009,
-    month = sep,
-   volume = 703,
-    pages = {883-893},
-      doi = {10.1088/0004-637X/703/1/883},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...703..883H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...746..130H,
-   author = {{Hwang}, U. and {Laming}, J.~M.},
-    title = "{A Chandra X-Ray Survey of Ejecta in the Cassiopeia A Supernova Remnant}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1111.7316},
- primaryClass = "astro-ph.HE",
- keywords = {hydrodynamics, ISM: individual objects: Cassiopeia A, ISM: supernova remnants, X-rays: ISM},
-     year = 2012,
-    month = feb,
-   volume = 746,
-      eid = {130},
-    pages = {130},
-      doi = {10.1088/0004-637X/746/2/130},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...746..130H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012MNRAS.419.2054W,
-   author = {{Walmswell}, J.~J. and {Eldridge}, J.~J.},
-    title = "{Circumstellar dust as a solution to the red supergiant supernova progenitor problem}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1109.4637},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supergiants, supernovae: general},
-     year = 2012,
-    month = jan,
-   volume = 419,
-    pages = {2054-2062},
-      doi = {10.1111/j.1365-2966.2011.19860.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.2054W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2012ARA&A..50..107L,
-   author = {{Langer}, N.},
-    title = "{Presupernova Evolution of Massive Single and Binary Stars}",
-  journal = {\araa},
-archivePrefix = "arXiv",
-   eprint = {1206.5443},
- primaryClass = "astro-ph.SR",
-     year = 2012,
-    month = sep,
-   volume = 50,
-    pages = {107-164},
-      doi = {10.1146/annurev-astro-081811-125534},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ARA&A..50..107L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007ARA&A..45..177C,
-   author = {{Crowther}, P.~A.},
-    title = "{Physical Properties of Wolf-Rayet Stars}",
-  journal = {\araa},
-   eprint = {astro-ph/0610356},
-     year = 2007,
-    month = sep,
-   volume = 45,
-    pages = {177-219},
-      doi = {10.1146/annurev.astro.45.051806.110615},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ARA&A..45..177C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.428.1927C,
-   author = {{Crowther}, P.~A.},
-    title = "{On the association between core-collapse supernovae and H ii regions}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1210.1126},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, supernovae: general, H ii regions, galaxies: ISM},
-     year = 2013,
-    month = jan,
-   volume = 428,
-    pages = {1927-1943},
-      doi = {10.1093/mnras/sts145},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.428.1927C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1995ApJ...438..188M,
-   author = {{Massey}, P. and {Lang}, C.~C. and {Degioia-Eastwood}, K. and 
-	{Garmany}, C.~D.},
-    title = "{Massive stars in the field and associations of the magellanic clouds: The upper mass limit, the initial mass function, and a critical test of main-sequence stellar evolutionary theory}",
-  journal = {\apj},
- keywords = {Magellanic Clouds, Massive Stars, Spatial Distribution, Star Formation, Stellar Evolution, Astronomical Catalogs, Astronomical Photometry, Astronomical Spectroscopy, Metallicity, Stellar Mass},
-     year = 1995,
-    month = jan,
-   volume = 438,
-    pages = {188-217},
-      doi = {10.1086/175064},
-   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...438..188M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@PHDTHESIS{2011PhD_MFT,
-   author = {{Fraser}, M.},
-   school = {Queen's University of Belfast, (2011)},
-     year = 2011,
-    month = December,
-   adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.438..938M,
-   author = {{Maund}, J.~R. and {Reilly}, E. and {Mattila}, S.},
-    title = "{A late-time view of the progenitors of five Type IIP supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.7152},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supernovae: individual: 1999ev, supernovae: individual: 2003gd, supernovae: individual: 2004A, supernovae: individual: 2005cs, supernovae: individual: 2006my},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {938-958},
-      doi = {10.1093/mnras/stt2131},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..938M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010arXiv1011.5494M,
-   author = {{Mattila}, S. and {Smartt}, S. and {Maund}, J. and {Benetti}, S. and 
-	{Ergon}, M.},
-    title = "{The Disappearance of the Red Supergiant Progenitor of Supernova 2008bk}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1011.5494},
- primaryClass = "astro-ph.SR",
- keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Cosmology and Extragalactic Astrophysics},
-     year = 2010,
-    month = nov,
-   adsurl = {http://adsabs.harvard.edu/abs/2010arXiv1011.5494M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015MNRAS.446.1213K,
-   author = {{Kochanek}, C.~S.},
-    title = "{Constraints on core collapse from the black hole mass function}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1407.5622},
- primaryClass = "astro-ph.SR",
- keywords = {stars: black holes - supernovae: general},
-     year = 2015,
-    month = jan,
-   volume = 446,
-    pages = {1213-1222},
-      doi = {10.1093/mnras/stu2056},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.1213K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...785...28K,
-   author = {{Kochanek}, C.~S.},
-    title = "{Failed Supernovae Explain the Compact Remnant Mass Function}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1308.0013},
- primaryClass = "astro-ph.HE",
- keywords = {stars: evolution, stars: massive, supergiants, supernovae: general},
-     year = 2014,
-    month = apr,
-   volume = 785,
-      eid = {28},
-    pages = {28},
-      doi = {10.1088/0004-637X/785/1/28},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...28K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2003ASPC..295..217T,
-   author = {{Thakar}, A.~R. and {Szalay}, A.~S. and {Vandenberg}, J.~V. and 
-	{Gray}, J. and {Stoughton}, A.~S.},
-    title = "{Data Organization in the SDSS Data Release 1}",
-booktitle = {Astronomical Data Analysis Software and Systems XII},
-     year = 2003,
-   series = {Astronomical Society of the Pacific Conference Series},
-   volume = 295,
-   editor = {{Payne}, H.~E. and {Jedrzejewski}, R.~I. and {Hook}, R.~N.},
-    pages = {217},
-   adsurl = {http://adsabs.harvard.edu/abs/2003ASPC..295..217T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...768L..14P,
-   author = {{Piro}, A.~L.},
-    title = "{Taking the ''Un'' out of ''Unnovae''}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1304.1539},
- primaryClass = "astro-ph.HE",
- keywords = {black hole physics, shock waves, stars: evolution, supernovae: general},
-     year = 2013,
-    month = may,
-   volume = 768,
-      eid = {L14},
-    pages = {L14},
-      doi = {10.1088/2041-8205/768/1/L14},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...768L..14P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2014MNRAS.438.1577M,
-   author = {{Maund}, J.~R. and {Mattila}, S. and {Ramirez-Ruiz}, E. and 
-	{Eldridge}, J.~J.},
-    title = "{A new precise mass for the progenitor of the Type IIP SN 2008bk}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1308.4393},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2008bk},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {1577-1592},
-      doi = {10.1093/mnras/stt2296},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438.1577M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009ARA&A..47...63S,
-   author = {{Smartt}, S.~J.},
-    title = "{Progenitors of Core-Collapse Supernovae}",
-  journal = {\araa},
-archivePrefix = "arXiv",
-   eprint = {0908.0700},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = sep,
-   volume = 47,
-    pages = {63-106},
-      doi = {10.1146/annurev-astro-082708-101737},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ARA&A..47...63S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009MNRAS.395.1409S,
-   author = {{Smartt}, S.~J. and {Eldridge}, J.~J. and {Crockett}, R.~M. and 
-	{Maund}, J.~R.},
-    title = "{The death of massive stars - I. Observational constraints on the progenitors of Type II-P supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0809.0403},
- keywords = {stars: evolution , supergiants , supernovae: general , galaxies: stellar content},
-     year = 2009,
-    month = may,
-   volume = 395,
-    pages = {1409-1437},
-      doi = {10.1111/j.1365-2966.2009.14506.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.395.1409S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572L..61M,
-   author = {{Mazzali}, P.~A. and {Deng}, J. and {Maeda}, K. and {Nomoto}, K. and 
-	{Umeda}, H. and {Hatano}, K. and {Iwamoto}, K. and {Yoshii}, Y. and 
-	{Kobayashi}, Y. and {Minezaki}, T. and {Doi}, M. and {Enya}, K. and 
-	{Tomita}, H. and {Smartt}, S.~J. and {Kinugasa}, K. and {Kawakita}, H. and 
-	{Ayani}, K. and {Kawabata}, T. and {Yamaoka}, H. and {Qiu}, Y.~L. and 
-	{Motohara}, K. and {Gerardy}, C.~L. and {Fesen}, R. and {Kawabata}, K.~S. and 
-	{Iye}, M. and {Kashikawa}, N. and {Kosugi}, G. and {Ohyama}, Y. and 
-	{Takada-Hidai}, M. and {Zhao}, G. and {Chornock}, R. and {Filippenko}, A.~V. and 
-	{Benetti}, S. and {Turatto}, M.},
-    title = "{The Type Ic Hypernova SN 2002ap}",
-  journal = {\apjl},
- keywords = {Gamma Rays: Bursts, Line: Formation, Line: Identification, Nuclear Reactions, Nucleosynthesis, Abundances, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 2002ap},
-     year = 2002,
-    month = jun,
-   volume = 572,
-    pages = {L61-L65},
-      doi = {10.1086/341504},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572L..61M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000A&A...363..537R,
-   author = {{Rolleston}, W.~R.~J. and {Smartt}, S.~J. and {Dufton}, P.~L. and 
-	{Ryans}, R.~S.~I.},
-    title = "{The Galactic metallicity gradient}",
-  journal = {\aap},
- keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES, GALAXY: EVOLUTION},
-     year = 2000,
-    month = nov,
-   volume = 363,
-    pages = {537-554},
-   adsurl = {http://adsabs.harvard.edu/abs/2000A\&A...363..537R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997ApJ...481L..47S,
-   author = {{Smartt}, S.~J. and {Rolleston}, W.~R.~J.},
-    title = "{The Galactic Oxygen Abundance Gradient}",
-  journal = {\apjl},
- keywords = {GALAXY: ABUNDANCES, GALAXY: EVOLUTION, STARS: EARLY-TYPE, STARS: ABUNDANCES, STARS: ATMOSPHERES, Galaxy: Abundances, Galaxy: Evolution, Stars: Abundances, Stars: Atmospheres, Stars: Early-Type},
-     year = 1997,
-    month = may,
-   volume = 481,
-    pages = {L47-L50},
-      doi = {10.1086/310640},
-   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...481L..47S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000AJ....120.1579Y,
-   author = {{York}, D.~G. and {Adelman}, J. and {Anderson}, Jr., J.~E. and 
-	{Anderson}, S.~F. and {Annis}, J. and {Bahcall}, N.~A. and {Bakken}, J.~A. and 
-	{Barkhouser}, R. and {Bastian}, S. and {Berman}, E. and {Boroski}, W.~N. and 
-	{Bracker}, S. and {Briegel}, C. and {Briggs}, J.~W. and {Brinkmann}, J. and 
-	{Brunner}, R. and {Burles}, S. and {Carey}, L. and {Carr}, M.~A. and 
-	{Castander}, F.~J. and {Chen}, B. and {Colestock}, P.~L. and 
-	{Connolly}, A.~J. and {Crocker}, J.~H. and {Csabai}, I. and 
-	{Czarapata}, P.~C. and {Davis}, J.~E. and {Doi}, M. and {Dombeck}, T. and 
-	{Eisenstein}, D. and {Ellman}, N. and {Elms}, B.~R. and {Evans}, M.~L. and 
-	{Fan}, X. and {Federwitz}, G.~R. and {Fiscelli}, L. and {Friedman}, S. and 
-	{Frieman}, J.~A. and {Fukugita}, M. and {Gillespie}, B. and 
-	{Gunn}, J.~E. and {Gurbani}, V.~K. and {de Haas}, E. and {Haldeman}, M. and 
-	{Harris}, F.~H. and {Hayes}, J. and {Heckman}, T.~M. and {Hennessy}, G.~S. and 
-	{Hindsley}, R.~B. and {Holm}, S. and {Holmgren}, D.~J. and {Huang}, C.-h. and 
-	{Hull}, C. and {Husby}, D. and {Ichikawa}, S.-I. and {Ichikawa}, T. and 
-	{Ivezi{\'c}}, {\v Z}. and {Kent}, S. and {Kim}, R.~S.~J. and 
-	{Kinney}, E. and {Klaene}, M. and {Kleinman}, A.~N. and {Kleinman}, S. and 
-	{Knapp}, G.~R. and {Korienek}, J. and {Kron}, R.~G. and {Kunszt}, P.~Z. and 
-	{Lamb}, D.~Q. and {Lee}, B. and {Leger}, R.~F. and {Limmongkol}, S. and 
-	{Lindenmeyer}, C. and {Long}, D.~C. and {Loomis}, C. and {Loveday}, J. and 
-	{Lucinio}, R. and {Lupton}, R.~H. and {MacKinnon}, B. and {Mannery}, E.~J. and 
-	{Mantsch}, P.~M. and {Margon}, B. and {McGehee}, P. and {McKay}, T.~A. and 
-	{Meiksin}, A. and {Merelli}, A. and {Monet}, D.~G. and {Munn}, J.~A. and 
-	{Narayanan}, V.~K. and {Nash}, T. and {Neilsen}, E. and {Neswold}, R. and 
-	{Newberg}, H.~J. and {Nichol}, R.~C. and {Nicinski}, T. and 
-	{Nonino}, M. and {Okada}, N. and {Okamura}, S. and {Ostriker}, J.~P. and 
-	{Owen}, R. and {Pauls}, A.~G. and {Peoples}, J. and {Peterson}, R.~L. and 
-	{Petravick}, D. and {Pier}, J.~R. and {Pope}, A. and {Pordes}, R. and 
-	{Prosapio}, A. and {Rechenmacher}, R. and {Quinn}, T.~R. and 
-	{Richards}, G.~T. and {Richmond}, M.~W. and {Rivetta}, C.~H. and 
-	{Rockosi}, C.~M. and {Ruthmansdorfer}, K. and {Sandford}, D. and 
-	{Schlegel}, D.~J. and {Schneider}, D.~P. and {Sekiguchi}, M. and 
-	{Sergey}, G. and {Shimasaku}, K. and {Siegmund}, W.~A. and {Smee}, S. and 
-	{Smith}, J.~A. and {Snedden}, S. and {Stone}, R. and {Stoughton}, C. and 
-	{Strauss}, M.~A. and {Stubbs}, C. and {SubbaRao}, M. and {Szalay}, A.~S. and 
-	{Szapudi}, I. and {Szokoly}, G.~P. and {Thakar}, A.~R. and {Tremonti}, C. and 
-	{Tucker}, D.~L. and {Uomoto}, A. and {Vanden Berk}, D. and {Vogeley}, M.~S. and 
-	{Waddell}, P. and {Wang}, S.-i. and {Watanabe}, M. and {Weinberg}, D.~H. and 
-	{Yanny}, B. and {Yasuda}, N. and {SDSS Collaboration}},
-    title = "{The Sloan Digital Sky Survey: Technical Summary}",
-  journal = {\aj},
-   eprint = {astro-ph/0006396},
- keywords = {Cosmology: Observations, Instrumentation: Miscellaneous},
-     year = 2000,
-    month = sep,
-   volume = 120,
-    pages = {1579-1587},
-      doi = {10.1086/301513},
-   adsurl = {http://adsabs.harvard.edu/abs/2000AJ....120.1579Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015ApJ...813...44L,
-   author = {{Laevens}, B.~P.~M. and {Martin}, N.~F. and {Bernard}, E.~J. and 
-	{Schlafly}, E.~F. and {Sesar}, B. and {Rix}, H.-W. and {Bell}, E.~F. and 
-	{Ferguson}, A.~M.~N. and {Slater}, C.~T. and {Sweeney}, W.~E. and 
-	{Wyse}, R.~F.~G. and {Huxor}, A.~P. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Draper}, P.~W. and {Hodapp}, K.~A. and 
-	{Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and {Tonry}, J.~L. and 
-	{Wainscoat}, R.~J. and {Waters}, C.},
-    title = "{Sagittarius II, Draco II and Laevens 3: Three New Milky Way Satellites Discovered in the Pan-STARRS 1 3{$\pi$} Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1507.07564},
- keywords = {galaxies: dwarf, Galaxy: structure, globular clusters: general, Local Group},
-     year = 2015,
-    month = nov,
-   volume = 813,
-      eid = {44},
-    pages = {44},
-      doi = {10.1088/0004-637X/813/1/44},
-   adsurl = {http://adsabs.harvard.edu/abs/2015ApJ...813...44L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2016A&A...595A...4L,
-   author = {{Lindegren}, L. and {Lammers}, U. and {Bastian}, U. and {Hern{\'a}ndez}, J. and 
-	{Klioner}, S. and {Hobbs}, D. and {Bombrun}, A. and {Michalik}, D. and 
-	{Ramos-Lerate}, M. and {Butkevich}, A. and {Comoretto}, G. and 
-	{Joliet}, E. and {Holl}, B. and {Hutton}, A. and {Parsons}, P. and 
-	{Steidelm{\"u}ller}, H. and {Abbas}, U. and {Altmann}, M. and 
-	{Andrei}, A. and {Anton}, S. and {Bach}, N. and {Barache}, C. and 
-	{Becciani}, U. and {Berthier}, J. and {Bianchi}, L. and {Biermann}, M. and 
-	{Bouquillon}, S. and {Bourda}, G. and {Br{\"u}semeister}, T. and 
-	{Bucciarelli}, B. and {Busonero}, D. and {Carlucci}, T. and 
-	{Casta{\~n}eda}, J. and {Charlot}, P. and {Clotet}, M. and {Crosta}, M. and 
-	{Davidson}, M. and {de Felice}, F. and {Drimmel}, R. and {Fabricius}, C. and 
-	{Fienga}, A. and {Figueras}, F. and {Fraile}, E. and {Gai}, M. and 
-	{Garralda}, N. and {Geyer}, R. and {Gonz{\'a}lez-Vidal}, J.~J. and 
-	{Guerra}, R. and {Hambly}, N.~C. and {Hauser}, M. and {Jordan}, S. and 
-	{Lattanzi}, M.~G. and {Lenhardt}, H. and {Liao}, S. and {L{\"o}ffler}, W. and 
-	{McMillan}, P.~J. and {Mignard}, F. and {Mora}, A. and {Morbidelli}, R. and 
-	{Portell}, J. and {Riva}, A. and {Sarasso}, M. and {Serraller}, I. and 
-	{Siddiqui}, H. and {Smart}, R. and {Spagna}, A. and {Stampa}, U. and 
-	{Steele}, I. and {Taris}, F. and {Torra}, J. and {van Reeven}, W. and 
-	{Vecchiato}, A. and {Zschocke}, S. and {de Bruijne}, J. and 
-	{Gracia}, G. and {Raison}, F. and {Lister}, T. and {Marchant}, J. and 
-	{Messineo}, R. and {Soffel}, M. and {Osorio}, J. and {de Torres}, A. and 
-	{O'Mullane}, W.},
-    title = "{Gaia Data Release 1. Astrometry: one billion positions, two million proper motions and parallaxes}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1609.04303},
- keywords = {astrometry, parallaxes, proper motions, methods: data analysis, space vehicles: instruments, reference systems},
-     year = 2016,
-    month = nov,
-   volume = 595,
-      eid = {A4},
-    pages = {A4},
-      doi = {10.1051/0004-6361/201628714},
-   adsurl = {http://adsabs.harvard.edu/abs/2016A&A...595A...4L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2007A&A...473..603M,
-   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Vink}, J.~S. and {Puls}, J. and  {Evans}, C.~J. and {Smartt}, S.~J. and {Crowther}, P.~A. and 	{Herrero}, A. and {Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and 	{Villamariz}, M.~R.},
-    title = "{The empirical metallicity dependence of the mass-loss rate of O- and early B-type stars}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0708.2042},
- keywords = {stars: early-type, Magellanic Clouds, stars: winds, outflows, stars: evolution, stars: mass-loss},
-     year = 2007,
-    month = oct,
-   volume = 473,
-    pages = {603-614},
-      doi = {10.1051/0004-6361:20077545},
-   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...473..603M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007Natur.447..829P,
-   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
-	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
-	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
-	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
-	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
-	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
-	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
-	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
-	},
-    title = "{A giant outburst two years before the core-collapse of a massive star}",
-  journal = {\nat},
-   eprint = {astro-ph/0703663},
-     year = 2007,
-    month = jun,
-   volume = 447,
-    pages = {829-832},
-      doi = {10.1038/nature05825},
-   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004Natur.427..129M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.~P. and 
-	{Podsiadlowski}, P. and {Gilmore}, G.~F.},
-    title = "{The massive binary companion star to the progenitor of supernova 1993J}",
-  journal = {\nat},
-   eprint = {astro-ph/0401090},
-     year = 2004,
-    month = jan,
-   volume = 427,
-    pages = {129-131},
-   adsurl = {http://adsabs.harvard.edu/abs/2004Natur.427..129M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004Natur.431.1069R,
-   author = {{Ruiz-Lapuente}, P. and {Comeron}, F. and {M{\'e}ndez}, J. and 
-	{Canal}, R. and {Smartt}, S.~J. and {Filippenko}, A.~V. and 
-	{Kurucz}, R.~L. and {Chornock}, R. and {Foley}, R.~J. and {Stanishev}, V. and 
-	{Ibata}, R.},
-    title = "{The binary progenitor of Tycho Brahe's 1572 supernova}",
-  journal = {\nat},
-   eprint = {astro-ph/0410673},
-     year = 2004,
-    month = oct,
-   volume = 431,
-    pages = {1069-1072},
-      doi = {10.1038/nature03006},
-   adsurl = {http://adsabs.harvard.edu/abs/2004Natur.431.1069R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004Sci...303..499S,
-   author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Tout}, C.~A. and 
-	{Gilmore}, G.~F. and {Mattila}, S. and {Benn}, C.~R.},
-    title = "{Detection of a Red Supergiant Progenitor Star of a Type II-Plateau Supernova}",
-  journal = {Science},
-   eprint = {astro-ph/0401235},
-     year = 2004,
-    month = jan,
-   volume = 303,
-    pages = {499-503},
-      doi = {10.1126/science.1092967},
-   adsurl = {http://adsabs.harvard.edu/abs/2004Sci...303..499S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007A&A...466..277H,
-   author = {{Hunter}, I. and {Dufton}, P.~L. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
-	{Evans}, C.~J. and {Lennon}, D.~J. and {Trundle}, C. and {Hubeny}, I. and 
-	{Lanz}, T.},
-    title = "{The VLT-FLAMES survey of massive stars: surface chemical compositions of B-type stars in the Magellanic Clouds}",
-  journal = {\aap},
-   eprint = {astro-ph/0609710},
- keywords = {stars: early-type, stars: atmospheres, stars: abundances, Magellanic Clouds, galaxies: abundances},
-     year = 2007,
-    month = apr,
-   volume = 466,
-    pages = {277-300},
-      doi = {10.1051/0004-6361:20066148},
-   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...466..277H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...456..623E,
-   author = {{Evans}, C.~J. and {Lennon}, D.~J. and {Smartt}, S.~J. and {Trundle}, C.
-	},
-    title = "{The VLT-FLAMES survey of massive stars: observations centered on the Magellanic Cloud clusters NGC 330, NGC 346, NGC 2004, and the N11 region}",
-  journal = {\aap},
-   eprint = {astro-ph/0606405},
- keywords = {stars: early-type, stars: fundamental parameters, stars: emission-line, Be, binaries: spectroscopic, galaxies: Magellanic Clouds},
-     year = 2006,
-    month = sep,
-   volume = 456,
-    pages = {623-638},
-      doi = {10.1051/0004-6361:20064988},
-   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...456..623E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005A&A...437..467E,
-   author = {{Evans}, C.~J. and {Smartt}, S.~J. and {Lee}, J.-K. and {Lennon}, D.~J. and 
-	{Kaufer}, A. and {Dufton}, P.~L. and {Trundle}, C. and {Herrero}, A. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {de Koter}, A. and {Hamann}, W.-R. and 
-	{Hendry}, M.~A. and {Hunter}, I. and {Irwin}, M.~J. and {Korn}, A.~J. and 
-	{Kudritzki}, R.-P. and {Langer}, N. and {Mokiem}, M.~R. and 
-	{Najarro}, F. and {Pauldrach}, A.~W.~A. and {Przybilla}, N. and 
-	{Puls}, J. and {Ryans}, R.~S.~I. and {Urbaneja}, M.~A. and {Venn}, K.~A. and 
-	{Villamariz}, M.~R.},
-    title = "{The VLT-FLAMES survey of massive stars: Observations in the Galactic clusters NGC 3293, NGC 4755 and NGC 6611}",
-  journal = {\aap},
-   eprint = {astro-ph/0503655},
- keywords = {stars: early-type, stars: fundamental parameters, open clusters and associations: individual: NGC 3293, open clusters and associations: individual: NGC 4755, open clusters and associations: individual: NGC 6611},
-     year = 2005,
-    month = jul,
-   volume = 437,
-    pages = {467-482},
-      doi = {10.1051/0004-6361:20042446},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...437..467E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...547..765V,
-   author = {{Venn}, K.~A. and {Lennon}, D.~J. and {Kaufer}, A. and {McCarthy}, J.~K. and 
-	{Przybilla}, N. and {Kudritzki}, R.~P. and {Lemke}, M. and {Skillman}, E.~D. and 
-	{Smartt}, S.~J.},
-    title = "{First Stellar Abundances in NGC 6822 from VLT-UVES and Keck-HIRES Spectroscopy}",
-  journal = {\apj},
-   eprint = {astro-ph/0009213},
- keywords = {Galaxies: Abundances, Galaxies: Individual: NGC Number: NGC 6822, Galaxies: Stellar Content, Stars: Abundances, Stars: Atmospheres, Stars: Supergiants},
-     year = 2001,
-    month = feb,
-   volume = 547,
-    pages = {765-776},
-      doi = {10.1086/318424},
-   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...547..765V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...676L..29H,
-   author = {{Hunter}, I. and {Brott}, I. and {Lennon}, D.~J. and {Langer}, N. and 
-	{Dufton}, P.~L. and {Trundle}, C. and {Smartt}, S.~J. and {de Koter}, A. and 
-	{Evans}, C.~J. and {Ryans}, R.~S.~I.},
-    title = "{The VLT FLAMES Survey of Massive Stars: Rotation and Nitrogen Enrichment as the Key to Understanding Massive Star Evolution}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0711.2267},
- keywords = {Stars: Early-Type, Stars: Rotation, Stars: Abundances, Stars: Evolution, Galaxies: Magellanic Clouds},
-     year = 2008,
-    month = mar,
-   volume = 676,
-    pages = {L29-L32},
-      doi = {10.1086/587436},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...676L..29H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...456.1131M,
-   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
-	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
-	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
-	{Yoon}, S.-C.},
-    title = "{The VLT-FLAMES survey of massive stars: mass loss and rotation of early-type stars in the SMC}",
-  journal = {\aap},
-   eprint = {astro-ph/0606403},
- keywords = {galaxies: Magellanic Clouds, stars: atmospheres, stars:, early-type, stars: fundamental parameters, stars: mass-loss, stars: rotation},
-     year = 2006,
-    month = sep,
-   volume = 456,
-    pages = {1131-1151},
-      doi = {10.1051/0004-6361:20064995},
-   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...456.1131M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...479..541H,
-   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
-	{Evans}, C.~J.},
-    title = "{The VLT-FLAMES survey of massive stars: atmospheric parameters and rotational velocity distributions for B-type stars in the Magellanic Clouds}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0711.2264},
- keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: evolution, galaxies: Magellanic Clouds},
-     year = 2008,
-    month = feb,
-   volume = 479,
-    pages = {541-555},
-      doi = {10.1051/0004-6361:20078511},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...479..541H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009Natur.459..674V,
-   author = {{Valenti}, S. and {Pastorello}, A. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Mazzali}, P.~A. and {Manteca}, J. and {Taubenberger}, S. and 
-	{Elias-Rosa}, N. and {Ferrando}, R. and {Harutyunyan}, A. and 
-	{Hentunen}, V.~P. and {Nissinen}, M. and {Pian}, E. and {Turatto}, M. and 
-	{Zampieri}, L. and {Smartt}, S.~J.},
-    title = "{A low-energy core-collapse supernova without a hydrogen envelope}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0901.2074},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = jun,
-   volume = 459,
-    pages = {674-677},
-      doi = {10.1038/nature08023},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.459..674V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008Sci...321.1185M,
-   author = {{Mazzali}, P.~A. and {Valenti}, S. and {Della Valle}, M. and 
-	{Chincarini}, G. and {Sauer}, D.~N. and {Benetti}, S. and {Pian}, E. and 
-	{Piran}, T. and {D'Elia}, V. and {Elias-Rosa}, N. and {Margutti}, R. and 
-	{Pasotti}, F. and {Antonelli}, L.~A. and {Bufano}, F. and {Campana}, S. and 
-	{Cappellaro}, E. and {Covino}, S. and {D'Avanzo}, P. and {Fiore}, F. and 
-	{Fugazza}, D. and {Gilmozzi}, R. and {Hunter}, D. and {Maguire}, K. and 
-	{Maiorano}, E. and {Marziani}, P. and {Masetti}, N. and {Mirabel}, F. and 
-	{Navasardyan}, H. and {Nomoto}, K. and {Palazzi}, E. and {Pastorello}, A. and 
-	{Panagia}, N. and {Pellizza}, L.~J. and {Sari}, R. and {Smartt}, S. and 
-	{Tagliaferri}, G. and {Tanaka}, M. and {Taubenberger}, S. and 
-	{Tominaga}, N. and {Trundle}, C. and {Turatto}, M.},
-    title = "{The Metamorphosis of Supernova SN 2008D/XRF 080109: A Link Between Supernovae and GRBs/Hypernovae}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {0807.1695},
-     year = 2008,
-    month = aug,
-   volume = 321,
-    pages = {1185-},
-      doi = {10.1126/science.1158088},
-   adsurl = {http://adsabs.harvard.edu/abs/2008Sci...321.1185M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014Natur.512..282M,
-   author = {{Mackey}, J. and {Mohamed}, S. and {Gvaramadze}, V.~V. and {Kotak}, R. and 
-	{Langer}, N. and {Meyer}, D.~M.-A. and {Moriya}, T.~J. and {Neilson}, H.~R.
-	},
-    title = "{Interacting supernovae from photoionization-confined shells around red supergiant stars}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1408.2522},
- primaryClass = "astro-ph.SR",
-     year = 2014,
-    month = aug,
-   volume = 512,
-    pages = {282-285},
-      doi = {10.1038/nature13522},
-   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.512..282M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1998ApJ...497L..13G,
-   author = {{Galama}, T.~J. and {Groot}, P.~J. and {van Paradijs}, J. and 
-	{Kouveliotou}, C. and {Strom}, R.~G. and {Wijers}, R.~A.~M.~J. and 
-	{Tanvir}, N. and {Bloom}, J. and {Centurion}, M. and {Telting}, J. and 
-	{Rutten}, R.~G.~M. and {Smith}, P. and {Mackey}, C. and {Smartt}, S. and 
-	{Benn}, C. and {Heise}, J. and {in 't Zand}, J.},
-    title = "{Optical Follow-Up of GRB 970508}",
-  journal = {\apjl},
-   eprint = {astro-ph/9802160},
- keywords = {GAMMA RAYS: BURSTS, Gamma Rays: Bursts},
-     year = 1998,
-    month = apr,
-   volume = 497,
-    pages = {L13-L16},
-      doi = {10.1086/311268},
-   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...497L..13G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011A&A...530A.108E,
-   author = {{Evans}, C.~J. and {Taylor}, W.~D. and {H{\'e}nault-Brunet}, V. and 
-	{Sana}, H. and {de Koter}, A. and {Sim{\'o}n-D{\'{\i}}az}, S. and 
-	{Carraro}, G. and {Bagnoli}, T. and {Bastian}, N. and {Bestenlehner}, J.~M. and 
-	{Bonanos}, A.~Z. and {Bressert}, E. and {Brott}, I. and {Campbell}, M.~A. and 
-	{Cantiello}, M. and {Clark}, J.~S. and {Costa}, E. and {Crowther}, P.~A. and 
-	{de Mink}, S.~E. and {Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P.~R. and 
-	{Friedrich}, K. and {Garcia}, M. and {Gieles}, M. and {Gr{\"a}fener}, G. and 
-	{Herrero}, A. and {Howarth}, I.~D. and {Izzard}, R.~G. and {Langer}, N. and 
-	{Lennon}, D.~J. and {Ma{\'{\i}}z Apell{\'a}niz}, J. and {Markova}, N. and 
-	{Najarro}, F. and {Puls}, J. and {Ramirez}, O.~H. and {Sab{\'{\i}}n-Sanjuli{\'a}n}, C. and 
-	{Smartt}, S.~J. and {Stroud}, V.~E. and {van Loon}, J.~T. and 
-	{Vink}, J.~S. and {Walborn}, N.~R.},
-    title = "{The VLT-FLAMES Tarantula Survey. I. Introduction and observational overview}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1103.5386},
- primaryClass = "astro-ph.SR",
- keywords = {open clusters and associations: individual: 30 Doradus, stars: early-type, stars: fundamental parameters, binaries: spectroscopic, stars: Wolf-Rayet},
-     year = 2011,
-    month = jun,
-   volume = 530,
-      eid = {A108},
-    pages = {A108},
-      doi = {10.1051/0004-6361/201116782},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530A.108E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007A&A...465.1003M,
-   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
-	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
-	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
-	{Vink}, J.~S.},
-    title = "{The VLT-FLAMES survey of massive stars: wind properties and evolution of hot massive stars in the Large Magellanic Cloud}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0704.1113},
- keywords = {galaxies: Magellanic Clouds, stars: atmospheres, stars:, early-type, stars: fundamental parameters, stars: mass loss, stars: evolution},
-     year = 2007,
-    month = apr,
-   volume = 465,
-    pages = {1003-1019},
-      doi = {10.1051/0004-6361:20066489},
-   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...465.1003M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009MNRAS.394.2266P,
-   author = {{Pastorello}, A. and {Valenti}, S. and {Zampieri}, L. and {Navasardyan}, H. and 
-	{Taubenberger}, S. and {Smartt}, S.~J. and {Arkharov}, A.~A. and 
-	{B{\"a}rnbantner}, O. and {Barwig}, H. and {Benetti}, S. and 
-	{Birtwhistle}, P. and {Botticella}, M.~T. and {Cappellaro}, E. and 
-	{Del Principe}, M. and {di Mille}, F. and {di Rico}, G. and 
-	{Dolci}, M. and {Elias-Rosa}, N. and {Efimova}, N.~V. and {Fiedler}, M. and 
-	{Harutyunyan}, A. and {H{\"o}flich}, P.~A. and {Kloehr}, W. and 
-	{Larionov}, V.~M. and {Lorenzi}, V. and {Maund}, J.~R. and {Napoleone}, N. and 
-	{Ragni}, M. and {Richmond}, M. and {Ries}, C. and {Spiro}, S. and 
-	{Temporin}, S. and {Turatto}, M. and {Wheeler}, J.~C.},
-    title = "{SN 2005cs in M51 - II. Complete evolution in the optical and the near-infrared}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0901.2075},
- primaryClass = "astro-ph.GA",
- keywords = {supernovae: general , supernovae: individual: SN 2005cs , supernovae: individual: SN 1997D , supernovae: individual: SN 1999br , supernovae: individual: SN 2003Z , galaxies: individual: M51},
-     year = 2009,
-    month = apr,
-   volume = 394,
-    pages = {2266-2282},
-      doi = {10.1111/j.1365-2966.2009.14505.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.394.2266P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001MNRAS.325..907F,
-   author = {{Fassia}, A. and {Meikle}, W.~P.~S. and {Chugai}, N. and {Geballe}, T.~R. and 
-	{Lundqvist}, P. and {Walton}, N.~A. and {Pollacco}, D. and {Veilleux}, S. and 
-	{Wright}, G.~S. and {Pettini}, M. and {Kerr}, T. and {Puchnarewicz}, E. and 
-	{Puxley}, P. and {Irwin}, M. and {Packham}, C. and {Smartt}, S.~J. and 
-	{Harmer}, D.},
-    title = "{Optical and infrared spectroscopy of the type IIn SN 1998S: days 3-127}",
-  journal = {\mnras},
-   eprint = {astro-ph/0011340},
- keywords = {CIRCUMSTELLAR MATTER, SUPERNOVAE: INDIVIDUAL: SN 1998S},
-     year = 2001,
-    month = aug,
-   volume = 325,
-    pages = {907-930},
-      doi = {10.1046/j.1365-8711.2001.04282.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.325..907F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009MNRAS.398.1041B,
-   author = {{Botticella}, M.~T. and {Pastorello}, A. and {Smartt}, S.~J. and 
-	{Meikle}, W.~P.~S. and {Benetti}, S. and {Kotak}, R. and {Cappellaro}, E. and 
-	{Crockett}, R.~M. and {Mattila}, S. and {Sereno}, M. and {Patat}, F. and 
-	{Tsvetkov}, D. and {van Loon}, J.~T. and {Abraham}, D. and {Agnoletto}, I. and 
-	{Arbour}, R. and {Benn}, C. and {di Rico}, G. and {Elias-Rosa}, N. and 
-	{Gorshanov}, D.~L. and {Harutyunyan}, A. and {Hunter}, D. and 
-	{Lorenzi}, V. and {Keenan}, F.~P. and {Maguire}, K. and {Mendez}, J. and 
-	{Mobberley}, M. and {Navasardyan}, H. and {Ries}, C. and {Stanishev}, V. and 
-	{Taubenberger}, S. and {Trundle}, C. and {Turatto}, M. and {Volkov}, I.~M.
-	},
-    title = "{SN 2008S: an electron-capture SN from a super-AGB progenitor?}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0903.1286},
- primaryClass = "astro-ph.SR",
- keywords = {stars: AGB and post-AGB , stars: general , supernovae: general , supernovae: individual: SN 2008S , supernovae: individual: NGC300 OT2008-1 , supernovae: individual: M85 OT2006-1},
-     year = 2009,
-    month = sep,
-   volume = 398,
-    pages = {1041-1068},
-      doi = {10.1111/j.1365-2966.2009.15082.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.398.1041B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009A&A...496..841H,
-   author = {{Hunter}, I. and {Brott}, I. and {Langer}, N. and {Lennon}, D.~J. and 
-	{Dufton}, P.~L. and {Howarth}, I.~D. and {Ryans}, R.~S.~I. and 
-	{Trundle}, C. and {Evans}, C.~J. and {de Koter}, A. and {Smartt}, S.~J.
-	},
-    title = "{The VLT-FLAMES survey of massive stars: constraints on stellar evolution from the chemical compositions of rapidly rotating Galactic and Magellanic Cloud B-type stars}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0901.3853},
- primaryClass = "astro-ph.SR",
- keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: abundances, stars: evolution, galaxies: Magellanic Clouds},
-     year = 2009,
-    month = mar,
-   volume = 496,
-    pages = {841-853},
-      doi = {10.1051/0004-6361/200809925},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...496..841H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...483L..47T,
-   author = {{Trundle}, C. and {Kotak}, R. and {Vink}, J.~S. and {Meikle}, W.~P.~S.
-	},
-    title = "{SN 2005 gj: evidence for LBV supernovae progenitors?}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0804.2392},
- keywords = {stars: supernovae: general, stars: supernovae: individual: SN 2005gj, stars: supernovae: individual: SN 2002ic, stars: circumstellar matter, stars: evolution, stars: winds, outflow},
-     year = 2008,
-    month = jun,
-   volume = 483,
-    pages = {L47-L50},
-      doi = {10.1051/0004-6361:200809755},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...483L..47T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007A&A...471..625T,
-   author = {{Trundle}, C. and {Dufton}, P.~L. and {Hunter}, I. and {Evans}, C.~J. and 
-	{Lennon}, D.~J. and {Smartt}, S.~J. and {Ryans}, R.~S.~I.},
-    title = "{The VLT-FLAMES survey of massive stars: evolution of surface N abundances and effective temperature scales in the Galaxy and Magellanic Clouds}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0706.1731},
- keywords = {stars: atmospheres, stars: early-type, galaxies: abundances, stars: fundamental parameters, stars: evolution},
-     year = 2007,
-    month = aug,
-   volume = 471,
-    pages = {625-643},
-      doi = {10.1051/0004-6361:20077838},
-   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...471..625T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.364L..33M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Danziger}, I.~J.},
-    title = "{The progenitor of SN 2005cs in the Whirlpool Galaxy}",
-  journal = {\mnras},
-   eprint = {astro-ph/0507502},
- keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2005cs, galaxies: individual: M51},
-     year = 2005,
-    month = nov,
-   volume = 364,
-    pages = {L33-L37},
-      doi = {10.1111/j.1745-3933.2005.00100.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.364L..33M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.359..906H,
-   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Maund}, J.~R. and {Pastorello}, A. and 
-	{Zampieri}, L. and {Benetti}, S. and {Turatto}, M. and {Cappellaro}, E. and 
-	{Meikle}, W.~P.~S. and {Kotak}, R. and {Irwin}, M.~J. and {Jonker}, P.~G. and 
-	{Vermaas}, L. and {Peletier}, R.~F. and {van Woerden}, H. and 
-	{Exter}, K.~M. and {Pollacco}, D.~L. and {Leon}, S. and {Verley}, S. and 
-	{Benn}, C.~R. and {Pignata}, G.},
-    title = "{A study of the Type II-P supernova 2003gd in M74}",
-  journal = {\mnras},
-   eprint = {astro-ph/0501341},
- keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2003gd, galaxies: distances and redshifts, galaxies: individual: M74},
-     year = 2005,
-    month = may,
-   volume = 359,
-    pages = {906-926},
-      doi = {10.1111/j.1365-2966.2005.08928.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.359..906H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010A&A...512A..70Y,
-   author = {{Young}, D.~R. and {Smartt}, S.~J. and {Valenti}, S. and {Pastorello}, A. and 
-	{Benetti}, S. and {Benn}, C.~R. and {Bersier}, D. and {Botticella}, M.~T. and 
-	{Corradi}, R.~L.~M. and {Harutyunyan}, A.~H. and {Hrudkova}, M. and 
-	{Hunter}, I. and {Mattila}, S. and {de Mooij}, E.~J.~W. and 
-	{Navasardyan}, H. and {Snellen}, I.~A.~G. and {Tanvir}, N.~R. and 
-	{Zampieri}, L.},
-    title = "{Two type Ic supernovae in low-metallicity, dwarf galaxies: diversity of explosions}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0910.2248},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: individual: SN 2007bg, galaxies: dwarf, Galaxy: abundances, supernovae: individual: SN 2007bi},
-     year = 2010,
-    month = mar,
-   volume = 512,
-      eid = {A70},
-    pages = {A70},
-      doi = {10.1051/0004-6361/200913004},
-   adsurl = {http://adsabs.harvard.edu/abs/2010A&A...512A..70Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005A&A...443..911C,
-   author = {{Calchi Novati}, S. and {Paulin-Henriksson}, S. and {An}, J. and 
-	{Baillon}, P. and {Belokurov}, V. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
-	{Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and {Gould}, A. and 
-	{Hewett}, P. and {Jetzer}, P. and {Kaplan}, J. and {Kerins}, E. and 
-	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y. and {Weston}, M.~J. and 
-	{Point-Agape Collaboration}},
-    title = "{POINT-AGAPE pixel lensing survey of M 31. Evidence for a MACHO contribution to galactic halos}",
-  journal = {\aap},
-   eprint = {astro-ph/0504188},
- keywords = {galaxies: halos, gravitational lensing, dark matter, galaxies: individual: M 31},
-     year = 2005,
-    month = dec,
-   volume = 443,
-    pages = {911-928},
-      doi = {10.1051/0004-6361:20053135},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...443..911C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000MNRAS.318.1093F,
-   author = {{Fassia}, A. and {Meikle}, W.~P.~S. and {Vacca}, W.~D. and {Kemp}, S.~N. and 
-	{Walton}, N.~A. and {Pollacco}, D.~L. and {Smartt}, S. and {Oscoz}, A. and 
-	{Arag{\'o}n-Salamanca}, A. and {Bennett}, S. and {Hawarden}, T.~G. and 
-	{Alonso}, A. and {Alcalde}, D. and {Pedrosa}, A. and {Telting}, J. and 
-	{Arevalo}, M.~J. and {Deeg}, H.~J. and {Garz{\'o}n}, F. and 
-	{G{\'o}mez-Rold{\'a}n}, A. and {G{\'o}mez}, G. and {Guti{\'e}rrez}, C. and 
-	{L{\'o}pez}, S. and {Rozas}, M. and {Serra-Ricart}, M. and {Zapatero-Osorio}, M.~R.
-	},
-    title = "{Optical and infrared photometry of the Type IIn SN 1998S: days 11-146}",
-  journal = {\mnras},
-   eprint = {astro-ph/0006080},
- keywords = {CIRCUMSTELLAR MATTER, SUPERNOVAE: INDIVIDUAL: SN 19985, INFRARED: STARS},
-     year = 2000,
-    month = nov,
-   volume = 318,
-    pages = {1093-1104},
-      doi = {10.1046/j.1365-8711.2000.03797.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2000MNRAS.318.1093F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...724L..16P,
-   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
-	{Maguire}, K. and {Fraser}, M. and {Smith}, K. and {Kotak}, R. and 
-	{Magill}, L. and {Valenti}, S. and {Young}, D.~R. and {Gezari}, S. and 
-	{Bresolin}, F. and {Kudritzki}, R. and {Howell}, D.~A. and {Rest}, A. and 
-	{Metcalfe}, N. and {Mattila}, S. and {Kankare}, E. and {Huang}, K.~Y. and 
-	{Urata}, Y. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Dombeck}, T. and 
-	{Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
-	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
-	{Rhoads}, P.~H. and {Siegmund}, W.~A. and {Stubbs}, C.~W. and 
-	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waterson}, M.~F. and {Waters}, C. and {Wynn-Williams}, C.~G.
-	},
-    title = "{Ultra-bright Optical Transients are Linked with Type Ic Supernovae}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1008.2674},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2010gx SCP-06F6 SN 2005ap},
-     year = 2010,
-    month = nov,
-   volume = 724,
-    pages = {L16-L21},
-      doi = {10.1088/2041-8205/724/1/L16},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...724L..16P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...739L..37M,
-   author = {{Maund}, J.~R. and {Fraser}, M. and {Ergon}, M. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Sollerman}, J. and {Benetti}, S. and {Botticella}, M.-T. and 
-	{Bufano}, F. and {Danziger}, I.~J. and {Kotak}, R. and {Magill}, L. and 
-	{Stephens}, A.~W. and {Valenti}, S.},
-    title = "{The Yellow Supergiant Progenitor of the Type II Supernova 2011dh in M51}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1106.2565},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2011dh},
-     year = 2011,
-    month = oct,
-   volume = 739,
-      eid = {L37},
-    pages = {L37},
-      doi = {10.1088/2041-8205/739/2/L37},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...739L..37M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002A&A...395..519T,
-   author = {{Trundle}, C. and {Dufton}, P.~L. and {Lennon}, D.~J. and {Smartt}, S.~J. and 
-	{Urbaneja}, M.~A.},
-    title = "{Chemical composition of B-type supergiants in the OB 8, OB 10, OB 48, OB 78 associations of M 31}",
-  journal = {\aap},
-   eprint = {astro-ph/0207198},
- keywords = {galaxies: individual: M 31},
-     year = 2002,
-    month = nov,
-   volume = 395,
-    pages = {519-533},
-      doi = {10.1051/0004-6361:20021044},
-   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...395..519T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012Natur.485..217G,
-   author = {{Gezari}, S. and {Chornock}, R. and {Rest}, A. and {Huber}, M.~E. and 
-	{Forster}, K. and {Berger}, E. and {Challis}, P.~J. and {Neill}, J.~D. and 
-	{Martin}, D.~C. and {Heckman}, T. and {Lawrence}, A. and {Norman}, C. and 
-	{Narayan}, G. and {Foley}, R.~J. and {Marion}, G.~H. and {Scolnic}, D. and 
-	{Chomiuk}, L. and {Soderberg}, A. and {Smith}, K. and {Kirshner}, R.~P. and 
-	{Riess}, A.~G. and {Smartt}, S.~J. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
-	{Wood-Vasey}, W.~M. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Grav}, T. and {Heasley}, J.~N. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Magnier}, E.~A. and {Morgan}, J.~S. and {Price}, P.~A.},
-    title = "{An ultraviolet-optical flare from the tidal disruption of a helium-rich stellar core}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1205.0252},
- primaryClass = "astro-ph.CO",
-     year = 2012,
-    month = may,
-   volume = 485,
-    pages = {217-220},
-      doi = {10.1038/nature10990},
-   adsurl = {http://adsabs.harvard.edu/abs/2012Natur.485..217G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.391L...5C,
-   author = {{Crockett}, R.~M. and {Eldridge}, J.~J. and {Smartt}, S.~J. and 
-	{Pastorello}, A. and {Gal-Yam}, A. and {Fox}, D.~B. and {Leonard}, D.~C. and 
-	{Kasliwal}, M.~M. and {Mattila}, S. and {Maund}, J.~R. and {Stephens}, A.~W. and 
-	{Danziger}, I.~J.},
-    title = "{The type IIb SN 2008ax: the nature of the progenitor}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0805.1913},
- keywords = {supernovae: individual: SN 2008ax, galaxies: individual: NGC 4490},
-     year = 2008,
-    month = nov,
-   volume = 391,
-    pages = {L5-L9},
-      doi = {10.1111/j.1745-3933.2008.00540.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.391L...5C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007AJ....133...58K,
-   author = {{Krisciunas}, K. and {Garnavich}, P.~M. and {Stanishev}, V. and 
-	{Suntzeff}, N.~B. and {Prieto}, J.~L. and {Espinoza}, J. and 
-	{Gonzalez}, D. and {Salvo}, M.~E. and {Elias de la Rosa}, N. and 
-	{Smartt}, S.~J. and {Maund}, J.~R. and {Kudritzki}, R.-P.},
-    title = "{The Type Ia Supernova 2004S, a Clone of SN 2001el, and the Optimal Photometric Bands for Extinction Estimation}",
-  journal = {\aj},
-   eprint = {astro-ph/0609268},
- keywords = {dust, extinction, supernovae: individual: SN 2004S: SN 2001el, techniques: photometric},
-     year = 2007,
-    month = jan,
-   volume = 133,
-    pages = {58-72},
-      doi = {10.1086/509126},
-   adsurl = {http://adsabs.harvard.edu/abs/2007AJ....133...58K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003A&A...405...15P,
-   author = {{Paulin-Henriksson}, S. and {Baillon}, P. and {Bouquet}, A. and 
-	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
-	{Kaplan}, J. and {Kerins}, E. and {Le Du}, Y. and {Melchior}, A.-L. and 
-	{Smartt}, S.~J. and {Valls-Gabaud}, D. and {POINT-AGAPE Collaboration}
-	},
-    title = "{The POINT-AGAPE survey: 4 high signal-to-noise microlensing candidates detected towards M 31}",
-  journal = {\aap},
-   eprint = {astro-ph/0207025},
- keywords = {galaxies: halo, galaxies: individual: M 31, gravitational lensing, dark matter},
-     year = 2003,
-    month = jul,
-   volume = 405,
-    pages = {15-21},
-      doi = {10.1051/0004-6361:20030519},
-   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...405...15P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...457..265D,
-   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Lee}, J.~K. and {Ryans}, R.~S.~I. and 
-	{Hunter}, I. and {Evans}, C.~J. and {Herrero}, A. and {Trundle}, C. and 
-	{Lennon}, D.~J. and {Irwin}, M.~J. and {Kaufer}, A.},
-    title = "{The VLT-FLAMES survey of massive stars: stellar parameters and rotational velocities in NGC 3293, NGC 4755 and NGC 6611}",
-  journal = {\aap},
-   eprint = {astro-ph/0606409},
- keywords = {stars: early-type, stars: fundamental parameters, stars: rotation, Hertzsprung-Russell (HR) and C-M diagrams, stars: evolution},
-     year = 2006,
-    month = oct,
-   volume = 457,
-    pages = {265-280},
-      doi = {10.1051/0004-6361:20065392},
-   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...457..265D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.389..955P,
-   author = {{Pastorello}, A. and {Kasliwal}, M.~M. and {Crockett}, R.~M. and 
-	{Valenti}, S. and {Arbour}, R. and {Itagaki}, K. and {Kaspi}, S. and 
-	{Gal-Yam}, A. and {Smartt}, S.~J. and {Griffith}, R. and {Maguire}, K. and 
-	{Ofek}, E.~O. and {Seymour}, N. and {Stern}, D. and {Wiethoff}, W.
-	},
-    title = "{The Type IIb SN 2008ax: spectral and light curve evolution}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0805.1914},
- keywords = {supernovae: general , supernovae: individual: SN 2008ax , supernovae: individual: SN 1993J , galaxies: individual: NGC 4490},
-     year = 2008,
-    month = sep,
-   volume = 389,
-    pages = {955-966},
-      doi = {10.1111/j.1365-2966.2008.13618.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..955P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001MNRAS.323...13K,
-   author = {{Kerins}, E. and {Carr}, B.~J. and {Evans}, N.~W. and {Hewett}, P. and 
-	{Lastennet}, E. and {Le Du}, Y. and {Melchior}, A.-L. and {Smartt}, S.~J. and 
-	{Valls-Gabaud}, D.},
-    title = "{Theory of pixel lensing towards M31 - I. The density contribution and mass of MACHOs}",
-  journal = {\mnras},
-   eprint = {astro-ph/0002256},
- keywords = {GRAVITATIONAL LENSING, GALAXY: HALO, GALAXIES: HALOES, GALAXIES: INDIVIDUAL: M31, DARK MATTER},
-     year = 2001,
-    month = may,
-   volume = 323,
-    pages = {13-33},
-      doi = {10.1046/j.1365-8711.2001.04088.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.323...13K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.360..288M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
-    title = "{Hubble Space Telescope imaging of the progenitor sites of six nearby core-collapse supernovae}",
-  journal = {\mnras},
-   eprint = {astro-ph/0501323},
- keywords = {supernovae: individual: 1999an, supernovae: individual: 1999br, supernovae: individual: 1999ev, supernovae: individual: 2000ds, supernovae: individual: 2000ew, supernovae: individual: 2001B},
-     year = 2005,
-    month = jun,
-   volume = 360,
-    pages = {288-304},
-      doi = {10.1111/j.1365-2966.2005.09034.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.360..288M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000Natur.403...57H,
-   author = {{Hodgkin}, S.~T. and {Oppenheimer}, B.~R. and {Hambly}, N.~C. and 
-	{Jameson}, R.~F. and {Smartt}, S.~J. and {Steele}, I.~A.},
-    title = "{Infrared spectrum of an extremely cool white-dwarf star}",
-  journal = {\nat},
-     year = 2000,
-    month = jan,
-   volume = 403,
-    pages = {57-59},
-      doi = {10.1038/47431},
-   adsurl = {http://adsabs.harvard.edu/abs/2000Natur.403...57H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...635..311U,
-   author = {{Urbaneja}, M.~A. and {Herrero}, A. and {Kudritzki}, R.-P. and 
-	{Najarro}, F. and {Smartt}, S.~J. and {Puls}, J. and {Lennon}, D.~J. and 
-	{Corral}, L.~J.},
-    title = "{Blue Luminous Stars in Nearby Galaxies: Quantitative Spectral Analysis of M33 B-Type Supergiant Stars}",
-  journal = {\apj},
- keywords = {Galaxies: Abundances, Galaxies: Individual: Messier Number: M33, Galaxies: Individual: NGC Number: NGC 598, Galaxies: ISM, Stars: Abundances, Stars: Atmospheres, Stars: Fundamental Parameters},
-     year = 2005,
-    month = dec,
-   volume = 635,
-    pages = {311-335},
-      doi = {10.1086/497528},
-   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...635..311U},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003AJ....126.1326V,
-   author = {{Venn}, K.~A. and {Tolstoy}, E. and {Kaufer}, A. and {Skillman}, E.~D. and 
-	{Clarkson}, S.~M. and {Smartt}, S.~J. and {Lennon}, D.~J. and 
-	{Kudritzki}, R.~P.},
-    title = "{The Chemical Composition of Two Supergiants in the Dwarf Irregular Galaxy WLM}",
-  journal = {\aj},
-   eprint = {astro-ph/0306160},
- keywords = {Galaxies: Abundances, Galaxies: Dwarf, Galaxies: Individual: Alphanumeric: WLM, Stars: Abundances},
-     year = 2003,
-    month = sep,
-   volume = 126,
-    pages = {1326-1345},
-      doi = {10.1086/377345},
-   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126.1326V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...553L.137A,
-   author = {{Auri{\`e}re}, M. and {Baillon}, P. and {Bouquet}, A. and {Carr}, B.~J. and 
-	{Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and 
-	{Gould}, A. and {Hewett}, P.~C. and {Kaplan}, J. and {Kerins}, E. and 
-	{Lastennet}, E. and {Le Du}, Y. and {Melchior}, A.-L. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Valls-Gabaud}, D.},
-    title = "{A Short-Timescale Candidate Microlensing Event in the POINT-AGAPE Pixel Lensing Survey of M31}",
-  journal = {\apjl},
-   eprint = {astro-ph/0102080},
- keywords = {Galaxies: Halos, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing, Stars: Variables: Other},
-     year = 2001,
-    month = jun,
-   volume = 553,
-    pages = {L137-L140},
-      doi = {10.1086/320681},
-   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...553L.137A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001A&A...367...86S,
-   author = {{Smartt}, S.~J. and {Venn}, K.~A. and {Dufton}, P.~L. and {Lennon}, D.~J. and 
-	{Rolleston}, W.~R.~J. and {Keenan}, F.~P.},
-    title = "{Chemical abundances in the inner 5 kpc of the Galactic disk}",
-  journal = {\aap},
-   eprint = {astro-ph/0009157},
- keywords = {STARS: EARLY-TYPE, STARS: ATMOSPHERES, STARS: ABUNDANCES, GALAXY: EVOLUTION, GALAXY: CENTER, GALAXY: ABUNDANCES},
-     year = 2001,
-    month = feb,
-   volume = 367,
-    pages = {86-105},
-      doi = {10.1051/0004-6361:20000479},
-   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...367...86S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...743..114C,
-   author = {{Chomiuk}, L. and {Chornock}, R. and {Soderberg}, A.~M. and 
-	{Berger}, E. and {Chevalier}, R.~A. and {Foley}, R.~J. and {Huber}, M.~E. and 
-	{Narayan}, G. and {Rest}, A. and {Gezari}, S. and {Kirshner}, R.~P. and 
-	{Riess}, A. and {Rodney}, S.~A. and {Smartt}, S.~J. and {Stubbs}, C.~W. and 
-	{Tonry}, J.~L. and {Wood-Vasey}, W.~M. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Czekala}, I. and {Flewelling}, H. and 
-	{Forster}, K. and {Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Martin}, D.~C. and {Morgan}, J.~S. and {Neill}, J.~D. and {Price}, P.~A. and 
-	{Roth}, K.~C. and {Sanders}, N.~E. and {Wainscoat}, R.~J.},
-    title = "{Pan-STARRS1 Discovery of Two Ultraluminous Supernovae at z {\ap} 0.9}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1107.3552},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, stars: magnetars, supernovae: general, supernovae: individual: PS1-10ky PS1-10awh},
-     year = 2011,
-    month = dec,
-   volume = 743,
-      eid = {114},
-    pages = {114},
-      doi = {10.1088/0004-637X/743/2/114},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...743..114C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...767....1P,
-   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
-	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
-	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
-	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
-	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
-	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
-	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
-	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
-	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
-	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
-	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
-	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
-	{Wright}, D.},
-    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1210.3568},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {1},
-    pages = {1},
-      doi = {10.1088/0004-637X/767/1/1},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001MNRAS.325..257S,
-   author = {{Smartt}, S.~J. and {Crowther}, P.~A. and {Dufton}, P.~L. and 
-	{Lennon}, D.~J. and {Kudritzki}, R.~P. and {Herrero}, A. and 
-	{McCarthy}, J.~K. and {Bresolin}, F.},
-    title = "{Chemical abundances and winds of massive stars in M31: a B-type supergiant and a WC star in OB 10}",
-  journal = {\mnras},
-   eprint = {astro-ph/0009156},
- keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, STARS: WINDS, OUTFLOWS, STARS: WOLF-RAYET, GALAXIES: INDIVIDUAL: M31},
-     year = 2001,
-    month = jul,
-   volume = 325,
-    pages = {257-272},
-      doi = {10.1046/j.1365-8711.2001.04415.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2001MNRAS.325..257S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.355..178P,
-   author = {{Pignata}, G. and {Patat}, F. and {Benetti}, S. and {Blinnikov}, S. and 
-	{Hillebrandt}, W. and {Kotak}, R. and {Leibundgut}, B. and {Mazzali}, P.~A. and 
-	{Meikle}, P. and {Qiu}, Y. and {Ruiz-Lapuente}, P. and {Smartt}, S.~J. and 
-	{Sorokina}, E. and {Stritzinger}, M. and {Stehle}, M. and {Turatto}, M. and 
-	{Marsh}, T. and {Martin-Luis}, F. and {McBride}, N. and {Mendez}, J. and 
-	{Morales-Rueda}, L. and {Narbutis}, D. and {Street}, R.},
-    title = "{Photometric observations of the Type Ia SN 2002er in UGC 10743}",
-  journal = {\mnras},
-   eprint = {astro-ph/0408234},
- keywords = {techniques: photometric, supernovae: general, supernovae: individual: SN 2002er},
-     year = 2004,
-    month = nov,
-   volume = 355,
-    pages = {178-190},
-      doi = {10.1111/j.1365-2966.2004.08308.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.355..178P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009A&A...508..371H,
-   author = {{Hunter}, D.~J. and {Valenti}, S. and {Kotak}, R. and {Meikle}, W.~P.~S. and 
-	{Taubenberger}, S. and {Pastorello}, A. and {Benetti}, S. and 
-	{Stanishev}, V. and {Smartt}, S.~J. and {Trundle}, C. and {Arkharov}, A.~A. and 
-	{Bufano}, F. and {Cappellaro}, E. and {Di Carlo}, E. and {Dolci}, M. and 
-	{Elias-Rosa}, N. and {Frandsen}, S. and {Fynbo}, J.~U. and {Hopp}, U. and 
-	{Larionov}, V.~M. and {Laursen}, P. and {Mazzali}, P. and {Navasardyan}, H. and 
-	{Ries}, C. and {Riffeser}, A. and {Rizzi}, L. and {Tsvetkov}, D.~Y. and 
-	{Turatto}, M. and {Wilke}, S.},
-    title = "{Extensive optical and near-infrared observations of the nearby, narrow-lined type Ic <ASTROBJ>SN 2007gr</ASTROBJ>: days 5 to 415}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0909.3780},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: individual: SN 2007gr, techniques: miscellaneous, supernovae: individual: SN 2002ap, supernovae: general},
-     year = 2009,
-    month = dec,
-   volume = 508,
-    pages = {371-389},
-      doi = {10.1051/0004-6361/200912896},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...508..371H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369..257D,
-   author = {{Darnley}, M.~J. and {Bode}, M.~F. and {Kerins}, E. and {Newsam}, A.~M. and 
-	{An}, J. and {Baillon}, P. and {Belokurov}, V. and {Calchi Novati}, S. and 
-	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
-	{Jetzer}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Tsapras}, Y. and {Weston}, M.},
-    title = "{Classical novae from the POINT-AGAPE microlensing survey of M31 - II. Rate and statistical characteristics of the nova population}",
-  journal = {\mnras},
-   eprint = {astro-ph/0509493},
- keywords = {novae, cataclysmic variables: galaxies: individual: M31, cataclysmic variables, galaxies: individual: M31},
-     year = 2006,
-    month = jun,
-   volume = 369,
-    pages = {257-271},
-      doi = {10.1111/j.1365-2966.2006.10297.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369..257D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000MNRAS.319..223H,
-   author = {{Hernandez}, M. and {Meikle}, W.~P.~S. and {Aparicio}, A. and 
-	{Benn}, C.~R. and {Burleigh}, M.~R. and {Chrysostomou}, A.~C. and 
-	{Fernandes}, A.~J.~L. and {Geballe}, T.~R. and {Hammersley}, P.~L. and 
-	{Iglesias-Paramo}, J. and {James}, D.~J. and {James}, P.~A. and 
-	{Kemp}, S.~N. and {Lister}, T.~A. and {Martinez-Delgado}, D. and 
-	{Oscoz}, A. and {Pollacco}, D.~L. and {Rozas}, M. and {Smartt}, S.~J. and 
-	{Sorensen}, P. and {Swaters}, R.~A. and {Telting}, J.~H. and 
-	{Vacca}, W.~D. and {Walton}, N.~A. and {Zapatero-Osorio}, M.~R.
-	},
-    title = "{An early-time infrared and optical study of the Type Ia Supernova 1998bu in M96}",
-  journal = {\mnras},
-   eprint = {astro-ph/0007022},
- keywords = {SUPERNOVAE: INDIVIDUAL: SN 1998BU},
-     year = 2000,
-    month = nov,
-   volume = 319,
-    pages = {223-234},
-      doi = {10.1046/j.1365-8711.2000.03841.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2000MNRAS.319..223H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.389..141M,
-   author = {{Mattila}, S. and {Meikle}, W.~P.~S. and {Lundqvist}, P. and 
-	{Pastorello}, A. and {Kotak}, R. and {Eldridge}, J. and {Smartt}, S. and 
-	{Adamson}, A. and {Gerardy}, C.~L. and {Rizzi}, L. and {Stephens}, A.~W. and 
-	{van Dyk}, S.~D.},
-    title = "{Massive stars exploding in a He-rich circumstellar medium - III. SN 2006jc: infrared echoes from new and old dust in the progenitor CSM}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0803.2145},
- keywords = {circumstellar matter , supernovae: general , supernovae: individual: SN 2006jc , dust, extinction},
-     year = 2008,
-    month = sep,
-   volume = 389,
-    pages = {141-155},
-      doi = {10.1111/j.1365-2966.2008.13516.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..141M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003A&A...404..483C,
-   author = {{Crowther}, P.~A. and {Drissen}, L. and {Abbott}, J.~B. and 
-	{Royer}, P. and {Smartt}, S.~J.},
-    title = "{Gemini observations of Wolf-Rayet stars in the Local Group starburst galaxy IC 10}",
-  journal = {\aap},
-   eprint = {astro-ph/0302475},
- keywords = {galaxies: individual: IC 10, galaxies: starburst, stars: evolution, stars: Wolf-Rayet},
-     year = 2003,
-    month = jun,
-   volume = 404,
-    pages = {483-493},
-      doi = {10.1051/0004-6361:20030503},
-   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...404..483C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.404..981M,
-   author = {{Maguire}, K. and {Di Carlo}, E. and {Smartt}, S.~J. and {Pastorello}, A. and 
-	{Tsvetkov}, D.~Y. and {Benetti}, S. and {Spiro}, S. and {Arkharov}, A.~A. and 
-	{Beccari}, G. and {Botticella}, M.~T. and {Cappellaro}, E. and 
-	{Cristallo}, S. and {Dolci}, M. and {Elias-Rosa}, N. and {Fiaschi}, M. and 
-	{Gorshanov}, D. and {Harutyunyan}, A. and {Larionov}, V.~M. and 
-	{Navasardyan}, H. and {Pietrinferni}, A. and {Raimondo}, G. and 
-	{di Rico}, G. and {Valenti}, S. and {Valentini}, G. and {Zampieri}, L.
-	},
-    title = "{Optical and near-infrared coverage of SN 2004et: physical parameters and comparison with other Type IIP supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0912.3111},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2004et, supernovae: individual: 2004A, supernovae: individual: 2006my},
-     year = 2010,
-    month = may,
-   volume = 404,
-    pages = {981-1004},
-      doi = {10.1111/j.1365-2966.2010.16332.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.404..981M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009Sci...324..486M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
-    title = "{The Disappearance of the Progenitors of Supernovae 1993J and 2003gd}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {0903.3772},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = apr,
-   volume = 324,
-    pages = {486-},
-      doi = {10.1126/science.1170198},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Sci...324..486M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.389..113P,
-   author = {{Pastorello}, A. and {Mattila}, S. and {Zampieri}, L. and {Della Valle}, M. and 
-	{Smartt}, S.~J. and {Valenti}, S. and {Agnoletto}, I. and {Benetti}, S. and 
-	{Benn}, C.~R. and {Branch}, D. and {Cappellaro}, E. and {Dennefeld}, M. and 
-	{Eldridge}, J.~J. and {Gal-Yam}, A. and {Harutyunyan}, A. and 
-	{Hunter}, I. and {Kjeldsen}, H. and {Lipkin}, Y. and {Mazzali}, P.~A. and 
-	{Milne}, P. and {Navasardyan}, H. and {Ofek}, E.~O. and {Pian}, E. and 
-	{Shemmer}, O. and {Spiro}, S. and {Stathakis}, R.~A. and {Taubenberger}, S. and 
-	{Turatto}, M. and {Yamaoka}, H.},
-    title = "{Massive stars exploding in a He-rich circumstellar medium - I. Type Ibn (SN 2006jc-like) events}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0801.2277},
- keywords = {supernovae: general , supernovae: individual: SN 2006jc , supernovae: individual: SN 1999cq , supernovae: individual: SN 2000er , supernovae: individual: SN 2002ao , supernovae: individual: SN 1885A},
-     year = 2008,
-    month = sep,
-   volume = 389,
-    pages = {113-130},
-      doi = {10.1111/j.1365-2966.2008.13602.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..113P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369.1303H,
-   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Crockett}, R.~M. and 
-	{Maund}, J.~R. and {Gal-Yam}, A. and {Moon}, D.-S. and {Cenko}, S.~B. and 
-	{Fox}, D.~W. and {Kudritzki}, R.~P. and {Benn}, C.~R. and {{\O}stensen}, R.
-	},
-    title = "{SN 2004A: another Type II-P supernova with a red supergiant progenitor}",
-  journal = {\mnras},
-   eprint = {astro-ph/0603670},
- keywords = {stars: evolution , supernovae: general , supernovae: individual: SN 2004A , galaxies: distances and redshifts , galaxies: individual: NGC 6207},
-     year = 2006,
-    month = jul,
-   volume = 369,
-    pages = {1303-1320},
-      doi = {10.1111/j.1365-2966.2006.10374.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369.1303H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.343..735S,
-   author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Gilmore}, G.~F. and 
-	{Tout}, C.~A. and {Kilkenny}, D. and {Benetti}, S.},
-    title = "{Mass limits for the progenitor star of supernova 2001du and other Type II-P supernovae}",
-  journal = {\mnras},
-   eprint = {astro-ph/0301324},
- keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 1999em, supernovae: individual: SN 1999gi, supernovae: individual: SN 2001du, galaxies: individual: NGC 1365},
-     year = 2003,
-    month = aug,
-   volume = 343,
-    pages = {735-749},
-      doi = {10.1046/j.1365-8711.2003.06718.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2003MNRAS.343..735S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...688L..91M,
-   author = {{Mattila}, S. and {Smartt}, S.~J. and {Eldridge}, J.~J. and 
-	{Maund}, J.~R. and {Crockett}, R.~M. and {Danziger}, I.~J.},
-    title = "{VLT Detection of a Red Supergiant Progenitor of the Type II-P Supernova 2008bk}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0809.0206},
- keywords = {Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 2008bk)},
-     year = 2008,
-    month = dec,
-   volume = 688,
-    pages = {L91-L94},
-      doi = {10.1086/595587},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...688L..91M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007Natur.449E...1P,
-   author = {{Pastorello}, A. and {Della Valle}, M. and {Smartt}, S.~J. and 
-	{Zampieri}, L. and {Benetti}, S. and {Cappellaro}, E. and {Mazzali}, P.~A. and 
-	{Patat}, F. and {Spiro}, S. and {Turatto}, M. and {Valenti}, S.
-	},
-    title = "{A very faint core-collapse supernova in M85}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0710.3753},
-     year = 2007,
-    month = oct,
-   volume = 449,
-    pages = {1},
-      doi = {10.1038/nature06282},
-   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.449E...1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369..390M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
-	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
-	{Gilmore}, G.~F. and {Benn}, C.~R.},
-    title = "{Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
-  journal = {\mnras},
-   eprint = {astro-ph/0603056},
- keywords = {stars: individual: NGC 2403-V37: supernovae: general: supernovae: individual: 2002kg: supernovae: individual: 2003gm: stars: variables: other: galaxies: individual: NGC 5334, stars: individual: NGC 2403-V37, supernovae: general, supernovae: individual: 2002kg, supernovae: individual: 2003gm, stars: variables: other, galaxies: individual: NGC 5334},
-     year = 2006,
-    month = jun,
-   volume = 369,
-    pages = {390-406},
-      doi = {10.1111/j.1365-2966.2006.10308.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2006MNRAS.369..390M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...565.1089S,
-   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Tout}, C.~A. and {Hodgkin}, S.~T.
-	},
-    title = "{The Nature of the Progenitor of the Type II-P Supernova 1999em}",
-  journal = {\apj},
-   eprint = {astro-ph/0107499},
- keywords = {galaxies: individual (NGC 1637), Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 1999em)},
-     year = 2002,
-    month = feb,
-   volume = 565,
-    pages = {1089-1100},
-      doi = {10.1086/324690},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...565.1089S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.417.1417F,
-   author = {{Fraser}, M. and {Ergon}, M. and {Eldridge}, J.~J. and {Valenti}, S. and 
-	{Pastorello}, A. and {Sollerman}, J. and {Smartt}, S.~J. and 
-	{Agnoletto}, I. and {Arcavi}, I. and {Benetti}, S. and {Botticella}, M.-T. and 
-	{Bufano}, F. and {Campillay}, A. and {Crockett}, R.~M. and {Gal-Yam}, A. and 
-	{Kankare}, E. and {Leloudas}, G. and {Maguire}, K. and {Mattila}, S. and 
-	{Maund}, J.~R. and {Salgado}, F. and {Stephens}, A. and {Taubenberger}, S. and 
-	{Turatto}, M.},
-    title = "{SN 2009md: another faint supernova from a low-mass progenitor}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1011.6558},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: massive, supernovae: general, supernovae: individual: SN 2009md, galaxies: individual: NGC 3389},
-     year = 2011,
-    month = oct,
-   volume = 417,
-    pages = {1417-1433},
-      doi = {10.1111/j.1365-2966.2011.19370.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.417.1417F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005A&A...436.1021K,
-   author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Pignata}, G. and {Stehle}, M. and 
-	{Smartt}, S.~J. and {Benetti}, S. and {Hillebrandt}, W. and 
-	{Lennon}, D.~J. and {Mazzali}, P.~A. and {Patat}, F. and {Turatto}, M.
-	},
-    title = "{Spectroscopy of the type Ia supernova SN 2002er: Days -11 to +215}",
-  journal = {\aap},
-   eprint = {astro-ph/0503339},
- keywords = {stars: supernovae: general, stars: supernovae: individual: SN 2002er, methods: observational, techniques: spectroscopic},
-     year = 2005,
-    month = jun,
-   volume = 436,
-    pages = {1021-1031},
-      doi = {10.1051/0004-6361:20052756},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...436.1021K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997ApJ...489L.157H,
-   author = {{Hambly}, N.~C. and {Smartt}, S.~J. and {Hodgkin}, S.~T.},
-    title = "{WD 0346+246: A Very Low Luminosity, Cool Degenerate in Taurus}",
-  journal = {\apjl},
- keywords = {GALAXY: STELLAR CONTENT, STARS: INDIVIDUAL ALPHANUMERIC: WD 0346+246, STARS: WHITE DWARFS},
-     year = 1997,
-    month = nov,
-   volume = 489,
-    pages = {L157},
-      doi = {10.1086/316797},
-   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...489L.157H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.416.3138V,
-   author = {{Valenti}, S. and {Fraser}, M. and {Benetti}, S. and {Pignata}, G. and 
-	{Sollerman}, J. and {Inserra}, C. and {Cappellaro}, E. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Ergon}, M. and {Botticella}, M.~T. and 
-	{Brimacombe}, J. and {Bufano}, F. and {Crockett}, M. and {Eder}, I. and 
-	{Fugazza}, D. and {Haislip}, J.~B. and {Hamuy}, M. and {Harutyunyan}, A. and 
-	{Ivarsen}, K.~M. and {Kankare}, E. and {Kotak}, R. and {Lacluyze}, A.~P. and 
-	{Magill}, L. and {Mattila}, S. and {Maza}, J. and {Mazzali}, P.~A. and 
-	{Reichart}, D.~E. and {Taubenberger}, S. and {Turatto}, M. and 
-	{Zampieri}, L.},
-    title = "{SN 2009jf: a slow-evolving stripped-envelope core-collapse supernova}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1106.3030},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2009jf, galaxies: individual: NGC 7479},
-     year = 2011,
-    month = oct,
-   volume = 416,
-    pages = {3138-3159},
-      doi = {10.1111/j.1365-2966.2011.19262.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.416.3138V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2014ApJ...783...10S,
-   author = {{Sukhbold}, T. and {Woosley}, S.~E.},
-    title = "{The Compactness of Presupernova Stellar Cores}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1311.6546},
- primaryClass = "astro-ph.SR",
- keywords = {convection, nuclear reactions, nucleosynthesis, abundances, stars: evolution, stars: interiors, stars: neutron, supernovae: general},
-     year = 2014,
-    month = mar,
-   volume = 783,
-      eid = {10},
-    pages = {10},
-      doi = {10.1088/0004-637X/783/1/10},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...783...10S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436..774E,
-   author = {{Eldridge}, J.~J. and {Fraser}, M. and {Smartt}, S.~J. and {Maund}, J.~R. and 
-	{Crockett}, R.~M.},
-    title = "{The death of massive stars - II. Observational constraints on the progenitors of Type Ibc supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1301.1975},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: general, stars: evolution, supergiants, supernovae: general, stars: Wolf-Rayet},
-     year = 2013,
-    month = nov,
-   volume = 436,
-    pages = {774-795},
-      doi = {10.1093/mnras/stt1612},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..774E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...795...44R,
-   author = {{Rest}, A. and {Scolnic}, D. and {Foley}, R.~J. and {Huber}, M.~E. and 
-	{Chornock}, R. and {Narayan}, G. and {Tonry}, J.~L. and {Berger}, E. and 
-	{Soderberg}, A.~M. and {Stubbs}, C.~W. and {Riess}, A. and {Kirshner}, R.~P. and 
-	{Smartt}, S.~J. and {Schlafly}, E. and {Rodney}, S. and {Botticella}, M.~T. and 
-	{Brout}, D. and {Challis}, P. and {Czekala}, I. and {Drout}, M. and 
-	{Hudson}, M.~J. and {Kotak}, R. and {Leibler}, C. and {Lunnan}, R. and 
-	{Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
-	{Pastorello}, A. and {Sanders}, N.~E. and {Smith}, K. and {Stafford}, E. and 
-	{Thilker}, D. and {Valenti}, S. and {Wood-Vasey}, W.~M. and 
-	{Zheng}, Z. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Denneau}, L. and 
-	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and {Wainscoat}, R. and 
-	{Waters}, C.},
-    title = "{Cosmological Constraints from Measurements of Type{\nbsp}Ia Supernovae Discovered during the First 1.5{\nbsp}yr of the Pan-STARRS1 Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.3828},
- keywords = {cosmological parameters, cosmology: observations, dark energy, supernovae: general},
-     year = 2014,
-    month = nov,
-   volume = 795,
-      eid = {44},
-    pages = {44},
-      doi = {10.1088/0004-637X/795/1/44},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795...44R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572L.147S,
-   author = {{Smartt}, S.~J. and {Vreeswijk}, P.~M. and {Ramirez-Ruiz}, E. and 
-	{Gilmore}, G.~F. and {Meikle}, W.~P.~S. and {Ferguson}, A.~M.~N. and 
-	{Knapen}, J.~H.},
-    title = "{On the Progenitor of the Type Ic Supernova 2002ap}",
-  journal = {\apjl},
-   eprint = {astro-ph/0205241},
- keywords = {Stars: Binaries: Close, Galaxies: Individual: NGC Number: NGC 628, Gamma Rays: Bursts, Stars: Evolution, Stars: Wolf-Rayet, Stars: Supernovae: Individual: Alphanumeric: SN 2002ap},
-     year = 2002,
-    month = jun,
-   volume = 572,
-    pages = {L147-L151},
-      doi = {10.1086/341747},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572L.147S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...672L..99C,
-   author = {{Crockett}, R.~M. and {Maund}, J.~R. and {Smartt}, S.~J. and 
-	{Mattila}, S. and {Pastorello}, A. and {Smoker}, J. and {Stephens}, A.~W. and 
-	{Fynbo}, J. and {Eldridge}, J.~J. and {Danziger}, I.~J. and 
-	{Benn}, C.~R.},
-    title = "{The Birth Place of the Type Ic Supernova 2007gr}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0709.2354},
- keywords = {Galaxies: Individual: NGC Number: NGC 1058, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (2007gr)},
-     year = 2008,
-    month = jan,
-   volume = 672,
-    pages = {L99-L102},
-      doi = {10.1086/527299},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...672L..99C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007MNRAS.381..835C,
-   author = {{Crockett}, R.~M. and {Smartt}, S.~J. and {Eldridge}, J.~J. and 
-	{Mattila}, S. and {Young}, D.~R. and {Pastorello}, A. and {Maund}, J.~R. and 
-	{Benn}, C.~R. and {Skillen}, I.},
-    title = "{A deeper search for the progenitor of the Type Ic supernova 2002ap}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0706.0500},
- keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2002ap, galaxies: individual: M 74},
-     year = 2007,
-    month = oct,
-   volume = 381,
-    pages = {835-850},
-      doi = {10.1111/j.1365-2966.2007.12283.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.381..835C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.353..571D,
-   author = {{Darnley}, M.~J. and {Bode}, M.~F. and {Kerins}, E. and {Newsam}, A.~M. and 
-	{An}, J. and {Baillon}, P. and {Novati}, S.~C. and {Carr}, B.~J. and 
-	{Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and {Giraud-H{\'e}raud}, Y. and 
-	{Gould}, A. and {Hewett}, P. and {Jetzer}, P. and {Kaplan}, J. and 
-	{Paulin-Henriksson}, S. and {Smartt}, S.~J. and {Stalin}, C.~S. and 
-	{Tsapras}, Y.},
-    title = "{Classical novae from the POINT-AGAPE microlensing survey of M31 - I. The nova catalogue}",
-  journal = {\mnras},
-   eprint = {astro-ph/0403447},
- keywords = {novae, cataclysmic variables, galaxies: individual: M31},
-     year = 2004,
-    month = sep,
-   volume = 353,
-    pages = {571-588},
-      doi = {10.1111/j.1365-2966.2004.08087.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.353..571D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012A&A...537A.132B,
-   author = {{Botticella}, M.~T. and {Smartt}, S.~J. and {Kennicutt}, R.~C. and 
-	{Cappellaro}, E. and {Sereno}, M. and {Lee}, J.~C.},
-    title = "{A comparison between star formation rate diagnostics and rate of core collapse supernovae within 11 Mpc}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1111.1692},
- primaryClass = "astro-ph.CO",
- keywords = {stars: massive, supernovae: general, galaxies: star formation},
-     year = 2012,
-    month = jan,
-   volume = 537,
-      eid = {A132},
-    pages = {A132},
-      doi = {10.1051/0004-6361/201117343},
-   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...537A.132B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.351.1071A,
-   author = {{An}, J.~H. and {Evans}, N.~W. and {Hewett}, P. and {Baillon}, P. and 
-	{Calchi Novati}, S. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Jetzer}, P. and 
-	{Kaplan}, J. and {Kerins}, E. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y.},
-    title = "{The POINT-AGAPE Survey - I. The variable stars in M31}",
-  journal = {\mnras},
-   eprint = {astro-ph/0401374},
- keywords = {gravitational lensing: Cepheids: stars: variables: others: galaxies: individual: M31: dark matter},
-     year = 2004,
-    month = jul,
-   volume = 351,
-    pages = {1071-1098},
-      doi = {10.1111/j.1365-2966.2004.07853.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2004MNRAS.351.1071A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...556L..29S,
-   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Trentham}, N. and 
-	{Tout}, C.~A. and {Frayn}, C.~M.},
-    title = "{An Upper Mass Limit for the Progenitor of the Type II-P Supernova SN 1999gi}",
-  journal = {\apjl},
-   eprint = {astro-ph/0105453},
- keywords = {Galaxies: Individual: NGC Number: NGC 3184, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1999gi},
-     year = 2001,
-    month = jul,
-   volume = 556,
-    pages = {L29-L32},
-      doi = {10.1086/322868},
-   adsurl = {http://adsabs.harvard.edu/abs/2001ApJ...556L..29S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...770..128I,
-   author = {{Inserra}, C. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Valenti}, S. and 
-	{Fraser}, M. and {Wright}, D. and {Smith}, K. and {Chen}, T.-W. and 
-	{Kotak}, R. and {Pastorello}, A. and {Nicholl}, M. and {Bresolin}, F. and 
-	{Kudritzki}, R.~P. and {Benetti}, S. and {Botticella}, M.~T. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Ergon}, M. and {Flewelling}, H. and 
-	{Fynbo}, J.~P.~U. and {Geier}, S. and {Hodapp}, K.~W. and {Howell}, D.~A. and 
-	{Huber}, M. and {Kaiser}, N. and {Leloudas}, G. and {Magill}, L. and 
-	{Magnier}, E.~A. and {McCrum}, M.~G. and {Metcalfe}, N. and 
-	{Price}, P.~A. and {Rest}, A. and {Sollerman}, J. and {Sweeney}, W. and 
-	{Taddia}, F. and {Taubenberger}, S. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C. and {Young}, D.},
-    title = "{Super-luminous Type Ic Supernovae: Catching a Magnetar by the Tail}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1304.3320},
- primaryClass = "astro-ph.HE",
- keywords = {stars: magnetars, supernovae: general, supernovae: individual: PTF10hgi PTF11rks SN 2011ke SN 2011kf SN 2012il},
-     year = 2013,
-    month = jun,
-   volume = 770,
-      eid = {128},
-    pages = {128},
-      doi = {10.1088/0004-637X/770/2/128},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770..128I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.408..181P,
-   author = {{Pastorello}, A. and {Botticella}, M.~T. and {Trundle}, C. and 
-	{Taubenberger}, S. and {Mattila}, S. and {Kankare}, E. and {Elias-Rosa}, N. and 
-	{Benetti}, S. and {Duszanowicz}, G. and {Hermansson}, L. and 
-	{Beckman}, J.~E. and {Bufano}, F. and {Fraser}, M. and {Harutyunyan}, A. and 
-	{Navasardyan}, H. and {Smartt}, S.~J. and {van Dyk}, S.~D. and 
-	{Vink}, J.~S. and {Wagner}, R.~M.},
-    title = "{Multiple major outbursts from a restless luminous blue variable in NGC 3432}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.0504},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2000ch, galaxies: individual: NGC 3432},
-     year = 2010,
-    month = oct,
-   volume = 408,
-    pages = {181-198},
-      doi = {10.1111/j.1365-2966.2010.17142.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408..181P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1967AcA....17..355P,
-   author = {{Paczy{\'n}ski}, B.},
-    title = "{Evolution of Close Binaries. V. The Evolution of Massive Binaries and the Formation of the Wolf-Rayet Stars}",
-  journal = {\actaa},
-     year = 1967,
-   volume = 17,
-    pages = {355},
-   adsurl = {http://adsabs.harvard.edu/abs/1967AcA....17..355P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1998A&ARv...9...63V,
-   author = {{Vanbeveren}, D. and {De Loore}, C. and {Van Rensbergen}, W.
-	},
-    title = "{Massive stars}",
-  journal = {\aapr},
- keywords = {massive singlet stars, massive close binaries, massive star population synthesis},
-     year = 1998,
-   volume = 9,
-    pages = {63-152},
-      doi = {10.1007/s001590050015},
-   adsurl = {http://adsabs.harvard.edu/abs/1998A&ARv...9...63V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007MNRAS.376L..52E,
-   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
-    title = "{Ruling out a massive asymptotic giant-branch star as the progenitor of supernova 2005cs}",
-  journal = {\mnras},
-   eprint = {astro-ph/0701152},
- keywords = {stars: AGB and post-AGB, stars: evolution, supernovae: general, supernovae: individual: 2005cs, infrared: stars},
-     year = 2007,
-    month = mar,
-   volume = 376,
-    pages = {L52-L56},
-      doi = {10.1111/j.1745-3933.2007.00285.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.376L..52E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002A&A...391..979S,
-   author = {{Smartt}, S.~J. and {Lennon}, D.~J. and {Kudritzki}, R.~P. and 
-	{Rosales}, F. and {Ryans}, R.~S.~I. and {Wright}, N.},
-    title = "{The evolutionary status of Sher 25 - implications for blue supergiants and the progenitor of SN 1987A}",
-  journal = {\aap},
-   eprint = {astro-ph/0205242},
- keywords = {stars: supernovae, stars: individual (Sher 25), stars: supergiants, stars: abundances, stars: winds, outflows},
-     year = 2002,
-    month = sep,
-   volume = 391,
-    pages = {979-991},
-      doi = {10.1051/0004-6361:20020829},
-   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...391..979S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003A&A...397..285G,
-   author = {{Garc{\'{\i}}a-Alvarez}, D. and {Foing}, B.~H. and {Montes}, D. and 
-	{Oliveira}, J. and {Doyle}, J.~G. and {Messina}, S. and {Lanza}, A.~F. and 
-	{Rodon{\`o}}, M. and {Abbott}, J. and {Ash}, T.~D.~C. and {Baldry}, I.~K. and 
-	{Bedding}, T.~R. and {Buckley}, D.~A.~H. and {Cami}, J. and 
-	{Cao}, H. and {Catala}, C. and {Cheng}, K.~P. and {Domiciano de Souza}, Jr., A. and 
-	{Donati}, J.-F. and {Hubert}, A.-M. and {Janot-Pacheco}, E. and 
-	{Hao}, J.~X. and {Kaper}, L. and {Kaufer}, A. and {Leister}, N.~V. and 
-	{Neff}, J.~E. and {Neiner}, C. and {Orlando}, S. and {O'Toole}, S.~J. and 
-	{Sch{\"a}fer}, D. and {Smartt}, S.~J. and {Stahl}, O. and {Telting}, J. and 
-	{Tubbesing}, S.},
-    title = "{Simultaneous optical and X-ray observations of flares and rotational modulation on the RS CVn binary HR 1099 (V711 Tau) from the MUSICOS 1998 campaign}",
-  journal = {\aap},
-   eprint = {astro-ph/0210230},
- keywords = {stars: binaries: spectroscopic, stars: late-type, stars: individual: HR 1099, stars: atmospheres, stars: activity, stars: flare},
-     year = 2003,
-    month = jan,
-   volume = 397,
-    pages = {285-303},
-      doi = {10.1051/0004-6361:20021481},
-   adsurl = {http://adsabs.harvard.edu/abs/2003A\26A...397..285G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.433.1312F,
-   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
-	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
-	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
-	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
-	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
-	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
-	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
-	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
-	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
-	{Zhou}, G.},
-    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1303.3453},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
-     year = 2013,
-    month = aug,
-   volume = 433,
-    pages = {1312-1337},
-      doi = {10.1093/mnras/stt813},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...759L..13F,
-   author = {{Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J. and {Botticella}, M.-T. and 
-	{Dall'Ora}, M. and {Inserra}, C. and {Tomasella}, L. and {Benetti}, S. and 
-	{Ciroi}, S. and {Eldridge}, J.~J. and {Ergon}, M. and {Kotak}, R. and 
-	{Mattila}, S. and {Ochner}, P. and {Pastorello}, A. and {Reilly}, E. and 
-	{Sollerman}, J. and {Stephens}, A. and {Taddia}, F. and {Valenti}, S.
-	},
-    title = "{Red and Dead: The Progenitor of SN 2012aw in M95}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1204.1523},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: individual: M95, supergiants, supernovae: general, supernovae: individual: SN2012aw},
-     year = 2012,
-    month = nov,
-   volume = 759,
-      eid = {L13},
-    pages = {L13},
-      doi = {10.1088/2041-8205/759/1/L13},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759L..13F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004ApJ...601..845A,
-   author = {{An}, J.~H. and {Evans}, N.~W. and {Kerins}, E. and {Baillon}, P. and 
-	{Calchi Novati}, S. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
-	{Jetzer}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Tsapras}, Y. and {Valls-Gabaud}, D. and 
-	{Point-Agape Collaboration}},
-    title = "{The Anomaly in the Candidate Microlensing Event PA-99-N2}",
-  journal = {\apj},
-   eprint = {astro-ph/0310457},
- keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing},
-     year = 2004,
-    month = feb,
-   volume = 601,
-    pages = {845-857},
-      doi = {10.1086/380820},
-   adsurl = {http://adsabs.harvard.edu/abs/2004ApJ...601..845A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013Natur.502..346N,
-   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
-	{McCrum}, M. and {Kotak}, R. and {Fraser}, M. and {Wright}, D. and 
-	{Chen}, T.-W. and {Smith}, K. and {Young}, D.~R. and {Sim}, S.~A. and 
-	{Valenti}, S. and {Howell}, D.~A. and {Bresolin}, F. and {Kudritzki}, R.~P. and 
-	{Tonry}, J.~L. and {Huber}, M.~E. and {Rest}, A. and {Pastorello}, A. and 
-	{Tomasella}, L. and {Cappellaro}, E. and {Benetti}, S. and {Mattila}, S. and 
-	{Kankare}, E. and {Kangas}, T. and {Leloudas}, G. and {Sollerman}, J. and 
-	{Taddia}, F. and {Berger}, E. and {Chornock}, R. and {Narayan}, G. and 
-	{Stubbs}, C.~W. and {Foley}, R.~J. and {Lunnan}, R. and {Soderberg}, A. and 
-	{Sanders}, N. and {Milisavljevic}, D. and {Margutti}, R. and 
-	{Kirshner}, R.~P. and {Elias-Rosa}, N. and {Morales-Garoffolo}, A. and 
-	{Taubenberger}, S. and {Botticella}, M.~T. and {Gezari}, S. and 
-	{Urata}, Y. and {Rodney}, S. and {Riess}, A.~G. and {Scolnic}, D. and 
-	{Wood-Vasey}, W.~M. and {Burgett}, W.~S. and {Chambers}, K. and 
-	{Flewelling}, H.~A. and {Magnier}, E.~A. and {Kaiser}, N. and 
-	{Metcalfe}, N. and {Morgan}, J. and {Price}, P.~A. and {Sweeney}, W. and 
-	{Waters}, C.},
-    title = "{Slowly fading super-luminous supernovae that are not pair-instability explosions}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1310.4446},
- primaryClass = "astro-ph.CO",
-     year = 2013,
-    month = oct,
-   volume = 502,
-    pages = {346-349},
-      doi = {10.1038/nature12569},
-   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.502..346N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...714L.280F,
-   author = {{Fraser}, M. and {Tak{\'a}ts}, K. and {Pastorello}, A. and {Smartt}, S.~J. and 
-	{Mattila}, S. and {Botticella}, M.-T. and {Valenti}, S. and 
-	{Ergon}, M. and {Sollerman}, J. and {Arcavi}, I. and {Benetti}, S. and 
-	{Bufano}, F. and {Crockett}, R.~M. and {Danziger}, I.~J. and 
-	{Gal-Yam}, A. and {Maund}, J.~R. and {Taubenberger}, S. and 
-	{Turatto}, M.},
-    title = "{On the Progenitor and Early Evolution of the Type II Supernova 2009kr}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0912.2071},
- keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
-     year = 2010,
-    month = may,
-   volume = 714,
-    pages = {L280-L284},
-      doi = {10.1088/2041-8205/714/2/L280},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.280F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...479...49B,
-   author = {{Botticella}, M.~T. and {Riello}, M. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Altavilla}, G. and {Pastorello}, A. and {Turatto}, M. and 
-	{Greggio}, L. and {Patat}, F. and {Valenti}, S. and {Zampieri}, L. and 
-	{Harutyunyan}, A. and {Pignata}, G. and {Taubenberger}, S.},
-    title = "{Supernova rates from the Southern inTermediate Redshift ESO Supernova Search (STRESS)}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0710.3763},
- keywords = {supernovae: general, stars: formation, Galaxy: evolution, Galaxy: stellar content},
-     year = 2008,
-    month = feb,
-   volume = 479,
-    pages = {49-66},
-      doi = {10.1051/0004-6361:20078011},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...479...49B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2010ApJ...717L..52B,
-   author = {{Botticella}, M.~T. and {Trundle}, C. and {Pastorello}, A. and 
-	{Rodney}, S. and {Rest}, A. and {Gezari}, S. and {Smartt}, S.~J. and 
-	{Narayan}, G. and {Huber}, M.~E. and {Tonry}, J.~L. and {Young}, D. and 
-	{Smith}, K. and {Bresolin}, F. and {Valenti}, S. and {Kotak}, R. and 
-	{Mattila}, S. and {Kankare}, E. and {Wood-Vasey}, W.~M. and 
-	{Riess}, A. and {Neill}, J.~D. and {Forster}, K. and {Martin}, D.~C. and 
-	{Stubbs}, C.~W. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Dombeck}, T. and {Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and 
-	{Hodapp}, K.~W. and {Kaiser}, N. and {Kudritzki}, R. and {Luppino}, G. and 
-	{Lupton}, R.~H. and {Magnier}, E.~A. and {Monet}, D.~G. and 
-	{Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and {Rhoads}, P.~H. and 
-	{Siegmund}, W.~A. and {Sweeney}, W.~E. and {Wainscoat}, R.~J. and 
-	{Waters}, C. and {Waterson}, M.~F. and {Wynn-Williams}, C.~G.
-	},
-    title = "{Supernova 2009kf: An Ultraviolet Bright Type IIP Supernova Discovered with Pan-STARRS 1 and GALEX}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1001.5427},
- primaryClass = "astro-ph.CO",
- keywords = {stars: evolution, supernovae: general, supernovae: individual: 2009kf},
-     year = 2010,
-    month = jul,
-   volume = 717,
-    pages = {L52-L56},
-      doi = {10.1088/2041-8205/717/1/L52},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...717L..52B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...688.1210B,
-   author = {{Bauer}, F.~E. and {Dwarkadas}, V.~V. and {Brandt}, W.~N. and 
-	{Immler}, S. and {Smartt}, S. and {Bartel}, N. and {Bietenholz}, M.~F.
-	},
-    title = "{Supernova 1996cr: SN 1987A's Wild Cousin?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0804.3597},
- keywords = {Stars: Circumstellar Matter, Stars: Supernovae: General, supernovae: individual (SN 1996cr), X-rays: individual (SN 1996cr)},
-     year = 2008,
-    month = dec,
-   volume = 688,
-    pages = {1210-1234},
-      doi = {10.1086/589761},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...688.1210B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.389..131P,
-   author = {{Pastorello}, A. and {Quimby}, R.~M. and {Smartt}, S.~J. and 
-	{Mattila}, S. and {Navasardyan}, H. and {Crockett}, R.~M. and 
-	{Elias-Rosa}, N. and {Mondol}, P. and {Wheeler}, J.~C. and {Young}, D.~R.
-	},
-    title = "{Massive stars exploding in a He-rich circumstellar medium - II. The transitional case of SN 2005la}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0801.2278},
- keywords = {supernovae: general , supernovae: individual: SN 2005la , supernovae: individual: SN 2006jc},
-     year = 2008,
-    month = sep,
-   volume = 389,
-    pages = {131-140},
-      doi = {10.1111/j.1365-2966.2008.13603.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.389..131P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002A&A...388..899N,
-   author = {{Neiner}, C. and {Hubert}, A.-M. and {Floquet}, M. and {Jankov}, S. and 
-	{Henrichs}, H.~F. and {Foing}, B. and {Oliveira}, J. and {Orlando}, S. and 
-	{Abbott}, J. and {Baldry}, I.~K. and {Bedding}, T.~R. and {Cami}, J. and 
-	{Cao}, H. and {Catala}, C. and {Cheng}, K.~P. and {Domiciano de Souza}, Jr., A. and 
-	{Janot-Pacheco}, E. and {Hao}, J.~X. and {Kaper}, L. and {Kaufer}, A. and 
-	{Leister}, N.~V. and {Neff}, J.~E. and {O'Toole}, S.~J. and 
-	{Sch{\"a}fer}, D. and {Smartt}, S.~J. and {Stahl}, O. and {Telting}, J. and 
-	{Tubbesing}, S. and {Zorec}, J.},
-    title = "{Non-radial pulsation, rotation and outburst in the Be star <ASTROBJ>omega Orionis</ASTROBJ> from the MuSiCoS 1998 campaign}",
-  journal = {\aap},
- keywords = {stars: emission line, Be, stars: early-type, stars: individual: omega Ori},
-     year = 2002,
-    month = jun,
-   volume = 388,
-    pages = {899-916},
-      doi = {10.1051/0004-6361:20020522},
-   adsurl = {http://adsabs.harvard.edu/abs/2002A&A...388..899N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...630L..33M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Schweizer}, F.},
-    title = "{Luminosity and Mass Limits for the Progenitor of the Type Ic Supernova 2004gt in NGC 4038}",
-  journal = {\apjl},
-   eprint = {astro-ph/0506436},
- keywords = {Galaxies: Individual: NGC Number: NGC 4038, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (2004gt)},
-     year = 2005,
-    month = sep,
-   volume = 630,
-    pages = {L33-L36},
-      doi = {10.1086/491620},
-   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...630L..33M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...576L.121P,
-   author = {{Paulin-Henriksson}, S. and {Baillon}, P. and {Bouquet}, A. and 
-	{Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and {Evans}, N.~W. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Hewett}, P. and 
-	{Kaplan}, J. and {Kerins}, E. and {Lastennet}, E. and {Le Du}, Y. and 
-	{Melchior}, A.-L. and {Smartt}, S.~J. and {Valls-Gabaud}, D. and 
-	{Point-Agape Collaboration}},
-    title = "{A Candidate M31/M32 Intergalactic Microlensing Event}",
-  journal = {\apjl},
-   eprint = {astro-ph/0206387},
- keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Galaxies: Individual: Messier Number: M32, Galaxy: Halo, Cosmology: Gravitational Lensing},
-     year = 2002,
-    month = sep,
-   volume = 576,
-    pages = {L121-L124},
-      doi = {10.1086/343887},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...576L.121P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001A&A...366L...1R,
-   author = {{Royer}, P. and {Smartt}, S.~J. and {Manfroid}, J. and {Vreux}, J.-M.
-	},
-    title = "{The WR content of IC10 - first detection of WC9 stars in a low metallicity environment?}",
-  journal = {\aap},
- keywords = {STARS: WOLF-RAYET, PHOTOMETRY: NARROW BANDS, GALAXIES: STARBURST, LOCAL GROUP},
-     year = 2001,
-    month = feb,
-   volume = 366,
-    pages = {L1-L4},
-      doi = {10.1051/0004-6361:20000571},
-   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...366L...1R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999A&A...352L..40M,
-   author = {{Muschielok}, B. and {Kudritzki}, R.~P. and {Appenzeller}, I. and 
-	{Bresolin}, F. and {Butler}, K. and {G{\"a}ssler}, W. and {H{\"a}fner}, R. and 
-	{Hess}, H.~J. and {Hummel}, W. and {Lennon}, D.~J. and {Mantel}, K.-H. and 
-	{Meisl}, W. and {Seifert}, W. and {Smartt}, S.~J. and {Szeifert}, T. and 
-	{Tarantik}, K.},
-    title = "{VLT FORS spectra of blue supergiants in the Local Group galaxy NGC 6822}",
-  journal = {\aap},
- keywords = {ATOMIC DATA, LINE: FORMATION, STARS: HERTZSPRUNG-RUSSEL (HR) AND C-M DIAGRAMS, STARS: EARLY-TYPE, STARS: SUPERGIANTS},
-     year = 1999,
-    month = dec,
-   volume = 352,
-    pages = {L40-L44},
-   adsurl = {http://adsabs.harvard.edu/abs/1999A&A...352L..40M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...489..359Y,
-   author = {{Young}, D.~R. and {Smartt}, S.~J. and {Mattila}, S. and {Tanvir}, N.~R. and 
-	{Bersier}, D. and {Chambers}, K.~C. and {Kaiser}, N. and {Tonry}, J.~L.
-	},
-    title = "{Core-collapse supernovae in low-metallicity environments and future all-sky transient surveys}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0807.3070},
- keywords = {surveys, stars: supernovae: general, gamma-rays: bursts},
-     year = 2008,
-    month = oct,
-   volume = 489,
-    pages = {359-375},
-      doi = {10.1051/0004-6361:20078662},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...489..359Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...795...45S,
-   author = {{Scolnic}, D. and {Rest}, A. and {Riess}, A. and {Huber}, M.~E. and 
-	{Foley}, R.~J. and {Brout}, D. and {Chornock}, R. and {Narayan}, G. and 
-	{Tonry}, J.~L. and {Berger}, E. and {Soderberg}, A.~M. and {Stubbs}, C.~W. and 
-	{Kirshner}, R.~P. and {Rodney}, S. and {Smartt}, S.~J. and {Schlafly}, E. and 
-	{Botticella}, M.~T. and {Challis}, P. and {Czekala}, I. and 
-	{Drout}, M. and {Hudson}, M.~J. and {Kotak}, R. and {Leibler}, C. and 
-	{Lunnan}, R. and {Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
-	{Pastorello}, A. and {Sanders}, N.~E. and {Smith}, K. and {Stafford}, E. and 
-	{Thilker}, D. and {Valenti}, S. and {Wood-Vasey}, W.~M. and 
-	{Zheng}, Z. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Denneau}, L. and 
-	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and {Wainscoat}, R. and 
-	{Waters}, C.},
-    title = "{Systematic Uncertainties Associated with the Cosmological Analysis of the First Pan-STARRS1 Type Ia Supernova Sample}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.3824},
- keywords = {dark energy, supernovae: general},
-     year = 2014,
-    month = nov,
-   volume = 795,
-      eid = {45},
-    pages = {45},
-      doi = {10.1088/0004-637X/795/1/45},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795...45S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...779...18B,
-   author = {{Berger}, E. and {Leibler}, C.~N. and {Chornock}, R. and {Rest}, A. and 
-	{Foley}, R.~J. and {Soderberg}, A.~M. and {Price}, P.~A. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Flewelling}, H. and 
-	{Huber}, M.~E. and {Magnier}, E.~A. and {Metcalfe}, N. and {Stubbs}, C.~W. and 
-	{Tonry}, J.~L.},
-    title = "{A Search for Fast Optical Transients in the Pan-STARRS1 Medium-Deep Survey: M-Dwarf Flares, Asteroids, Limits on Extragalactic Rates, and Implications for LSST}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1307.5324},
- primaryClass = "astro-ph.HE",
- keywords = {minor planets, asteroids: general, novae, cataclysmic variables, stars: flare, supernovae: general, surveys},
-     year = 2013,
-    month = dec,
-   volume = 779,
-      eid = {18},
-    pages = {18},
-      doi = {10.1088/0004-637X/779/1/18},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...779...18B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2012ApJ...755L..29B,
-   author = {{Berger}, E. and {Chornock}, R. and {Lunnan}, R. and {Foley}, R. and 
-	{Czekala}, I. and {Rest}, A. and {Leibler}, C. and {Soderberg}, A.~M. and 
-	{Roth}, K. and {Narayan}, G. and {Huber}, M.~E. and {Milisavljevic}, D. and 
-	{Sanders}, N.~E. and {Drout}, M. and {Margutti}, R. and {Kirshner}, R.~P. and 
-	{Marion}, G.~H. and {Challis}, P.~J. and {Riess}, A.~G. and 
-	{Smartt}, S.~J. and {Burgett}, W.~S. and {Hodapp}, K.~W. and 
-	{Heasley}, J.~N. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Magnier}, E.~A. and {McCrum}, M. and {Price}, P.~A. and {Smith}, K. and 
-	{Tonry}, J.~L. and {Wainscoat}, R.~J.},
-    title = "{Ultraluminous Supernovae as a New Probe of the Interstellar Medium in Distant Galaxies}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1206.4050},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: ISM, supernovae: individual: PS1-11bam},
-     year = 2012,
-    month = aug,
-   volume = 755,
-      eid = {L29},
-    pages = {L29},
-      doi = {10.1088/2041-8205/755/2/L29},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...755L..29B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996A&A...305..164S,
-   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
-	},
-    title = "{A metal deficient early B-type star near the edge of the galactic disk.}",
-  journal = {\aap},
- keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE},
-     year = 1996,
-    month = jan,
-   volume = 305,
-    pages = {164},
-   adsurl = {http://adsabs.harvard.edu/abs/1996A&A...305..164S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014A&A...562A..17E,
-   author = {{Ergon}, M. and {Sollerman}, J. and {Fraser}, M. and {Pastorello}, A. and 
-	{Taubenberger}, S. and {Elias-Rosa}, N. and {Bersten}, M. and 
-	{Jerkstrand}, A. and {Benetti}, S. and {Botticella}, M.~T. and 
-	{Fransson}, C. and {Harutyunyan}, A. and {Kotak}, R. and {Smartt}, S. and 
-	{Valenti}, S. and {Bufano}, F. and {Cappellaro}, E. and {Fiaschi}, M. and 
-	{Howell}, A. and {Kankare}, E. and {Magill}, L. and {Mattila}, S. and 
-	{Maund}, J. and {Naves}, R. and {Ochner}, P. and {Ruiz}, J. and 
-	{Smith}, K. and {Tomasella}, L. and {Turatto}, M.},
-    title = "{Optical and near-infrared observations of SN 2011dh - The first 100 days}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1305.1851},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2011dh, galaxies: clusters: individual: M51},
-     year = 2014,
-    month = feb,
-   volume = 562,
-      eid = {A17},
-    pages = {A17},
-      doi = {10.1051/0004-6361/201321850},
-   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...562A..17E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.357...17B,
-   author = {{Belokurov}, V. and {An}, J. and {Evans}, N.~W. and {Hewett}, P. and 
-	{Baillon}, P. and {Novati}, S.~C. and {Carr}, B.~J. and {Cr{\'e}z{\'e}}, M. and 
-	{Giraud-H{\'e}raud}, Y. and {Gould}, A. and {Jetzer}, P. and 
-	{Kaplan}, J. and {Kerins}, E. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Stalin}, C.~S. and {Tsapras}, Y. and {Weston}, M.~J.
-	},
-    title = "{The POINT-AGAPE survey - II. An unrestricted search for microlensing events towards M31}",
-  journal = {\mnras},
-   eprint = {astro-ph/0411186},
- keywords = {gravitational lensing, stars: variables: other, galaxies: individual: M31, dark matter},
-     year = 2005,
-    month = feb,
-   volume = 357,
-    pages = {17-37},
-      doi = {10.1111/j.1365-2966.2005.08629.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2005MNRAS.357...17B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997A&A...326..763S,
-   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Lennon}, D.~J.},
-    title = "{Metallicities of 4 blue supergiants near the Galactic centre.}",
-  journal = {\aap},
- keywords = {B-STARS, SUPERGIANTS, ABUNDANCES, THE GALAXY: CENTRE},
-     year = 1997,
-    month = oct,
-   volume = 326,
-    pages = {763-779},
-   adsurl = {http://adsabs.harvard.edu/abs/1997A&A...326..763S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...767..162C,
-   author = {{Chornock}, R. and {Berger}, E. and {Rest}, A. and {Milisavljevic}, D. and 
-	{Lunnan}, R. and {Foley}, R.~J. and {Soderberg}, A.~M. and {Smartt}, S.~J. and 
-	{Burgasser}, A.~J. and {Challis}, P. and {Chomiuk}, L. and {Czekala}, I. and 
-	{Drout}, M. and {Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
-	{Leibler}, C. and {McLeod}, B. and {Marion}, G.~H. and {Narayan}, G. and 
-	{Riess}, A.~G. and {Roth}, K.~C. and {Sanders}, N.~E. and {Scolnic}, D. and 
-	{Smith}, K. and {Stubbs}, C.~W. and {Tonry}, J.~L. and {Valenti}, S. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Price}, P.~A.},
-    title = "{PS1-10afx at z = 1.388: Pan-STARRS1 Discovery of a New Type of Superluminous Supernova}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1302.0009},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: individual: PS1-10afx, surveys},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {162},
-    pages = {162},
-      doi = {10.1088/0004-637X/767/2/162},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767..162C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...756..184S,
-   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Valenti}, S. and 
-	{Foley}, R.~J. and {Chornock}, R. and {Chomiuk}, L. and {Berger}, E. and 
-	{Smartt}, S. and {Hurley}, K. and {Barthelmy}, S.~D. and {Levesque}, E.~M. and 
-	{Narayan}, G. and {Botticella}, M.~T. and {Briggs}, M.~S. and 
-	{Connaughton}, V. and {Terada}, Y. and {Gehrels}, N. and {Golenetskii}, S. and 
-	{Mazets}, E. and {Cline}, T. and {von Kienlin}, A. and {Boynton}, W. and 
-	{Chambers}, K.~C. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
-	{Jedicke}, R. and {Kaiser}, N. and {Kirshner}, R.~P. and {Kudritzki}, R.-P. and 
-	{Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
-	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
-	{Stubbs}, C.~W. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waterson}, M.~F.},
-    title = "{SN 2010ay is a Luminous and Broad-lined Type Ic Supernova within a Low-metallicity Host Galaxy}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1110.2363},
- primaryClass = "astro-ph.HE",
- keywords = {gamma-ray burst: general, supernovae: general, supernovae: individual: 2010ay},
-     year = 2012,
-    month = sep,
-   volume = 756,
-      eid = {184},
-    pages = {184},
-      doi = {10.1088/0004-637X/756/2/184},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..184S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999MNRAS.309L..33H,
-   author = {{Hambly}, N.~C. and {Smartt}, S.~J. and {Hodgkin}, S.~T. and 
-	{Jameson}, R.~F. and {Kemp}, S.~N. and {Rolleston}, W.~R.~J. and 
-	{Steele}, I.~A.},
-    title = "{On the parallax of WD 0346++246: a halo white dwarf candidate}",
-  journal = {\mnras},
-     year = 1999,
-    month = nov,
-   volume = 309,
-    pages = {L33-L36},
-      doi = {10.1046/j.1365-8711.1999.03085.x},
-   adsurl = {http://adsabs.harvard.edu/abs/1999MNRAS.309L..33H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996A&A...310..123S,
-   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
-	},
-    title = "{The chemical composition towards the galactic anti-centre. II. Differential abundance analyses and distance determinations.}",
-  journal = {\aap},
- keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, GALAXY: ABUNDANCES},
-     year = 1996,
-    month = jun,
-   volume = 310,
-    pages = {123-131},
-   adsurl = {http://adsabs.harvard.edu/abs/1996A&A...310..123S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011A&A...530A..45J,
-   author = {{Jerkstrand}, A. and {Fransson}, C. and {Kozma}, C.},
-    title = "{The $^{44}$Ti-powered spectrum of SN 1987A}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1103.3653},
- primaryClass = "astro-ph.HE",
- keywords = {line: formation, line: identification, radiative transfer, supernovae: individual: 1987A},
-     year = 2011,
-    month = jun,
-   volume = 530,
-      eid = {A45},
-    pages = {A45},
-      doi = {10.1051/0004-6361/201015937},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530A..45J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-
-@INPROCEEDINGS{2012AAS...21943602J,
-   author = {{Jerkstrand}, A.},
-    title = "{The Progenitor Masses Of Type IIP Supernovae From Late-time Spectral Modeling}",
-booktitle = {American Astronomical Society Meeting Abstracts \#219},
-     year = 2012,
-   series = {American Astronomical Society Meeting Abstracts},
-   volume = 219,
-    month = jan,
-    pages = {#436.02},
-   adsurl = {http://adsabs.harvard.edu/abs/2012AAS...21943602J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.408...87M,
-   author = {{Mazzali}, P.~A. and {Maurer}, I. and {Valenti}, S. and {Kotak}, R. and 
-	{Hunter}, D.},
-    title = "{The Type Ic SN 2007gr: a census of the ejecta from late-time optical-infrared spectra}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.4259},
- primaryClass = "astro-ph.HE",
- keywords = {radiation mechanisms: thermal, supernovae: general, supernovae: individual: SN2007gr},
-     year = 2010,
-    month = oct,
-   volume = 408,
-    pages = {87-96},
-      doi = {10.1111/j.1365-2966.2010.17133.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408...87M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.408..827D,
-   author = {{Dessart}, L. and {Livne}, E. and {Waldman}, R.},
-    title = "{Determining the main-sequence mass of Type II supernova progenitors}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.2268},
- primaryClass = "astro-ph.SR",
- keywords = {hydrodynamics, radiative transfer, stars: atmospheres, stars: supernovae: general},
-     year = 2010,
-    month = oct,
-   volume = 408,
-    pages = {827-840},
-      doi = {10.1111/j.1365-2966.2010.17190.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.408..827D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014A&A...572L..11G,
-   author = {{Groh}, J.~H.},
-    title = "{Early-time spectra of supernovae and their precursor winds. The luminous blue variable/yellow hypergiant progenitor of SN 2013cu}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1408.5397},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, stars: evolution, supernovae: individual: SN 2013cu, stars: winds, outflows},
-     year = 2014,
-    month = dec,
-   volume = 572,
-      eid = {L11},
-    pages = {L11},
-      doi = {10.1051/0004-6361/201424852},
-   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...572L..11G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2014Natur.509..471G,
-   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
-	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
-	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
-	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
-	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
-	{Wheeler}, J.~C.},
-    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1406.7640},
- primaryClass = "astro-ph.HE",
-     year = 2014,
-    month = may,
-   volume = 509,
-    pages = {471-474},
-      doi = {10.1038/nature13304},
-   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@PHDTHESIS{2011PhDT........90J,
-   author = {{Jerkstrand}, A.},
-    title = "{Spectral modeling of nebular-phase supernovae}",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena},
-   school = {PhD Thesis, University of Stockholm, Faculty of Science,  Department of Astronomy (2011).~Advisor:  Claes Fransson},
-     year = 2011,
-    month = December,
-   adsurl = {http://adsabs.harvard.edu/abs/2011PhDT........90J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012A&A...546A..28J,
-   author = {{Jerkstrand}, A. and {Fransson}, C. and {Maguire}, K. and {Smartt}, S. and 
-	{Ergon}, M. and {Spyromilio}, J.},
-    title = "{The progenitor mass of the Type IIP supernova SN 2004et from late-time spectral modeling}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1208.2183},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: SN 2004et, line: formation, line: identification, radiative transfer},
-     year = 2012,
-    month = oct,
-   volume = 546,
-      eid = {A28},
-    pages = {A28},
-      doi = {10.1051/0004-6361/201219528},
-   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...546A..28J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436..222M,
-   author = {{Maguire}, K. and {Sullivan}, M. and {Patat}, F. and {Gal-Yam}, A. and 
-	{Hook}, I.~M. and {Dhawan}, S. and {Howell}, D.~A. and {Mazzali}, P. and 
-	{Nugent}, P.~E. and {Pan}, Y.-C. and {Podsiadlowski}, P. and 
-	{Simon}, J.~D. and {Sternberg}, A. and {Valenti}, S. and {Baltay}, C. and 
-	{Bersier}, D. and {Blagorodnova}, N. and {Chen}, T.-W. and {Ellman}, N. and 
-	{Feindt}, U. and {F{\"o}rster}, F. and {Fraser}, M. and {Gonz{\'a}lez-Gait{\'a}n}, S. and 
-	{Graham}, M.~L. and {Guti{\'e}rrez}, C. and {Hachinger}, S. and 
-	{Hadjiyska}, E. and {Inserra}, C. and {Knapic}, C. and {Laher}, R.~R. and 
-	{Leloudas}, G. and {Margheim}, S. and {McKinnon}, R. and {Molinaro}, M. and 
-	{Morrell}, N. and {Ofek}, E.~O. and {Rabinowitz}, D. and {Rest}, A. and 
-	{Sand}, D. and {Smareglia}, R. and {Smartt}, S.~J. and {Taddia}, F. and 
-	{Walker}, E.~S. and {Walton}, N.~A. and {Young}, D.~R.},
-    title = "{A statistical analysis of circumstellar material in Type Ia supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1308.3899},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, supernovae: general, distance scale},
-     year = 2013,
-    month = nov,
-   volume = 436,
-    pages = {222-240},
-      doi = {10.1093/mnras/stt1586},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..222M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.434.1636T,
-   author = {{Tomasella}, L. and {Cappellaro}, E. and {Fraser}, M. and {Pumo}, M.~L. and 
-	{Pastorello}, A. and {Pignata}, G. and {Benetti}, S. and {Bufano}, F. and 
-	{Dennefeld}, M. and {Harutyunyan}, A. and {Iijima}, T. and {Jerkstrand}, A. and 
-	{Kankare}, E. and {Kotak}, R. and {Magill}, L. and {Nascimbeni}, V. and 
-	{Ochner}, P. and {Siviero}, A. and {Smartt}, S. and {Sollerman}, J. and 
-	{Stanishev}, V. and {Taddia}, F. and {Taubenberger}, S. and 
-	{Turatto}, M. and {Valenti}, S. and {Wright}, D.~E. and {Zampieri}, L.
-	},
-    title = "{Comparison of progenitor mass estimates for the Type IIP SN 2012A}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1305.5789},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2012A, galaxies: individual: NGC 3239},
-     year = 2013,
-    month = sep,
-   volume = 434,
-    pages = {1636-1657},
-      doi = {10.1093/mnras/stt1130},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.434.1636T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...771...97L,
-   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Milisavljevic}, D. and 
-	{Drout}, M. and {Sanders}, N.~E. and {Challis}, P.~M. and {Czekala}, I. and 
-	{Foley}, R.~J. and {Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
-	{Leibler}, C. and {Marion}, G.~H. and {McCrum}, M. and {Narayan}, G. and 
-	{Rest}, A. and {Roth}, K.~C. and {Scolnic}, D. and {Smartt}, S.~J. and 
-	{Smith}, K. and {Soderberg}, A.~M. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Kudritzki}, R.-P. and 
-	{Magnier}, E.~A. and {Price}, P.~A.},
-    title = "{PS1-10bzj: A Fast, Hydrogen-poor Superluminous Supernova in a Metal-poor Host Galaxy}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.1531},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: PS1-10bzj },
-     year = 2013,
-    month = jul,
-   volume = 771,
-      eid = {97},
-    pages = {97},
-      doi = {10.1088/0004-637X/771/2/97},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...771...97L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...770...29C,
-   author = {{Childress}, M.~J. and {Scalzo}, R.~A. and {Sim}, S.~A. and 
-	{Tucker}, B.~E. and {Yuan}, F. and {Schmidt}, B.~P. and {Cenko}, S.~B. and 
-	{Silverman}, J.~M. and {Contreras}, C. and {Hsiao}, E.~Y. and 
-	{Phillips}, M. and {Morrell}, N. and {Jha}, S.~W. and {McCully}, C. and 
-	{Filippenko}, A.~V. and {Anderson}, J.~P. and {Benetti}, S. and 
-	{Bufano}, F. and {de Jaeger}, T. and {Forster}, F. and {Gal-Yam}, A. and 
-	{Le Guillou}, L. and {Maguire}, K. and {Maund}, J. and {Mazzali}, P.~A. and 
-	{Pignata}, G. and {Smartt}, S. and {Spyromilio}, J. and {Sullivan}, M. and 
-	{Taddia}, F. and {Valenti}, S. and {Bayliss}, D.~D.~R. and {Bessell}, M. and 
-	{Blanc}, G.~A. and {Carson}, D.~J. and {Clubb}, K.~I. and {de Burgh-Day}, C. and 
-	{Desjardins}, T.~D. and {Fang}, J.~J. and {Fox}, O.~D. and {Gates}, E.~L. and 
-	{Ho}, I.-T. and {Keller}, S. and {Kelly}, P.~L. and {Lidman}, C. and 
-	{Loaring}, N.~S. and {Mould}, J.~R. and {Owers}, M. and {Ozbilgen}, S. and 
-	{Pei}, L. and {Pickering}, T. and {Pracy}, M.~B. and {Rich}, J.~A. and 
-	{Schaefer}, B.~E. and {Scott}, N. and {Stritzinger}, M. and 
-	{Vogt}, F.~P.~A. and {Zhou}, G.},
-    title = "{Spectroscopic Observations of SN 2012fr: A Luminous, Normal Type Ia Supernova with Early High-velocity Features and a Late Velocity Plateau}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1302.2926},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: individual: NGC 1365, supernovae: general, supernovae: individual: SN 2012fr},
-     year = 2013,
-    month = jun,
-   volume = 770,
-      eid = {29},
-    pages = {29},
-      doi = {10.1088/0004-637X/770/1/29},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770...29C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...731L..11N,
-   author = {{Narayan}, G. and {Foley}, R.~J. and {Berger}, E. and {Botticella}, M.~T. and 
-	{Chornock}, R. and {Huber}, M.~E. and {Rest}, A. and {Scolnic}, D. and 
-	{Smartt}, S. and {Valenti}, S. and {Soderberg}, A.~M. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Flewelling}, H.~A. and {Gates}, G. and 
-	{Grav}, T. and {Kaiser}, N. and {Kirshner}, R.~P. and {Magnier}, E.~A. and 
-	{Morgan}, J.~S. and {Price}, P.~A. and {Riess}, A.~G. and {Stubbs}, C.~W. and 
-	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C. and {Wood-Vasey}, W.~M.},
-    title = "{Displaying the Heterogeneity of the SN 2002cx-like Subclass of Type Ia Supernovae with Observations of the Pan-STARRS-1 Discovered SN 2009ku}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1008.4353},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2009ku},
-     year = 2011,
-    month = apr,
-   volume = 731,
-      eid = {L11},
-    pages = {L11},
-      doi = {10.1088/2041-8205/731/1/L11},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...731L..11N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.410.2767C,
-   author = {{Crockett}, R.~M. and {Smartt}, S.~J. and {Pastorello}, A. and 
-	{Eldridge}, J.~J. and {Stephens}, A.~W. and {Maund}, J.~R. and 
-	{Mattila}, S.},
-    title = "{On the nature of the progenitors of three Type II-P supernovae: 2004et, 2006my and 2006ov}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0912.3302},
- primaryClass = "astro-ph.CO",
- keywords = {stars: evolution, supernovae: general, supernovae: individual: SN 2004et, supernovae: individual: SN 2006my, supernovae: individual: SN 2006ov},
-     year = 2011,
-    month = feb,
-   volume = 410,
-    pages = {2767-2786},
-      doi = {10.1111/j.1365-2966.2010.17652.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.410.2767C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...749L..28V,
-   author = {{Valenti}, S. and {Taubenberger}, S. and {Pastorello}, A. and 
-	{Aramyan}, L. and {Botticella}, M.~T. and {Fraser}, M. and {Benetti}, S. and 
-	{Smartt}, S.~J. and {Cappellaro}, E. and {Elias-Rosa}, N. and 
-	{Ergon}, M. and {Magill}, L. and {Magnier}, E. and {Kotak}, R. and 
-	{Price}, P.~A. and {Sollerman}, J. and {Tomasella}, L. and {Turatto}, M. and 
-	{Wright}, D.~E.},
-    title = "{A Spectroscopically Normal Type Ic Supernova from a Very Massive Progenitor}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1203.1933},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2011bm},
-     year = 2012,
-    month = apr,
-   volume = 749,
-      eid = {L28},
-    pages = {L28},
-      doi = {10.1088/2041-8205/749/2/L28},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...749L..28V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012MNRAS.420.3451M,
-   author = {{Maguire}, K. and {Jerkstrand}, A. and {Smartt}, S.~J. and {Fransson}, C. and 
-	{Pastorello}, A. and {Benetti}, S. and {Valenti}, S. and {Bufano}, F. and 
-	{Leloudas}, G.},
-    title = "{Constraining the physical properties of Type II-Plateau supernovae using nebular phase spectra}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1112.0035},
- primaryClass = "astro-ph.SR",
- keywords = {line: formation, line: profiles, radiative transfer, supernovae: general},
-     year = 2012,
-    month = mar,
-   volume = 420,
-    pages = {3451-3468},
-      doi = {10.1111/j.1365-2966.2011.20276.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.420.3451M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.441..289B,
-   author = {{Benetti}, S. and {Nicholl}, M. and {Cappellaro}, E. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Elias-Rosa}, N. and {Drake}, A.~J. and 
-	{Tomasella}, L. and {Turatto}, M. and {Harutyunyan}, A. and 
-	{Taubenberger}, S. and {Hachinger}, S. and {Morales-Garoffolo}, A. and 
-	{Chen}, T.-W. and {Djorgovski}, S.~G. and {Fraser}, M. and {Gal-Yam}, A. and 
-	{Inserra}, C. and {Mazzali}, P. and {Pumo}, M.~L. and {Sollerman}, J. and 
-	{Valenti}, S. and {Young}, D.~R. and {Dennefeld}, M. and {Le Guillou}, L. and 
-	{Fleury}, M. and {L{\'e}get}, P.-F.},
-    title = "{The supernova CSS121015:004244+132827: a clue for understanding superluminous supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.1311},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: CSS121015:004244+132827},
-     year = 2014,
-    month = jun,
-   volume = 441,
-    pages = {289-303},
-      doi = {10.1093/mnras/stu538},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.441..289B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...763L..28C,
-   author = {{Chen}, T.-W. and {Smartt}, S.~J. and {Bresolin}, F. and {Pastorello}, A. and 
-	{Kudritzki}, R.-P. and {Kotak}, R. and {McCrum}, M. and {Fraser}, M. and 
-	{Valenti}, S.},
-    title = "{The Host Galaxy of the Super-luminous SN 2010gx and Limits on Explosive $^{56}$Ni Production}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1210.4027},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: SN 2010gx},
-     year = 2013,
-    month = feb,
-   volume = 763,
-      eid = {L28},
-    pages = {L28},
-      doi = {10.1088/2041-8205/763/2/L28},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...763L..28C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...580..213B,
-   author = {{Bresolin}, F. and {Kudritzki}, R.-P. and {Lennon}, D.~J. and 
-	{Smartt}, S.~J. and {Herrero}, A. and {Urbaneja}, M.~A. and 
-	{Puls}, J.},
-    title = "{Space Telescope Imaging Spectrograph Ultraviolet Spectroscopy of Early B Supergiants in M31}",
-  journal = {\apj},
-   eprint = {astro-ph/0207326},
- keywords = {Galaxies: Individual: Messier Number: M31, Galaxies: Stellar Content, Stars: Atmospheres, Stars: Early-Type, Stars: Winds, Outflows, Stars: Supergiants},
-     year = 2002,
-    month = nov,
-   volume = 580,
-    pages = {213-224},
-      doi = {10.1086/343072},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...580..213B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.437.1519V,
-   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
-	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
-	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
-	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
-	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
-	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
-	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
-	{Young}, D.~R.},
-    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint Type I supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.2983},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2012hn},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {1519-1533},
-      doi = {10.1093/mnras/stt1983},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437.1519V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.437..656M,
-   author = {{McCrum}, M. and {Smartt}, S.~J. and {Kotak}, R. and {Rest}, A. and 
-	{Jerkstrand}, A. and {Inserra}, C. and {Rodney}, S.~A. and {Chen}, T.-W. and 
-	{Howell}, D.~A. and {Huber}, M.~E. and {Pastorello}, A. and 
-	{Tonry}, J.~L. and {Bresolin}, F. and {Kudritzki}, R.-P. and 
-	{Chornock}, R. and {Berger}, E. and {Smith}, K. and {Botticella}, M.~T. and 
-	{Foley}, R.~J. and {Fraser}, M. and {Milisavljevic}, D. and 
-	{Nicholl}, M. and {Riess}, A.~G. and {Stubbs}, C.~W. and {Valenti}, S. and 
-	{Wood-Vasey}, W.~M. and {Wright}, D. and {Young}, D.~R. and 
-	{Drout}, M. and {Czekala}, I. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Draper}, P. and {Flewelling}, H. and {Hodapp}, K.~W. and {Kaiser}, N. and 
-	{Magnier}, E.~A. and {Metcalfe}, N. and {Price}, P.~A. and {Sweeney}, W. and 
-	{Wainscoat}, R.~J.},
-    title = "{The superluminous supernova PS1-11ap: bridging the gap between low and high redshift}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.4417},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: PS1-11ap},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {656-674},
-      doi = {10.1093/mnras/stt1923},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437..656M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...720L..77G,
-   author = {{Gezari}, S. and {Rest}, A. and {Huber}, M.~E. and {Narayan}, G. and 
-	{Forster}, K. and {Neill}, J.~D. and {Martin}, D.~C. and {Valenti}, S. and 
-	{Smartt}, S.~J. and {Chornock}, R. and {Berger}, E. and {Soderberg}, A.~M. and 
-	{Mattila}, S. and {Kankare}, E. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Dombeck}, T. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
-	{Jedicke}, R. and {Kaiser}, N. and {Kudritzki}, R. and {Luppino}, G. and 
-	{Lupton}, R.~H. and {Magnier}, E.~A. and {Monet}, D.~G. and 
-	{Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and {Rhoads}, P.~H. and 
-	{Siegmund}, W.~A. and {Stubbs}, C.~W. and {Tonry}, J.~L. and 
-	{Wainscoat}, R.~J. and {Waterson}, M.~F. and {Wynn-Williams}, C.~G.
-	},
-    title = "{GALEX and Pan-STARRS1 Discovery of SN IIP 2010aq: The First Few Days After Shock Breakout in a Red Supergiant Star}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1007.4551},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: individual: SN 2010aq, surveys, ultraviolet: general},
-     year = 2010,
-    month = sep,
-   volume = 720,
-    pages = {L77-L81},
-      doi = {10.1088/2041-8205/720/1/L77},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...720L..77G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010MNRAS.403L..11M,
-   author = {{Maguire}, K. and {Kotak}, R. and {Smartt}, S.~J. and {Pastorello}, A. and 
-	{Hamuy}, M. and {Bufano}, F.},
-    title = "{Type II-P supernovae as standardized candles: improvements using near-infrared data}",
-  journal = {\mnras},
- keywords = {supernovae: general, galaxies: general, distance scale},
-     year = 2010,
-    month = mar,
-   volume = 403,
-    pages = {L11-L15},
-      doi = {10.1111/j.1745-3933.2009.00804.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2010MNRAS.403L..11M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998A&A...334..987V,
-   author = {{Venn}, K.~A. and {Smartt}, S.~J. and {Lennon}, D.~J. and {Dufton}, P.~L.
-	},
-    title = "{New identifications for blue objects towards the Galactic center: post-AGB stars, Be/disk stars and others}",
-  journal = {\aap},
- keywords = {STARS: ABUNDANCES, STARS: EMISSION-LINE, BE, STARS: FUNDAMENTAL PARAMETERS, STARS: AGB AND POST-AGB, STARS: SUPERGIANTS, GALAXY: CENTRE},
-     year = 1998,
-    month = jun,
-   volume = 334,
-    pages = {987-999},
-   adsurl = {http://adsabs.harvard.edu/abs/1998A&A...334..987V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...780...44C,
-   author = {{Chornock}, R. and {Berger}, E. and {Gezari}, S. and {Zauderer}, B.~A. and 
-	{Rest}, A. and {Chomiuk}, L. and {Kamble}, A. and {Soderberg}, A.~M. and 
-	{Czekala}, I. and {Dittmann}, J. and {Drout}, M. and {Foley}, R.~J. and 
-	{Fong}, W. and {Huber}, M.~E. and {Kirshner}, R.~P. and {Lawrence}, A. and 
-	{Lunnan}, R. and {Marion}, G.~H. and {Narayan}, G. and {Riess}, A.~G. and 
-	{Roth}, K.~C. and {Sanders}, N.~E. and {Scolnic}, D. and {Smartt}, S.~J. and 
-	{Smith}, K. and {Stubbs}, C.~W. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Magnier}, E.~A. and {Martin}, D.~C. and {Neill}, J.~D. and 
-	{Price}, P.~A. and {Wainscoat}, R.},
-    title = "{The Ultraviolet-bright, Slowly Declining Transient PS1-11af as a Partial Tidal Disruption Event}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1309.3009},
- primaryClass = "astro-ph.CO",
- keywords = {accretion, accretion disks, black hole physics, galaxies: nuclei},
-     year = 2014,
-    month = jan,
-   volume = 780,
-      eid = {44},
-    pages = {44},
-      doi = {10.1088/0004-637X/780/1/44},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...44C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.418L.124V,
-   author = {{Voss}, R. and {Nielsen}, M.~T.~B. and {Nelemans}, G. and {Fraser}, M. and 
-	{Smartt}, S.~J.},
-    title = "{On the association of ULXs with young superclusters: M82 X-1 and a new candidate in NGC 7479}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1109.6336},
- primaryClass = "astro-ph.HE",
- keywords = {black hole physics, galaxies: star clusters: general, X-rays: binaries},
-     year = 2011,
-    month = nov,
-   volume = 418,
-    pages = {L124-L128},
-      doi = {10.1111/j.1745-3933.2011.01157.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.418L.124V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.388.1127H,
-   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Skillman}, E.~D. and 
-	{Evans}, C.~J. and {Trundle}, C. and {Lennon}, D.~J. and {Crowther}, P.~A. and 
-	{Hunter}, I.},
-    title = "{The blue supergiant Sher 25 and its intriguing hourglass nebula}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0803.4262},
- keywords = {stars: abundances , stars: evolution , stars: individual: Sher25 , supergiants},
-     year = 2008,
-    month = aug,
-   volume = 388,
-    pages = {1127-1142},
-      doi = {10.1111/j.1365-2966.2008.13347.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.388.1127H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998A&A...332..681H,
-   author = {{Hibbins}, R.~E. and {Dufton}, P.~L. and {Smartt}, S.~J. and 
-	{Rolleston}, W.~R.~J.},
-    title = "{The carbon abundance in main-sequence B-type stars towards the Galactic anti-centre}",
-  journal = {\aap},
- keywords = {STARS: ABUNDANCES, STARS: ATMOSPHERES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES},
-     year = 1998,
-    month = apr,
-   volume = 332,
-    pages = {681-685},
-   adsurl = {http://adsabs.harvard.edu/abs/1998A&A...332..681H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996A&AS..116..483S,
-   author = {{Smartt}, S.~J. and {Dufton}, P.~L. and {Rolleston}, W.~R.~J.
-	},
-    title = "{The chemical composition towards the Galactic anti-centre. I. Observations and model atmosphere analyses.}",
-  journal = {\aaps},
- keywords = {STARS: ABUNDANCES, STARS: EARLY-TYPE, GALAXY: ABUNDANCES},
-     year = 1996,
-    month = may,
-   volume = 116,
-    pages = {483-494},
-   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..116..483S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...787..138L,
-   author = {{Lunnan}, R. and {Chornock}, R. and {Berger}, E. and {Laskar}, T. and 
-	{Fong}, W. and {Rest}, A. and {Sanders}, N.~E. and {Challis}, P.~M. and 
-	{Drout}, M.~R. and {Foley}, R.~J. and {Huber}, M.~E. and {Kirshner}, R.~P. and 
-	{Leibler}, C. and {Marion}, G.~H. and {McCrum}, M. and {Milisavljevic}, D. and 
-	{Narayan}, G. and {Scolnic}, D. and {Smartt}, S.~J. and {Smith}, K.~W. and 
-	{Soderberg}, A.~M. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Magnier}, E.~A. and {Price}, P.~A. and {Wainscoat}, R.~J.
-	},
-    title = "{Hydrogen-poor Superluminous Supernovae and Long-duration Gamma-Ray Bursts Have Similar Host Galaxies}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1311.0026},
- primaryClass = "astro-ph.HE",
- keywords = {galaxies: abundances, galaxies: dwarf, galaxies: star formation, supernovae: general},
-     year = 2014,
-    month = jun,
-   volume = 787,
-      eid = {138},
-    pages = {138},
-      doi = {10.1088/0004-637X/787/2/138},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..138L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.448.2482J,
-   author = {{Jerkstrand}, A. and {Smartt}, S.~J. and {Sollerman}, J. and 
-	{Inserra}, C. and {Fraser}, M. and {Spyromilio}, J. and {Fransson}, C. and 
-	{Chen}, T.-W. and {Barbarino}, C. and {Dall'Ora}, M. and {Botticella}, M.~T. and 
-	{Della Valle}, M. and {Gal-Yam}, A. and {Valenti}, S. and {Maguire}, K. and 
-	{Mazzali}, P. and {Tomasella}, L.},
-    title = "{Supersolar Ni/Fe production in the Type IIP SN 2012ec}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1410.8394},
- primaryClass = "astro-ph.SR",
- keywords = {line: formation, nuclear reactions, nucleosynthesis, abundances, stars: evolution, supernovae: general, supernovae: individual: SN 2012ec},
-     year = 2015,
-    month = apr,
-   volume = 448,
-    pages = {2482-2494},
-      doi = {10.1093/mnras/stv087},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.448.2482J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.439.3694J,
-   author = {{Jerkstrand}, A. and {Smartt}, S.~J. and {Fraser}, M. and {Fransson}, C. and 
-	{Sollerman}, J. and {Taddia}, F. and {Kotak}, R.},
-    title = "{The nebular spectra of SN 2012aw and constraints on stellar nucleosynthesis from oxygen emission lines}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1311.2031},
- primaryClass = "astro-ph.SR",
- keywords = {radiative transfer - stars: evolution, supernovae: general, supernovae: indi-vidual: SN 2012aw},
-     year = 2014,
-    month = apr,
-   volume = 439,
-    pages = {3694-3703},
-      doi = {10.1093/mnras/stu221},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.3694J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...779L...8F,
-   author = {{Fraser}, M. and {Magee}, M. and {Kotak}, R. and {Smartt}, S.~J. and 
-	{Smith}, K.~W. and {Polshaw}, J. and {Drake}, A.~J. and {Boles}, T. and 
-	{Lee}, C.-H. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Draper}, P.~W. and {Flewelling}, H. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Kudritzki}, R.-P. and {Magnier}, E.~A. and 
-	{Price}, P.~A. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C.},
-    title = "{Detection of an Outburst One Year Prior to the Explosion of SN 2011ht}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1309.4695},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: UGC 5460, stars: massive, supernovae: general, supernovae: individual: SN2011ht},
-     year = 2013,
-    month = dec,
-   volume = 779,
-      eid = {L8},
-    pages = {L8},
-      doi = {10.1088/2041-8205/779/1/L8},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...779L...8F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.438L.101V,
-   author = {{Valenti}, S. and {Sand}, D. and {Pastorello}, A. and {Graham}, M.~L. and 
-	{Howell}, D.~A. and {Parrent}, J.~T. and {Tomasella}, L. and 
-	{Ochner}, P. and {Fraser}, M. and {Benetti}, S. and {Yuan}, F. and 
-	{Smartt}, S.~J. and {Maund}, J.~R. and {Arcavi}, I. and {Gal-Yam}, A. and 
-	{Inserra}, C. and {Young}, D.},
-    title = "{The first month of evolution of the slow-rising Type IIP SN 2013ej in M74$^{â
-}$}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1309.4269},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae individual: SN 2013ej},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {L101-L105},
-      doi = {10.1093/mnrasl/slt171},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438L.101V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009A&A...504..211H,
-   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
-	{Evans}, C.~J.},
-    title = "{Erratum: The VLT-FLAMES survey of massive stars:  atmospheric parameters and rotational velocity  distributions for B-type stars in the Magellanic Clouds}",
-  journal = {\aap},
- keywords = {stars: early-type, stars: fundamental parameters, stars: rotation, stars: evolution, errata, addenda},
-     year = 2009,
-    month = sep,
-   volume = 504,
-    pages = {211-211},
-      doi = {10.1051/0004-6361/20078511e},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...504..211H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009Natur.462..624G,
-   author = {{Gal-Yam}, A. and {Mazzali}, P. and {Ofek}, E.~O. and {Nugent}, P.~E. and 
-	{Kulkarni}, S.~R. and {Kasliwal}, M.~M. and {Quimby}, R.~M. and 
-	{Filippenko}, A.~V. and {Cenko}, S.~B. and {Chornock}, R. and 
-	{Waldman}, R. and {Kasen}, D. and {Sullivan}, M. and {Beshore}, E.~C. and 
-	{Drake}, A.~J. and {Thomas}, R.~C. and {Bloom}, J.~S. and {Poznanski}, D. and 
-	{Miller}, A.~A. and {Foley}, R.~J. and {Silverman}, J.~M. and 
-	{Arcavi}, I. and {Ellis}, R.~S. and {Deng}, J.},
-    title = "{Supernova 2007bi as a pair-instability explosion}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1001.1156},
- primaryClass = "astro-ph.CO",
-     year = 2009,
-    month = dec,
-   volume = 462,
-    pages = {624-627},
-      doi = {10.1038/nature08579},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.462..624G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009Natur.458..865G,
-   author = {{Gal-Yam}, A. and {Leonard}, D.~C.},
-    title = "{A massive hypergiant star as the progenitor of the supernova SN 2005gl}",
-  journal = {\nat},
-     year = 2009,
-    month = apr,
-   volume = 458,
-    pages = {865-867},
-      doi = {10.1038/nature07934},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.458..865G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012Sci...337..927G,
-   author = {{Gal-Yam}, A.},
-    title = "{Luminous Supernovae}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {1208.3217},
- primaryClass = "astro-ph.CO",
-     year = 2012,
-    month = aug,
-   volume = 337,
-    pages = {927-},
-      doi = {10.1126/science.1203601},
-   adsurl = {http://adsabs.harvard.edu/abs/2012Sci...337..927G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...736..159G,
-   author = {{Gal-Yam}, A. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Green}, Y. and 
-	{Yaron}, O. and {Ben-Ami}, S. and {Xu}, D. and {Sternberg}, A. and 
-	{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Ofek}, E.~O. and 
-	{Walters}, R. and {Nugent}, P.~E. and {Poznanski}, D. and {Bloom}, J.~S. and 
-	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Li}, W. and {Silverman}, J.~M. and 
-	{Walker}, E.~S. and {Sullivan}, M. and {Maguire}, K. and {Howell}, D.~A. and 
-	{Mazzali}, P.~A. and {Frail}, D.~A. and {Bersier}, D. and {James}, P.~A. and 
-	{Akerlof}, C.~W. and {Yuan}, F. and {Law}, N. and {Fox}, D.~B. and 
-	{Gehrels}, N.},
-    title = "{Real-time Detection and Rapid Multiwavelength Follow-up Observations of a Highly Subluminous Type II-P Supernova from the Palomar Transient Factory Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1106.0400},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: PTF10vdl},
-     year = 2011,
-    month = aug,
-   volume = 736,
-      eid = {159},
-    pages = {159},
-      doi = {10.1088/0004-637X/736/2/159},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...736..159G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014Natur.509..471G,
-   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
-	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
-	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
-	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
-	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
-	{Wheeler}, J.~C.},
-    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1406.7640},
- primaryClass = "astro-ph.HE",
-     year = 2014,
-    month = may,
-   volume = 509,
-    pages = {471-474},
-      doi = {10.1038/nature13304},
-   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.438..368T,
-   author = {{Tak{\'a}ts}, K. and {Pumo}, M.~L. and {Elias-Rosa}, N. and 
-	{Pastorello}, A. and {Pignata}, G. and {Paillas}, E. and {Zampieri}, L. and 
-	{Anderson}, J.~P. and {Vink{\'o}}, J. and {Benetti}, S. and 
-	{Botticella}, M.-T. and {Bufano}, F. and {Campillay}, A. and 
-	{Cartier}, R. and {Ergon}, M. and {Folatelli}, G. and {Foley}, R.~J. and 
-	{F{\"o}rster}, F. and {Hamuy}, M. and {Hentunen}, V.-P. and 
-	{Kankare}, E. and {Leloudas}, G. and {Morrell}, N. and {Nissinen}, M. and 
-	{Phillips}, M.~M. and {Smartt}, S.~J. and {Stritzinger}, M. and 
-	{Taubenberger}, S. and {Valenti}, S. and {Van Dyk}, S.~D. and 
-	{Haislip}, J.~B. and {LaCluyze}, A.~P. and {Moore}, J.~P. and 
-	{Reichart}, D.},
-    title = "{SN 2009N: linking normal and subluminous Type II-P SNe}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1311.2525},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2008in, supernovae: individual: SN 2009N, galaxies: individual: NGC 4487},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {368-387},
-      doi = {10.1093/mnras/stt2203},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..368T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.437L..51I,
-   author = {{Inserra}, C. and {Smartt}, S.~J. and {Scalzo}, R. and {Fraser}, M. and 
-	{Pastorello}, A. and {Childress}, M. and {Pignata}, G. and {Jerkstrand}, A. and 
-	{Kotak}, R. and {Benetti}, S. and {Della Valle}, M. and {Gal-Yam}, A. and 
-	{Mazzali}, P. and {Smith}, K. and {Sullivan}, M. and {Valenti}, S. and 
-	{Yaron}, O. and {Young}, D. and {Reichart}, D.},
-    title = "{SN2012ca: a stripped envelope core-collapse SN interacting with dense circumstellar medium}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1307.1791},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN2012ca},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {L51-L55},
-      doi = {10.1093/mnrasl/slt138},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437L..51I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.431L.102M,
-   author = {{Maund}, J.~R. and {Fraser}, M. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
-	{Barbarino}, C. and {Childress}, M. and {Gal-Yam}, A. and {Inserra}, C. and 
-	{Pignata}, G. and {Reichart}, D. and {Schmidt}, B. and {Sollerman}, J. and 
-	{Taddia}, F. and {Tomasella}, L. and {Valenti}, S. and {Yaron}, O.
-	},
-    title = "{Supernova 2012ec: identification of the progenitor and early monitoring with PESSTO}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.0170},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2012ec, galaxies: individual: NGC 1084},
-     year = 2013,
-    month = apr,
-   volume = 431,
-    pages = {L102-L106},
-      doi = {10.1093/mnrasl/slt017},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L.102M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.444.2096N,
-   author = {{Nicholl}, M. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Inserra}, C. and 
-	{Anderson}, J.~P. and {Baltay}, C. and {Benetti}, S. and {Chen}, T.-W. and 
-	{Elias-Rosa}, N. and {Feindt}, U. and {Fraser}, M. and {Gal-Yam}, A. and 
-	{Hadjiyska}, E. and {Howell}, D.~A. and {Kotak}, R. and {Lawrence}, A. and 
-	{Leloudas}, G. and {Margheim}, S. and {Mattila}, S. and {McCrum}, M. and 
-	{McKinnon}, R. and {Mead}, A. and {Nugent}, P. and {Rabinowitz}, D. and 
-	{Rest}, A. and {Smith}, K.~W. and {Sollerman}, J. and {Sullivan}, M. and 
-	{Taddia}, F. and {Valenti}, S. and {Walker}, E.~S. and {Young}, D.~R.
-	},
-    title = "{Superluminous supernovae from PESSTO}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1405.1325},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: LSQ12dlf, supernovae: individual: SN 2013dg, supernovae: individual: SSS120810:231802-560926},
-     year = 2014,
-    month = nov,
-   volume = 444,
-    pages = {2096-2113},
-      doi = {10.1093/mnras/stu1579},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.444.2096N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...787..139D,
-   author = {{Dall'Ora}, M. and {Botticella}, M.~T. and {Pumo}, M.~L. and 
-	{Zampieri}, L. and {Tomasella}, L. and {Pignata}, G. and {Bayless}, A.~J. and 
-	{Pritchard}, T.~A. and {Taubenberger}, S. and {Kotak}, R. and 
-	{Inserra}, C. and {Della Valle}, M. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Benitez}, S. and {Bufano}, F. and {Elias-Rosa}, N. and 
-	{Fraser}, M. and {Haislip}, J.~B. and {Harutyunyan}, A. and 
-	{Howell}, D.~A. and {Hsiao}, E.~Y. and {Iijima}, T. and {Kankare}, E. and 
-	{Kuin}, P. and {Maund}, J.~R. and {Morales-Garoffolo}, A. and 
-	{Morrell}, N. and {Munari}, U. and {Ochner}, P. and {Pastorello}, A. and 
-	{Patat}, F. and {Phillips}, M.~M. and {Reichart}, D. and {Roming}, P.~W.~A. and 
-	{Siviero}, A. and {Smartt}, S.~J. and {Sollerman}, J. and {Taddia}, F. and 
-	{Valenti}, S. and {Wright}, D.},
-    title = "{The Type IIP Supernova 2012aw in M95: Hydrodynamical Modeling of the Photospheric Phase from Accurate Spectrophotometric Monitoring}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1404.1294},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: M95, supernovae: general, supernovae: individual: 2012aw},
-     year = 2014,
-    month = jun,
-   volume = 787,
-      eid = {139},
-    pages = {139},
-      doi = {10.1088/0004-637X/787/2/139},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..139D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.439.2873S,
-   author = {{Spiro}, S. and {Pastorello}, A. and {Pumo}, M.~L. and {Zampieri}, L. and 
-	{Turatto}, M. and {Smartt}, S.~J. and {Benetti}, S. and {Cappellaro}, E. and 
-	{Valenti}, S. and {Agnoletto}, I. and {Altavilla}, G. and {Aoki}, T. and 
-	{Brocato}, E. and {Corsini}, E.~M. and {Di Cianno}, A. and {Elias-Rosa}, N. and 
-	{Hamuy}, M. and {Enya}, K. and {Fiaschi}, M. and {Folatelli}, G. and 
-	{Desidera}, S. and {Harutyunyan}, A. and {Howell}, D.~A. and 
-	{Kawka}, A. and {Kobayashi}, Y. and {Leibundgut}, B. and {Minezaki}, T. and 
-	{Navasardyan}, H. and {Nomoto}, K. and {Mattila}, S. and {Pietrinferni}, A. and 
-	{Pignata}, G. and {Raimondo}, G. and {Salvo}, M. and {Schmidt}, B.~P. and 
-	{Sollerman}, J. and {Spyromilio}, J. and {Taubenberger}, S. and 
-	{Valentini}, G. and {Vennes}, S. and {Yoshii}, Y.},
-    title = "{Low luminosity Type II supernovae - II. Pointing towards moderate mass precursors}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1401.5426},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 1999gn, supernovae: individual: SN 2002gd, supernovae: individual: SN 2003Z, supernovae: individual: SN 2004eg, supernovae: individual: SN 2006ov},
-     year = 2014,
-    month = apr,
-   volume = 439,
-    pages = {2873-2892},
-      doi = {10.1093/mnras/stu156},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.2873S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.439L..56F,
-   author = {{Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J. and {Kotak}, R. and 
-	{Lawrence}, A. and {Bruce}, A. and {Valenti}, S. and {Yuan}, F. and 
-	{Benetti}, S. and {Chen}, T.-W. and {Gal-Yam}, A. and {Inserra}, C. and 
-	{Young}, D.~R.},
-    title = "{On the progenitor of the Type IIP SN 2013ej in M74}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1309.4268},
- primaryClass = "astro-ph.CO",
- keywords = {stars: massive, supernovae: general, supernovae: individual: SN 2013ej, galaxies: individual: NGC 628},
-     year = 2014,
-    month = mar,
-   volume = 439,
-    pages = {L56-L60},
-      doi = {10.1093/mnrasl/slt179},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439L..56F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ApJ...598..993K,
-   author = {{Kerins}, E. and {An}, J. and {Evans}, N.~W. and {Baillon}, P. and 
-	{Carr}, B.~J. and {Giraud-H{\'e}raud}, Y. and {Gould}, A. and 
-	{Hewett}, P. and {Kaplan}, J. and {Paulin-Henriksson}, S. and 
-	{Smartt}, S.~J. and {Tsapras}, Y. and {Valls-Gabaud}, D. and 
-	{Point-Agape Collaboration}},
-    title = "{Theory of Pixel Lensing toward M31. II. The Velocity Anisotropy and Flattening of the MACHO Distribution}",
-  journal = {\apj},
-   eprint = {astro-ph/0307284},
- keywords = {Cosmology: Dark Matter, Galaxies: Individual: Messier Number: M31, Cosmology: Gravitational Lensing},
-     year = 2003,
-    month = dec,
-   volume = 598,
-    pages = {993-999},
-      doi = {10.1086/379060},
-   adsurl = {http://adsabs.harvard.edu/abs/2003ApJ...598..993K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997ApJ...490..267R,
-   author = {{Ryans}, R.~S.~I. and {Dufton}, P.~L. and {Keenan}, F.~P. and 
-	{Smartt}, S.~J. and {Sembach}, K.~R. and {Lennon}, D.~J. and 
-	{Venn}, K.~A.},
-    title = "{LS 4825: A Blue Supergiant on the Far Side of the Galaxy}",
-  journal = {\apj},
- keywords = {Galaxy: Kinematics and Dynamics, ISM: Kinematics and Dynamics, Stars: Abundances, Stars: Early-Type, Stars: Individual: Alphanumeric: LS 4825},
-     year = 1997,
-    month = nov,
-   volume = 490,
-    pages = {267-272},
-   adsurl = {http://adsabs.harvard.edu/abs/1997ApJ...490..267R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@PHDTHESIS{1996PhDT.......102S,
-   author = {{Smartt}, S.~J.},
-   school = {, Queen's University of Belfast, (1996)},
-     year = 1996,
-    month = December,
-   adsurl = {http://adsabs.harvard.edu/abs/1996PhDT.......102S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...769...39S,
-   author = {{Sanders}, N.~E. and {Soderberg}, A.~M. and {Foley}, R.~J. and 
-	{Chornock}, R. and {Milisavljevic}, D. and {Margutti}, R. and 
-	{Drout}, M.~R. and {Moe}, M. and {Berger}, E. and {Brown}, W.~R. and 
-	{Lunnan}, R. and {Smartt}, S.~J. and {Fraser}, M. and {Kotak}, R. and 
-	{Magill}, L. and {Smith}, K.~W. and {Wright}, D. and {Huang}, K. and 
-	{Urata}, Y. and {Mulchaey}, J.~S. and {Rest}, A. and {Sand}, D.~J. and 
-	{Chomiuk}, L. and {Friedman}, A.~S. and {Kirshner}, R.~P. and 
-	{Marion}, G.~H. and {Tonry}, J.~L. and {Burgett}, W.~S. and 
-	{Chambers}, K.~C. and {Hodapp}, K.~W. and {Kudritzki}, R.~P. and 
-	{Price}, P.~A.},
-    title = "{PS1-12sk is a Peculiar Supernova from a He-rich Progenitor System in a Brightest Cluster Galaxy Environment}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.1818},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: clusters: general, galaxies: star formation, stars: winds, outflows, supernovae: general, supernovae: individual: PS1-12sk},
-     year = 2013,
-    month = may,
-   volume = 769,
-      eid = {39},
-    pages = {39},
-      doi = {10.1088/0004-637X/769/1/39},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769...39S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004A&A...419..713M,
-   author = {{Munn}, K.~E. and {Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.
-	},
-    title = "{A chemical analysis of five hot stars towards the Galactic centre}",
-  journal = {\aap},
- keywords = {stars: early-type, stars: atmospheres, stars: abundances, Galaxy: evolution, Galaxy: center, Galaxy: abundances},
-     year = 2004,
-    month = may,
-   volume = 419,
-    pages = {713-723},
-      doi = {10.1051/0004-6361:20034560},
-   adsurl = {http://adsabs.harvard.edu/abs/2004A&A...419..713M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.431.2050M,
-   author = {{Mattila}, S. and {Fraser}, M. and {Smartt}, S.~J. and {Meikle}, W.~P.~S. and 
-	{Romero-Ca{\~n}izales}, C. and {Crockett}, R.~M. and {Stephens}, A.
-	},
-    title = "{Supernovae and radio transients in M82}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1207.1889},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: SN 2004am, supernovae: individual: SN 2008iz, galaxies: individual: M82, galaxies: starburst, infrared: galaxies},
-     year = 2013,
-    month = may,
-   volume = 431,
-    pages = {2050-2062},
-      doi = {10.1093/mnras/stt202},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431.2050M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011A&A...536A..65D,
-   author = {{Dunstall}, P.~R. and {Brott}, I. and {Dufton}, P.~L. and {Lennon}, D.~J. and 
-	{Evans}, C.~J. and {Smartt}, S.~J. and {Hunter}, I.},
-    title = "{The VLT-FLAMES survey of massive stars: Nitrogen abundances for Be-type stars in the Magellanic Clouds}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1109.6661},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: early-type, stars: atmospheres, stars: emission-line, Be, stars: rotation},
-     year = 2011,
-    month = dec,
-   volume = 536,
-      eid = {A65},
-    pages = {A65},
-      doi = {10.1051/0004-6361/201117588},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...536A..65D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009A&A...500.1013P,
-   author = {{Pastorello}, A. and {Crockett}, R.~M. and {Martin}, R. and 
-	{Smartt}, S.~J. and {Altavilla}, G. and {Benetti}, S. and {Botticella}, M.~T. and 
-	{Cappellaro}, E. and {Mattila}, S. and {Maund}, J.~R. and {Ryder}, S.~D. and 
-	{Salvo}, M. and {Taubenberger}, S. and {Turatto}, M.},
-    title = "{SN 1999ga: a low-luminosity linear type II supernova?}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0904.0637},
- primaryClass = "astro-ph.SR",
- keywords = {stars: supernovae: general, stars: supernovae: individual: SN 1999ga, stars: supernovae: individual: SN 1979C, stars: supernovae: individual: SN 1980K, stars: supernovae: individual: SN 1990K},
-     year = 2009,
-    month = jun,
-   volume = 500,
-    pages = {1013-1023},
-      doi = {10.1051/0004-6361/200911993},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...500.1013P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.445...30S,
-   author = {{Scalzo}, R.~A. and {Childress}, M. and {Tucker}, B. and {Yuan}, F. and 
-	{Schmidt}, B. and {Brown}, P.~J. and {Contreras}, C. and {Morrell}, N. and 
-	{Hsiao}, E. and {Burns}, C. and {Phillips}, M.~M. and {Campillay}, A. and 
-	{Gonzalez}, C. and {Krisciunas}, K. and {Stritzinger}, M. and 
-	{Graham}, M.~L. and {Parrent}, J. and {Valenti}, S. and {Lidman}, C. and 
-	{Schaefer}, B. and {Scott}, N. and {Fraser}, M. and {Gal-Yam}, A. and 
-	{Inserra}, C. and {Maguire}, K. and {Smartt}, S.~J. and {Sollerman}, J. and 
-	{Sullivan}, M. and {Taddia}, F. and {Yaron}, O. and {Young}, D.~R. and 
-	{Taubenberger}, S. and {Baltay}, C. and {Ellman}, N. and {Feindt}, U. and 
-	{Hadjiyska}, E. and {McKinnon}, R. and {Nugent}, P.~E. and {Rabinowitz}, D. and 
-	{Walker}, E.~S.},
-    title = "{Early ultraviolet emission in the Type Ia supernova LSQ12gdj: No evidence for ongoing shock interaction}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1404.1002},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, supernovae: general, supernovae: individual: SN 2003fg, SN 2007if, SN 2009dc, LSQ12gdj, white dwarfs},
-     year = 2014,
-    month = nov,
-   volume = 445,
-    pages = {30-48},
-      doi = {10.1093/mnras/stu1723},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445...30S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011JPhCS.328a2022D,
-   author = {{de Koter}, A. and {Sana}, H. and {Evans}, C.~J. and {Bagnoli}, T. and 
-	{Bastian}, N. and {Bestenlehner}, J.~M. and {Bonanos}, A. and 
-	{Bressert}, E. and {Brott}, I. and {Cantiello}, M. and {Carraro}, G. and 
-	{Clark}, S. and {Crowther}, P. and {de Mink}, S.~E. and {Doran}, E. and 
-	{Dufton}, P. and {Dunstall}, P. and {Garcia}, M. and {Gr{\"a}fener}, G. and 
-	{H{\'e}nault-Brunet}, V. and {Herrero}, A. and {Howarth}, I. and 
-	{Izzard}, R. and {K{\"o}hler}, K. and {Langer}, N. and {Lennon}, D. and 
-	{Ma{\'{\i}}z Apell{\'a}niz}, J. and {Markova}, N. and {Najarro}, P. and 
-	{Puls}, J. and {Ramirez}, O. and {Sab{\'{\i}}n-Sanjuli{\'a}n}, C. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S. and {Stroud}, V. and 
-	{van Loon}, J.~T. and {Taylor}, W. and {Vink}, J.~S.},
-    title = "{The O stars in the VLT-FLAMES Tarantula Survey}",
-  journal = {Journal of Physics Conference Series},
-     year = 2011,
-    month = dec,
-   volume = 328,
-   number = 1,
-      eid = {012022},
-    pages = {012022},
-      doi = {10.1088/1742-6596/328/1/012022},
-   adsurl = {http://adsabs.harvard.edu/abs/2011JPhCS.328a2022D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007A&A...464..289E,
-   author = {{Evans}, C.~J. and {Lennon}, D.~J. and {Smartt}, S.~J. and {Trundle}, C.
-	},
-    title = "{The VLT-FLAMES survey of massive stars: observations centered on the Magellanic Cloud clusters NGC 330, NGC 346, NGC 2004, and the N11 region}",
-  journal = {\aap},
- keywords = {stars: early-type, stars: emission-line, Be, stars: fundamental parameters, Magellanic Clouds, binaries: spectroscopic, errata, addenda},
-     year = 2007,
-    month = mar,
-   volume = 464,
-    pages = {289-289},
-      doi = {10.1051/0004-6361:20064988e},
-   adsurl = {http://adsabs.harvard.edu/abs/2007A&A...464..289E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012A&A...537A..29R,
-   author = {{Ritchie}, B.~W. and {Stroud}, V.~E. and {Evans}, C.~J. and 
-	{Clark}, J.~S. and {Hunter}, I. and {Lennon}, D.~J. and {Langer}, N. and 
-	{Smartt}, S.~J.},
-    title = "{The VLT-FLAMES survey of massive stars: NGC 346-013 as a test case for massive close binary evolution}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1110.6325},
- primaryClass = "astro-ph.SR",
- keywords = {stars: early-type, stars: fundamental parameters, binaries: spectroscopic, Magellanic Clouds},
-     year = 2012,
-    month = jan,
-   volume = 537,
-      eid = {A29},
-    pages = {A29},
-      doi = {10.1051/0004-6361/201117716},
-   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...537A..29R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999A&AS..139..231D,
-   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.},
-    title = "{A UKST survey of blue objects towards the galactic centre - a search for early-type stars}",
-  journal = {\aaps},
- keywords = {STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, STARS: IMAGING, GALAXY: CENTER},
-     year = 1999,
-    month = oct,
-   volume = 139,
-    pages = {231-244},
-      doi = {10.1051/aas:1999390},
-   adsurl = {http://adsabs.harvard.edu/abs/1999A&AS..139..231D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...794...23D,
-   author = {{Drout}, M.~R. and {Chornock}, R. and {Soderberg}, A.~M. and 
-	{Sanders}, N.~E. and {McKinnon}, R. and {Rest}, A. and {Foley}, R.~J. and 
-	{Milisavljevic}, D. and {Margutti}, R. and {Berger}, E. and 
-	{Calkins}, M. and {Fong}, W. and {Gezari}, S. and {Huber}, M.~E. and 
-	{Kankare}, E. and {Kirshner}, R.~P. and {Leibler}, C. and {Lunnan}, R. and 
-	{Mattila}, S. and {Marion}, G.~H. and {Narayan}, G. and {Riess}, A.~G. and 
-	{Roth}, K.~C. and {Scolnic}, D. and {Smartt}, S.~J. and {Tonry}, J.~L. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Hodapp}, K.~W. and 
-	{Jedicke}, R. and {Kaiser}, N. and {Magnier}, E.~A. and {Metcalfe}, N. and 
-	{Morgan}, J.~S. and {Price}, P.~A. and {Waters}, C.},
-    title = "{Rapidly Evolving and Luminous Transients from Pan-STARRS1}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1405.3668},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general},
-     year = 2014,
-    month = oct,
-   volume = 794,
-      eid = {23},
-    pages = {23},
-      doi = {10.1088/0004-637X/794/1/23},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...794...23D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...796...87I,
-   author = {{Inserra}, C. and {Smartt}, S.~J.},
-    title = "{Superluminous supernovae as standardizable candles and high-redshift distance probes.}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1409.4429},
- primaryClass = "astro-ph.SR",
-     year = 2014,
-   volume = 796,
-    pages = {87},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...796...87I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013RSPTA.37120498O,
-   author = {{O'Brien}, P.~T. and {Smartt}, S.~J.},
-    title = "{Interpreting signals from astrophysical transient experiments}",
-  journal = {Royal Society of London Philosophical Transactions Series A},
-archivePrefix = "arXiv",
-   eprint = {1306.0792},
- primaryClass = "astro-ph.IM",
-     year = 2013,
-    month = apr,
-   volume = 371,
-    pages = {20498},
-      doi = {10.1098/rsta.2012.0498},
-   adsurl = {http://adsabs.harvard.edu/abs/2013RSPTA.37120498O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...765...57C,
-   author = {{Czekala}, I. and {Berger}, E. and {Chornock}, R. and {Pastorello}, A. and 
-	{Marion}, G.~H. and {Margutti}, R. and {Botticella}, M.~T. and 
-	{Challis}, P. and {Ergon}, M. and {Smartt}, S. and {Sollerman}, J. and 
-	{Vink{\'o}}, J. and {Wheeler}, J.~C.},
-    title = "{The Unusually Luminous Extragalactic Nova SN 2010U}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1210.1573},
- primaryClass = "astro-ph.HE",
- keywords = {novae, cataclysmic variables, supernovae: individual: SN 2010U, X-rays: stars},
-     year = 2013,
-    month = mar,
-   volume = 765,
-      eid = {57},
-    pages = {57},
-      doi = {10.1088/0004-637X/765/1/57},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...765...57C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011A&A...530C...1H,
-   author = {{Hunter}, I. and {Lennon}, D.~J. and {Dufton}, P.~L. and {Trundle}, C. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Ryans}, R.~S.~I. and 
-	{Evans}, C.~J.},
-    title = "{The VLT-FLAMES survey of massive stars: atmospheric parameters and rotational velocity distributions for B-type stars in the Magellanic Clouds (Corrigendum)}",
-  journal = {\aap},
- keywords = {stars: early-type, stars: atmospheres, stars: rotation, stars: evolution, galaxies: Magellanic Clouds, errata, addenda},
-     year = 2011,
-    month = jun,
-   volume = 530,
-      eid = {C1},
-    pages = {C1},
-      doi = {10.1051/0004-6361/201016073},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...530C...1H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008MNRAS.387.1344M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
-	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
-	{Gilmore}, G.~F. and {Benn}, C.~R.},
-    title = "{Erratum: Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
-  journal = {\mnras},
- keywords = {errata, addenda , stars: individual: NGC 2403-V37 , supernovae: general , supernovae: individual: 2002kg , supernovae: individual: 2003gm , stars: variables: other , galaxies: individual: NGC 5334},
-     year = 2008,
-    month = jul,
-   volume = 387,
-    pages = {1344-1344},
-      doi = {10.1111/j.1365-2966.2008.13228.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.387.1344M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002Ap&SS.281..187S,
-   author = {{Smartt}, S.~J.},
-    title = "{Detecting the progenitors of core collapse supernovae}",
-  journal = {\apss},
-   eprint = {astro-ph/0112176},
-     year = 2002,
-    month = jul,
-   volume = 281,
-    pages = {187-190},
-      doi = {10.1023/A:1019596907206},
-   adsurl = {http://adsabs.harvard.edu/abs/2002Ap&SS.281..187S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ATel.4535....1G,
-   author = {{Graur}, O. and {Maoz}, D.},
-    title = "{Type-Ia SN 2012fr: no progenitor detected in pre-explosion HST image to M\_V \~{} -5.9 mag}",
-  journal = {The Astronomer's Telegram},
- keywords = {Optical, Supernovae},
-     year = 2012,
-    month = nov,
-   volume = 4535,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4535....1G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436L.109E,
-   author = {{Elias-Rosa}, N. and {Pastorello}, A. and {Maund}, J.~R. and 
-	{Tak{\'a}ts}, K. and {Fraser}, M. and {Smartt}, S.~J. and {Benetti}, S. and 
-	{Pignata}, G. and {Sand}, D. and {Valenti}, S.},
-    title = "{On the progenitor of the Type Ic SN 2013dk in the Antennae galaxies}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1307.7755},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: general, stars: evolution, supernovae: general, supernovae: individual: SN 2013dk, galaxies: individual: NGC 4038},
-     year = 2013,
-    month = nov,
-   volume = 436,
-    pages = {L109-L113},
-      doi = {10.1093/mnrasl/slt124},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436L.109E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012Natur.491..205S,
-   author = {{Smartt}, S.~J.},
-    title = "{Astrophysics: Cosmic explosions in the young Universe}",
-  journal = {\nat},
-     year = 2012,
-    month = nov,
-   volume = 491,
-    pages = {205-206},
-      doi = {10.1038/nature11643},
-   adsurl = {http://adsabs.harvard.edu/abs/2012Natur.491..205S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011BSRSL..80..430T,
-   author = {{Taylor}, W.~D. and {Evans}, C.~J. and {H{\'e}nault-Brunet}, V. and 
-	{Bastian}, N. and {Beletsky}, Y. and {Bestenlehner}, J. and 
-	{Brott}, I. and {Cantiello}, M. and {Carraro}, G. and {Clark}, J.~S. and 
-	{Crowther}, P.~A. and {de Koter}, A. and {de Mink}, S.~E. and 
-	{Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P. and {Gieles}, M. and 
-	{Gr{\"a}fener}, G. and {Herrero}, A. and {Howarth}, I.~D. and 
-	{Langer}, N. and {Lennon}, D.~J. and {Ma{\'{\i}}z Apell{\'a}niz}, J. and 
-	{Markova}, N. and {Najarro}, P. and {Puls}, J. and {Sana}, H. and 
-	{Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and {Stroud}, V.~E. and 
-	{van Loon}, J.~T. and {Vink}, J.~S. and {Walborn}, N.~R.},
-    title = "{The VLT-FLAMES Tarantula Survey}",
-  journal = {Bulletin de la Societe Royale des Sciences de Liege},
-     year = 2011,
-    month = jan,
-   volume = 80,
-    pages = {430-434},
-   adsurl = {http://adsabs.harvard.edu/abs/2011BSRSL..80..430T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997ARA&A..35..309F,
-   author = {{Filippenko}, A.~V.},
-    title = "{Optical Spectra of Supernovae}",
-  journal = {\araa},
-     year = 1997,
-   volume = 35,
-    pages = {309-355},
-      doi = {10.1146/annurev.astro.35.1.309},
-   adsurl = {http://adsabs.harvard.edu/abs/1997ARA&A..35..309F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...491..507U,
-   author = {{Utrobin}, V.~P. and {Chugai}, N.~N.},
-    title = "{Progenitor mass of the type IIP supernova 2005cs}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0809.3766},
- keywords = {stars: supernovae: general, stars: supernovae:, individual: SN 2005cs},
-     year = 2008,
-    month = nov,
-   volume = 491,
-    pages = {507-513},
-      doi = {10.1051/0004-6361:200810272},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...491..507U},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...741...41P,
-   author = {{Pumo}, M.~L. and {Zampieri}, L.},
-    title = "{Radiation-hydrodynamical Modeling of Core-collapse Supernovae: Light Curves and the Evolution of Photospheric Velocity and Temperature}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1108.0688},
- primaryClass = "astro-ph.SR",
- keywords = {distance scale, hydrodynamics, methods: numerical, radiative transfer, supernovae: general, supernovae: individual: SN 1987A},
-     year = 2011,
-    month = nov,
-   volume = 741,
-      eid = {41},
-    pages = {41},
-      doi = {10.1088/0004-637X/741/1/41},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741...41P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.439.2873S,
-   author = {{Spiro}, S. and {Pastorello}, A. and {Pumo}, M.~L. and {Zampieri}, L. and 
-	{Turatto}, M. and {Smartt}, S.~J. and {Benetti}, S. and {Cappellaro}, E. and 
-	{Valenti}, S. and {Agnoletto}, I. and {Altavilla}, G. and {Aoki}, T. and 
-	{Brocato}, E. and {Corsini}, E.~M. and {Di Cianno}, A. and {Elias-Rosa}, N. and 
-	{Hamuy}, M. and {Enya}, K. and {Fiaschi}, M. and {Folatelli}, G. and 
-	{Desidera}, S. and {Harutyunyan}, A. and {Howell}, D.~A. and 
-	{Kawka}, A. and {Kobayashi}, Y. and {Leibundgut}, B. and {Minezaki}, T. and 
-	{Navasardyan}, H. and {Nomoto}, K. and {Mattila}, S. and {Pietrinferni}, A. and 
-	{Pignata}, G. and {Raimondo}, G. and {Salvo}, M. and {Schmidt}, B.~P. and 
-	{Sollerman}, J. and {Spyromilio}, J. and {Taubenberger}, S. and 
-	{Valentini}, G. and {Vennes}, S. and {Yoshii}, Y.},
-    title = "{Low luminosity Type II supernovae - II. Pointing towards moderate mass precursors}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1401.5426},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 1999gn, supernovae: individual: SN 2002gd, supernovae: individual: SN 2003Z, supernovae: individual: SN 2004eg, supernovae: individual: SN 2006ov},
-     year = 2014,
-    month = apr,
-   volume = 439,
-    pages = {2873-2892},
-      doi = {10.1093/mnras/stu156},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.439.2873S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009A&A...506..829U,
-   author = {{Utrobin}, V.~P. and {Chugai}, N.~N.},
-    title = "{High mass of the type IIP supernova 2004et inferred from hydrodynamic modeling}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0908.2403},
- primaryClass = "astro-ph.SR",
- keywords = {stars: supernovae: individual: SN 2004et, stars: supernovae: general},
-     year = 2009,
-    month = nov,
-   volume = 506,
-    pages = {829-834},
-      doi = {10.1051/0004-6361/200912273},
-   adsurl = {http://adsabs.harvard.edu/abs/2009A&A...506..829U},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...793L..22F,
-   author = {{Folatelli}, G. and {Bersten}, M.~C. and {Benvenuto}, O.~G. and 
-	{Van Dyk}, S.~D. and {Kuncarayakti}, H. and {Maeda}, K. and 
-	{Nozawa}, T. and {Nomoto}, K. and {Hamuy}, M. and {Quimby}, R.~M.
-	},
-    title = "{A Blue Point Source at the Location of Supernova 2011dh}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1409.0700},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: close, supernovae: general, supernovae: individual: SN 2011dh},
-     year = 2014,
-    month = oct,
-   volume = 793,
-      eid = {L22},
-    pages = {L22},
-      doi = {10.1088/2041-8205/793/2/L22},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...793L..22F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{1994ApJ...429..300W,
-   author = {{Woosley}, S.~E. and {Eastman}, R.~G. and {Weaver}, T.~A. and 
-	{Pinto}, P.~A.},
-    title = "{SN 1993J: A Type IIb supernova}",
-  journal = {\apj},
- keywords = {Binary Stars, Gamma Ray Observatory, Stellar Evolution, Supernovae, Ubv Spectra, Astronomical Models, Metallic Stars, Neutron Stars, Roche Limit, Stellar Spectrophotometry},
-     year = 1994,
-    month = jul,
-   volume = 429,
-    pages = {300-318},
-      doi = {10.1086/174319},
-   adsurl = {http://adsabs.harvard.edu/abs/1994ApJ...429..300W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1993Natur.364..507N,
-   author = {{Nomoto}, K. and {Suzuki}, T. and {Shigeyama}, T. and {Kumagai}, S. and 
-	{Yamaoka}, H. and {Saio}, H.},
-    title = "{A type IIb model for supernova 1993J}",
-  journal = {\nat},
- keywords = {Astronomical Models, Light Curve, Line Spectra, Stellar Spectra, Supernovae, Asymptotic Giant Branch Stars, B Stars, Binary Stars, Hydrogen, Stellar Envelopes, Stellar Spectrophotometry, Supergiant Stars},
-     year = 1993,
-    month = aug,
-   volume = 364,
-    pages = {507-509},
-      doi = {10.1038/364507a0},
-   adsurl = {http://adsabs.harvard.edu/abs/1993Natur.364..507N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1993ApJ...415L.103F,
-   author = {{Filippenko}, A.~V. and {Matheson}, T. and {Ho}, L.~C.},
-    title = "{The ``Type IIb'' Supernova 1993J in M81: A Close Relative of Type Ib Supernovae}",
-  journal = {\apjl},
-     year = 1993,
-    month = oct,
-   volume = 415,
-    pages = {L103},
-      doi = {10.1086/187043},
-   adsurl = {http://adsabs.harvard.edu/abs/1993ApJ...415L.103F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2000AJ....120.1499M,
-   author = {{Matheson}, T. and {Filippenko}, A.~V. and {Ho}, L.~C. and {Barth}, A.~J. and 
-	{Leonard}, D.~C.},
-    title = "{Detailed Analysis of Early to Late-Time Spectra of Supernova 1993J}",
-  journal = {\aj},
-   eprint = {astro-ph/0006264},
- keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1993J, Techniques: Spectroscopic},
-     year = 2000,
-    month = sep,
-   volume = 120,
-    pages = {1499-1515},
-      doi = {10.1086/301519},
-   adsurl = {http://adsabs.harvard.edu/abs/2000AJ....120.1499M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1992ApJ...391..246P,
-   author = {{Podsiadlowski}, P. and {Joss}, P.~C. and {Hsu}, J.~J.~L.},
-    title = "{Presupernova evolution in massive interacting binaries}",
-  journal = {\apj},
- keywords = {Binary Stars, Massive Stars, Stellar Evolution, Supernovae, Computational Astrophysics, Monte Carlo Method, Stellar Envelopes, Stellar Mass Accretion, Stellar Models, Supernova 1987a},
-     year = 1992,
-    month = may,
-   volume = 391,
-    pages = {246-264},
-      doi = {10.1086/171341},
-   adsurl = {http://adsabs.harvard.edu/abs/1992ApJ...391..246P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{1995PhR...256..173N,
-   author = {{Nomoto}, K.~I. and {Iwamoto}, K. and {Suzuki}, T.},
-    title = "{The evolution and explosion of massive binary stars and Type Ib-Ic-IIb-IIL supernovae.}",
-  journal = {\physrep},
- keywords = {Supernovae: Progenitors, Supernovae: Binaries, Supernovae: Stellar Evolution},
-     year = 1995,
-    month = may,
-   volume = 256,
-    pages = {173-191},
-      doi = {10.1016/0370-1573(94)00107-E},
-   adsurl = {http://adsabs.harvard.edu/abs/1995PhR...256..173N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004A&A...425..649H,
-   author = {{Hirschi}, R. and {Meynet}, G. and {Maeder}, A.},
-    title = "{Stellar evolution with rotation. XII. Pre-supernova models}",
-  journal = {\aap},
-   eprint = {astro-ph/0406552},
- keywords = {stars: evolution, stars: rotation, stars: Wolf-Rayet, stars: supernova: general},
-     year = 2004,
-    month = oct,
-   volume = 425,
-    pages = {649-670},
-      doi = {10.1051/0004-6361:20041095},
-   adsurl = {http://adsabs.harvard.edu/abs/2004A&A...425..649H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2000A&A...361..101M,
-   author = {{Meynet}, G. and {Maeder}, A.},
-    title = "{Stellar evolution with rotation. V. Changes in all the outputs of massive star models}",
-  journal = {\aap},
-   eprint = {astro-ph/0006404},
- keywords = {STARS: ROTATION, STARS: EVOLUTION, STARS: ABUNDANCES, STARS: EARLY-TYPE},
-     year = 2000,
-    month = sep,
-   volume = 361,
-    pages = {101-120},
-   adsurl = {http://adsabs.harvard.edu/abs/2000A&A...361..101M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...756..111M,
-   author = {{Mattila}, S. and {Dahlen}, T. and {Efstathiou}, A. and {Kankare}, E. and 
-	{Melinder}, J. and {Alonso-Herrero}, A. and {P{\'e}rez-Torres}, M.~{\'A}. and 
-	{Ryder}, S. and {V{\"a}is{\"a}nen}, P. and {{\"O}stlin}, G.},
-    title = "{Core-collapse Supernovae Missed by Optical Surveys}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1206.1314},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: individual: Arp 299, galaxies: starburst, infrared: galaxies, supernovae: general, supernovae: individual: SN 2005at SN 2010P},
-     year = 2012,
-    month = sep,
-   volume = 756,
-      eid = {111},
-    pages = {111},
-      doi = {10.1088/0004-637X/756/2/111},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..111M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007PhR...442..269W,
-   author = {{Woosley}, S.~E. and {Heger}, A.},
-    title = "{Nucleosynthesis and remnants in massive stars of solar metallicity}",
-  journal = {\physrep},
-   eprint = {astro-ph/0702176},
-     year = 2007,
-    month = apr,
-   volume = 442,
-    pages = {269-283},
-      doi = {10.1016/j.physrep.2007.02.009},
-   adsurl = {http://adsabs.harvard.edu/abs/2007PhR...442..269W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012A&A...544L..11Y,
-   author = {{Yoon}, S.-C. and {Gr{\"a}fener}, G. and {Vink}, J.~S. and {Kozyreva}, A. and 
-	{Izzard}, R.~G.},
-    title = "{On the nature and detectability of Type Ib/c supernova progenitors}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1207.3683},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: Wolf-Rayet, binaries: general, supernovae: general},
-     year = 2012,
-    month = aug,
-   volume = 544,
-      eid = {L11},
-    pages = {L11},
-      doi = {10.1051/0004-6361/201219790},
-   adsurl = {http://adsabs.harvard.edu/abs/2012A&A...544L..11Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010ApJ...725..940Y,
-   author = {{Yoon}, S.-C. and {Woosley}, S.~E. and {Langer}, N.},
-    title = "{Type Ib/c Supernovae in Binary Systems. I. Evolution and Properties of the Progenitor Stars}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1004.0843},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: close, stars: evolution, stars: massive, stars: rotation, supernovae: general},
-     year = 2010,
-    month = dec,
-   volume = 725,
-    pages = {940-954},
-      doi = {10.1088/0004-637X/725/1/940},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...725..940Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2008MNRAS.384.1109E,
-   author = {{Eldridge}, J.~J. and {Izzard}, R.~G. and {Tout}, C.~A.},
-    title = "{The effect of massive binaries on stellar populations and supernova progenitors}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0711.3079},
- keywords = {binaries: general , stars: evolution , supergiants , supernovae: general , stars: Wolf-Rayet},
-     year = 2008,
-    month = mar,
-   volume = 384,
-    pages = {1109-1118},
-      doi = {10.1111/j.1365-2966.2007.12738.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.384.1109E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2001NewAR..45...53P,
-   author = {{Pollacco}, D.~L. and {Smartt}, S.~J.},
-    title = "{Wide field optical and IR spectroscopy at the ING: present and future prospects}",
-  journal = {\nar},
-     year = 2001,
-    month = jan,
-   volume = 45,
-    pages = {53-57},
-      doi = {10.1016/S1387-6473(00)00128-7},
-   adsurl = {http://adsabs.harvard.edu/abs/2001NewAR..45...53P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1993Natur.364..509P,
-   author = {{Podsiadlowski}, P. and {Hsu}, J.~J.~L. and {Joss}, P.~C. and 
-	{Ross}, R.~R.},
-    title = "{The progenitor of supernova 1993J - A stripped supergiant in a binary system?}",
-  journal = {\nat},
- keywords = {Binary Stars, Stellar Envelopes, Stellar Models, Supergiant Stars, Supernovae, Companion Stars, Light Curve, Radioactive Decay, Stellar Winds, Ubv Spectra},
-     year = 1993,
-    month = aug,
-   volume = 364,
-    pages = {509-511},
-      doi = {10.1038/364509a0},
-   adsurl = {http://adsabs.harvard.edu/abs/1993Natur.364..509P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.442.1483T,
-   author = {{Taylor}, W.~D. and {Evans}, C.~J. and {Sim{\'o}n-D{\'{\i}}az}, S. and 
-	{Sana}, H. and {Langer}, N. and {Smith}, N. and {Smartt}, S.~J.
-	},
-    title = "{Sher 25: pulsating but apparently alone}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1405.2101},
- primaryClass = "astro-ph.SR",
- keywords = {stars: early-type, stars: evolution, stars: individual: Sher 25},
-     year = 2014,
-    month = aug,
-   volume = 442,
-    pages = {1483-1490},
-      doi = {10.1093/mnras/stu925},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.442.1483T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011BlgAJ..15...29M,
-   author = {{Markova}, N. and {Evans}, C.~J. and {Bastian}, N. and {Beletsky}, Y. and 
-	{Bestenlehner}, J. and {Brott}, I. and {Cantiello}, M. and {Carraro}, G. and 
-	{Clark}, J.~S. and {Crowther}, P.~A. and {de Koter}, A. and 
-	{de Mink}, S.~E. and {Doran}, E. and {Dufton}, P.~L. and {Dunstall}, P. and 
-	{Gieles}, M. and {Gr{\"a}efener}, G. and {Henault-Brunet}, V. and 
-	{Herrero}, A. and {Howarth}, I.~D. and {Langer}, N. and {Lennon}, D.~J. and 
-	{Ma{\'{\i}}z Apell{\'a}niz}, J. and {Najarro}, F. and {Puls}, J. and 
-	{Sana}, H. and {Sim{\'o}n-D{\'{\i}}az}, S. and {Smartt}, S.~J. and 
-	{Stroud}, V.~E. and {Taylor}, W.~D. and {van Loon}, J.~T. and 
-	{Vink}, J.~S. and {Walborn}, N.~R.},
-    title = "{The VLT-FLAMES Tarantula Survey}",
-  journal = {Bulgarian Astronomical Journal},
-archivePrefix = "arXiv",
-   eprint = {1103.1242},
- primaryClass = "astro-ph.CO",
- keywords = {open clusters and associations: individual: 30 Doradus, stars: early-type, stars: fundamental parameters, binary stars: spectroscopic},
-     year = 2011,
-   volume = 15,
-    pages = {29},
-   adsurl = {http://adsabs.harvard.edu/abs/2011BlgAJ..15...29M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001A&A...373..608D,
-   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Hambly}, N.~C.},
-    title = "{A UKST survey of blue objects towards the Galactic centre - seven additional fields}",
-  journal = {\aap},
- keywords = {STARS: EARLY-TYPE, STARS: FUNDAMENTAL PARAMETERS, STARS: IMAGING, GALAXY: CENTER},
-     year = 2001,
-    month = jul,
-   volume = 373,
-    pages = {608-624},
-      doi = {10.1051/0004-6361:20010613},
-   adsurl = {http://adsabs.harvard.edu/abs/2001A&A...373..608D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001NewAR..45..111W,
-   author = {{Walton}, N.~A. and {Smartt}, S.~J.},
-    title = "{The ING instrumentation conference discussion {\mdash} options for a competitive observatory}",
-  journal = {\nar},
-   eprint = {astro-ph/0008163},
-     year = 2001,
-    month = jan,
-   volume = 45,
-    pages = {111-124},
-      doi = {10.1016/S1387-6473(00)00139-1},
-   adsurl = {http://adsabs.harvard.edu/abs/2001NewAR..45..111W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009Sci...324..486M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
-    title = "{The Disappearance of the Progenitors of Supernovae 1993J and 2003gd}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {0903.3772},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = apr,
-   volume = 324,
-    pages = {486-},
-      doi = {10.1126/science.1170198},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Sci...324..486M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014AcA....64..197W,
-   author = {{Wyrzykowski}, {\L}. and {Kostrzewa-Rutkowska}, Z. and {Koz{\l}owski}, S. and 
-	{Udalski}, A. and {Poleski}, R. and {Skowron}, J. and {Blagorodnova}, N. and 
-	{Kubiak}, M. and {Szyma{\'n}ski}, M.~K. and {Pietrzy{\'n}ski}, G. and 
-	{Soszy{\'n}ski}, I. and {Ulaczyk}, K. and {Pietrukowicz}, P. and 
-	{Mr{\'o}z}, P.},
-    title = "{OGLE-IV Real-Time Transient Search}",
-  journal = {\actaa},
-archivePrefix = "arXiv",
-   eprint = {1409.1095},
- keywords = {Surveys, supernovae: general, novae, cataclysmic variables},
-     year = 2014,
-    month = sep,
-   volume = 64,
-    pages = {197-232},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AcA....64..197W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2009aaxo.conf..312K,
-   author = {{Kulkarni}, S. and {Kasliwal}, M.~M.},
-    title = "{Transients in the Local Universe}",
-booktitle = {Astrophysics with All-Sky X-Ray Observations},
-     year = 2009,
-archivePrefix = "arXiv",
-   eprint = {0903.0218},
- primaryClass = "astro-ph.HE",
-   editor = {{Kawai}, N. and {Mihara}, T. and {Kohama}, M. and {Suzuki}, M.
-	},
-    month = mar,
-    pages = {312},
-   adsurl = {http://adsabs.harvard.edu/abs/2009aaxo.conf..312K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008AN....329..275K,
-   author = {{Klotz}, A. and {Vachier}, F. and {Bo{\"e}r}, M.},
-    title = "{TAROT: Robotic observatories for gamma-ray bursts and other sources}",
-  journal = {Astronomische Nachrichten},
- keywords = {gamma rays: bursts, methods: data analysis, telescopes},
-     year = 2008,
-    month = mar,
-   volume = 329,
-    pages = {275},
-      doi = {10.1002/asna.200710921},
-   adsurl = {http://cdsads.u-strasbg.fr/abs/2008AN....329..275K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010AdAst2010E..30L,
-   author = {{Lipunov}, V. and {Kornilov}, V. and {Gorbovskoy}, E. and {Shatskij}, N. and 
-	{Kuvshinov}, D. and {Tyurina}, N. and {Belinski}, A. and {Krylov}, A. and 
-	{Balanutsa}, P. and {Chazov}, V. and {Kuznetsov}, A. and {Kortunov}, P. and 
-	{Sankovich}, A. and {Tlatov}, A. and {Parkhomenko}, A. and {Krushinsky}, V. and 
-	{Zalozhnyh}, I. and {Popov}, A. and {Kopytova}, T. and {Ivanov}, K. and 
-	{Yazev}, S. and {Yurkov}, V.},
-    title = "{Master Robotic Net}",
-  journal = {Advances in Astronomy},
-archivePrefix = "arXiv",
-   eprint = {0907.0827},
- primaryClass = "astro-ph.HE",
-     year = 2010,
-   volume = 2010,
-      eid = {349171},
-      doi = {10.1155/2010/349171},
-   adsurl = {http://adsabs.harvard.edu/abs/2010AdAst2010E..30L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...634.1190H,
-   author = {{Howell}, D.~A. and {Sullivan}, M. and {Perrett}, K. and {Bronder}, T.~J. and 
-	{Hook}, I.~M. and {Astier}, P. and {Aubourg}, E. and {Balam}, D. and 
-	{Basa}, S. and {Carlberg}, R.~G. and {Fabbro}, S. and {Fouchez}, D. and 
-	{Guy}, J. and {Lafoux}, H. and {Neill}, J.~D. and {Pain}, R. and 
-	{Palanque-Delabrouille}, N. and {Pritchet}, C.~J. and {Regnault}, N. and 
-	{Rich}, J. and {Taillet}, R. and {Knop}, R. and {McMahon}, R.~G. and 
-	{Perlmutter}, S. and {Walton}, N.~A.},
-    title = "{Gemini Spectroscopy of Supernovae from the Supernova Legacy Survey: Improving High-Redshift Supernova Selection and Classification}",
-  journal = {\apj},
-   eprint = {astro-ph/0509195},
- keywords = {Cosmology: Observations, Methods: Data Analysis, Stars: Supernovae: General, Techniques: Spectroscopic, Surveys},
-     year = 2005,
-    month = dec,
-   volume = 634,
-    pages = {1190-1201},
-      doi = {10.1086/497119},
-   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...634.1190H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005NCimC..28..767R,
-   author = {{Reichart}, D. and {Nysewander}, M. and {Moran}, J. and {Bartelme}, J. and 
-	{Bayliss}, M. and {Foster}, A. and {Clemens}, J.~C. and {Price}, P. and 
-	{Evans}, C. and {Salmonson}, J. and {Trammell}, S. and {Carney}, B. and 
-	{Keohane}, J. and {Gotwals}, R.},
-    title = "{PROMPT: Panchromatic Robotic Optical Monitoring and Polarimetry Telescopes}",
-  journal = {Nuovo Cimento C Geophysics Space Physics C},
-   eprint = {astro-ph/0502429},
-     year = 2005,
-    month = jul,
-   volume = 28,
-    pages = {767},
-      doi = {10.1393/ncc/i2005-10149-6},
-   adsurl = {http://adsabs.harvard.edu/abs/2005NCimC..28..767R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@INPROCEEDINGS{2012SPIE.8444E..4HP,
-   author = {{Perez}, F. and {Bagish}, A. and {Bredthauer}, G. and {Espoz}, J. and 
-	{Jones}, P. and {Pinto}, P.},
-    title = "{Modernization of the 1 meter Swope and 2.5 meter Du Pont telescopes at Las Campanas Observatory}",
-booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-     year = 2012,
-   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-   volume = 8444,
-    month = sep,
-      eid = {84444H},
-      doi = {10.1117/12.927150},
-   adsurl = {http://adsabs.harvard.edu/abs/2012SPIE.8444E..4HP},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2014SPIE.9149E..1EB,
-   author = {{Boroson}, T. and {Brown}, T. and {Hjelstrom}, A. and {Howell}, D.~A. and 
-	{Lister}, T. and {Pickles}, A. and {Rosing}, W. and {Saunders}, E. and 
-	{Street}, R. and {Walker}, Z.},
-    title = "{Science operations for LCOGT: a global telescope network}",
-booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-     year = 2014,
-   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-   volume = 9149,
-    month = aug,
-      eid = {91491E},
-      doi = {10.1117/12.2054776},
-   adsurl = {http://adsabs.harvard.edu/abs/2014SPIE.9149E..1EB},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008ApJ...674...51E,
-   author = {{Ellis}, R.~S. and {Sullivan}, M. and {Nugent}, P.~E. and {Howell}, D.~A. and 
-	{Gal-Yam}, A. and {Astier}, P. and {Balam}, D. and {Balland}, C. and 
-	{Basa}, S. and {Carlberg}, R.~G. and {Conley}, A. and {Fouchez}, D. and 
-	{Guy}, J. and {Hardin}, D. and {Hook}, I. and {Pain}, R. and 
-	{Perrett}, K. and {Pritchet}, C.~J. and {Regnault}, N.},
-    title = "{Verifying the Cosmological Utility of Type Ia Supernovae: Implications of a Dispersion in the Ultraviolet Spectra}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0710.3896},
- keywords = {Cosmology: Cosmological Parameters, Stars: Supernovae: General, Surveys},
-     year = 2008,
-    month = feb,
-   volume = 674,
-    pages = {51-69},
-      doi = {10.1086/524981},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...674...51E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.444.3258M,
-   author = {{Maguire}, K. and {Sullivan}, M. and {Pan}, Y.-C. and {Gal-Yam}, A. and 
-	{Hook}, I.~M. and {Howell}, D.~A. and {Nugent}, P.~E. and {Mazzali}, P. and 
-	{Chotard}, N. and {Clubb}, K.~I. and {Filippenko}, A.~V. and 
-	{Kasliwal}, M.~M. and {Kandrashoff}, M.~T. and {Poznanski}, D. and 
-	{Saunders}, C.~M. and {Silverman}, J.~M. and {Walker}, E. and 
-	{Xu}, D.},
-    title = "{Exploring the spectral diversity of low-redshift Type Ia supernovae using the Palomar Transient Factory}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1408.1430},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, galaxies: general, distance scale},
-     year = 2014,
-    month = nov,
-   volume = 444,
-    pages = {3258-3274},
-      doi = {10.1093/mnras/stu1607},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.444.3258M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013A&G....54f6.17S,
-   author = {{Sullivan}, M.},
-    title = "{Gone in a flash}",
-  journal = {Astronomy and Geophysics},
-     year = 2013,
-    month = dec,
-   volume = 54,
-   number = 6,
-    pages = {060006-6},
-      doi = {10.1093/astrogeo/att202},
-   adsurl = {http://adsabs.harvard.edu/abs/2013A&G....54f6.17S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013MNRAS.436..222M,
-   author = {{Maguire}, K. and {Sullivan}, M. and {Patat}, F. and {Gal-Yam}, A. and 
-	{Hook}, I.~M. and {Dhawan}, S. and {Howell}, D.~A. and {Mazzali}, P. and 
-	{Nugent}, P.~E. and {Pan}, Y.-C. and {Podsiadlowski}, P. and 
-	{Simon}, J.~D. and {Sternberg}, A. and {Valenti}, S. and {Baltay}, C. and 
-	{Bersier}, D. and {Blagorodnova}, N. and {Chen}, T.-W. and {Ellman}, N. and 
-	{Feindt}, U. and {F{\"o}rster}, F. and {Fraser}, M. and {Gonz{\'a}lez-Gait{\'a}n}, S. and 
-	{Graham}, M.~L. and {Guti{\'e}rrez}, C. and {Hachinger}, S. and 
-	{Hadjiyska}, E. and {Inserra}, C. and {Knapic}, C. and {Laher}, R.~R. and 
-	{Leloudas}, G. and {Margheim}, S. and {McKinnon}, R. and {Molinaro}, M. and 
-	{Morrell}, N. and {Ofek}, E.~O. and {Rabinowitz}, D. and {Rest}, A. and 
-	{Sand}, D. and {Smareglia}, R. and {Smartt}, S.~J. and {Taddia}, F. and 
-	{Walker}, E.~S. and {Walton}, N.~A. and {Young}, D.~R.},
-    title = "{A statistical analysis of circumstellar material in Type Ia supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1308.3899},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, supernovae: general, distance scale},
-     year = 2013,
-    month = nov,
-   volume = 436,
-    pages = {222-240},
-      doi = {10.1093/mnras/stt1586},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436..222M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.437.1519V,
-   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
-	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
-	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
-	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
-	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
-	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
-	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
-	{Young}, D.~R.},
-    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint Type I supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.2983},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2012hn},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {1519-1533},
-      doi = {10.1093/mnras/stt1983},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437.1519V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.437L..51I,
-   author = {{Inserra}, C. and {Smartt}, S.~J. and {Scalzo}, R. and {Fraser}, M. and 
-	{Pastorello}, A. and {Childress}, M. and {Pignata}, G. and {Jerkstrand}, A. and 
-	{Kotak}, R. and {Benetti}, S. and {Della Valle}, M. and {Gal-Yam}, A. and 
-	{Mazzali}, P. and {Smith}, K. and {Sullivan}, M. and {Valenti}, S. and 
-	{Yaron}, O. and {Young}, D. and {Reichart}, D.},
-    title = "{SN2012ca: a stripped envelope core-collapse SN interacting with dense circumstellar medium}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1307.1791},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN2012ca},
-     year = 2014,
-    month = jan,
-   volume = 437,
-    pages = {L51-L55},
-      doi = {10.1093/mnrasl/slt138},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.437L..51I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.438L.101V,
-   author = {{Valenti}, S. and {Sand}, D. and {Pastorello}, A. and {Graham}, M.~L. and 
-	{Howell}, D.~A. and {Parrent}, J.~T. and {Tomasella}, L. and 
-	{Ochner}, P. and {Fraser}, M. and {Benetti}, S. and {Yuan}, F. and 
-	{Smartt}, S.~J. and {Maund}, J.~R. and {Arcavi}, I. and {Gal-Yam}, A. and 
-	{Inserra}, C. and {Young}, D.},
-    title = "{The first month of evolution of the slow-rising Type IIP SN 2013ej in M74$^{â
-}$}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1309.4269},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae individual: SN 2013ej},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {L101-L105},
-      doi = {10.1093/mnrasl/slt171},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438L.101V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.441..289B,
-   author = {{Benetti}, S. and {Nicholl}, M. and {Cappellaro}, E. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Elias-Rosa}, N. and {Drake}, A.~J. and 
-	{Tomasella}, L. and {Turatto}, M. and {Harutyunyan}, A. and 
-	{Taubenberger}, S. and {Hachinger}, S. and {Morales-Garoffolo}, A. and 
-	{Chen}, T.-W. and {Djorgovski}, S.~G. and {Fraser}, M. and {Gal-Yam}, A. and 
-	{Inserra}, C. and {Mazzali}, P. and {Pumo}, M.~L. and {Sollerman}, J. and 
-	{Valenti}, S. and {Young}, D.~R. and {Dennefeld}, M. and {Le Guillou}, L. and 
-	{Fleury}, M. and {L{\'e}get}, P.-F.},
-    title = "{The supernova CSS121015:004244+132827: a clue for understanding superluminous supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1310.1311},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: CSS121015:004244+132827},
-     year = 2014,
-    month = jun,
-   volume = 441,
-    pages = {289-303},
-      doi = {10.1093/mnras/stu538},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.441..289B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ATel.4495....1W,
-   author = {{Wyrzykowski}, L. and {Udalski}, A. and {Kozlowski}, S.},
-    title = "{18 supernovae candidates detected by the OGLE-IV survey}",
-  journal = {The Astronomer's Telegram},
- keywords = {Optical, Supernovae, Transient},
-     year = 2012,
-    month = oct,
-   volume = 4495,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4495....1W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013AcA....63....1K,
-   author = {{Koz{\l}owski}, S. and {Udalski}, A. and {Wyrzykowski}, {\L}. and 
-	{Poleski}, R. and {Pietrukowicz}, P. and {Skowron}, J. and {Szyma{\'n}ski}, M.~K. and 
-	{Kubiak}, M. and {Pietrzy{\'n}ski}, G. and {Soszy{\'n}ski}, I. and 
-	{Ulaczyk}, K.},
-    title = "{Supernovae and Other Transients in the OGLE-IV Magellanic Bridge Data}",
-  journal = {\actaa},
-archivePrefix = "arXiv",
-   eprint = {1301.3909},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, Magellanic Clouds, Surveys},
-     year = 2013,
-    month = mar,
-   volume = 63,
-    pages = {1-19},
-   adsurl = {http://adsabs.harvard.edu/abs/2013AcA....63....1K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010AdAst2010E..30L,
-   author = {{Lipunov}, V. and {Kornilov}, V. and {Gorbovskoy}, E. and {Shatskij}, N. and 
-	{Kuvshinov}, D. and {Tyurina}, N. and {Belinski}, A. and {Krylov}, A. and 
-	{Balanutsa}, P. and {Chazov}, V. and {Kuznetsov}, A. and {Kortunov}, P. and 
-	{Sankovich}, A. and {Tlatov}, A. and {Parkhomenko}, A. and {Krushinsky}, V. and 
-	{Zalozhnyh}, I. and {Popov}, A. and {Kopytova}, T. and {Ivanov}, K. and 
-	{Yazev}, S. and {Yurkov}, V.},
-    title = "{Master Robotic Net}",
-  journal = {Advances in Astronomy},
-archivePrefix = "arXiv",
-   eprint = {0907.0827},
- primaryClass = "astro-ph.HE",
-     year = 2010,
-   volume = 2010,
-      eid = {349171},
-      doi = {10.1155/2010/349171},
-   adsurl = {http://adsabs.harvard.edu/abs/2010AdAst2010E..30L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014Natur.509..471G,
-   author = {{Gal-Yam}, A. and {Arcavi}, I. and {Ofek}, E.~O. and {Ben-Ami}, S. and 
-	{Cenko}, S.~B. and {Kasliwal}, M.~M. and {Cao}, Y. and {Yaron}, O. and 
-	{Tal}, D. and {Silverman}, J.~M. and {Horesh}, A. and {De Cia}, A. and 
-	{Taddia}, F. and {Sollerman}, J. and {Perley}, D. and {Vreeswijk}, P.~M. and 
-	{Kulkarni}, S.~R. and {Nugent}, P.~E. and {Filippenko}, A.~V. and 
-	{Wheeler}, J.~C.},
-    title = "{A Wolf-Rayet-like progenitor of SN 2013cu from spectral observations of a stellar wind}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1406.7640},
- primaryClass = "astro-ph.HE",
-     year = 2014,
-    month = may,
-   volume = 509,
-    pages = {471-474},
-      doi = {10.1038/nature13304},
-   adsurl = {http://adsabs.harvard.edu/abs/2014Natur.509..471G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008Natur.453..469S,
-   author = {{Soderberg}, A.~M. and {Berger}, E. and {Page}, K.~L. and {Schady}, P. and 
-	{Parrent}, J. and {Pooley}, D. and {Wang}, X.-Y. and {Ofek}, E.~O. and 
-	{Cucchiara}, A. and {Rau}, A. and {Waxman}, E. and {Simon}, J.~D. and 
-	{Bock}, D.~C.-J. and {Milne}, P.~A. and {Page}, M.~J. and {Barentine}, J.~C. and 
-	{Barthelmy}, S.~D. and {Beardmore}, A.~P. and {Bietenholz}, M.~F. and 
-	{Brown}, P. and {Burrows}, A. and {Burrows}, D.~N. and {Byrngelson}, G. and 
-	{Cenko}, S.~B. and {Chandra}, P. and {Cummings}, J.~R. and {Fox}, D.~B. and 
-	{Gal-Yam}, A. and {Gehrels}, N. and {Immler}, S. and {Kasliwal}, M. and 
-	{Kong}, A.~K.~H. and {Krimm}, H.~A. and {Kulkarni}, S.~R. and 
-	{Maccarone}, T.~J. and {M{\'e}sz{\'a}ros}, P. and {Nakar}, E. and 
-	{O'Brien}, P.~T. and {Overzier}, R.~A. and {de Pasquale}, M. and 
-	{Racusin}, J. and {Rea}, N. and {York}, D.~G.},
-    title = "{An extremely luminous X-ray outburst at the birth of a supernova}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0802.1712},
-     year = 2008,
-    month = may,
-   volume = 453,
-    pages = {469-474},
-      doi = {10.1038/nature06997},
-   adsurl = {http://adsabs.harvard.edu/abs/2008Natur.453..469S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...775L...7C,
-   author = {{Cao}, Y. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Horesh}, A. and 
-	{Hancock}, P. and {Valenti}, S. and {Cenko}, S.~B. and {Kulkarni}, S.~R. and 
-	{Gal-Yam}, A. and {Gorbikov}, E. and {Ofek}, E.~O. and {Sand}, D. and 
-	{Yaron}, O. and {Graham}, M. and {Silverman}, J.~M. and {Wheeler}, J.~C. and 
-	{Marion}, G.~H. and {Walker}, E.~S. and {Mazzali}, P. and {Howell}, D.~A. and 
-	{Li}, K.~L. and {Kong}, A.~K.~H. and {Bloom}, J.~S. and {Nugent}, P.~E. and 
-	{Surace}, J. and {Masci}, F. and {Carpenter}, J. and {Degenaar}, N. and 
-	{Gelino}, C.~R.},
-    title = "{Discovery, Progenitor and Early Evolution of a Stripped Envelope Supernova iPTF13bvn}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1307.1470},
- primaryClass = "astro-ph.SR",
- keywords = {instrumentation: adaptive optics, shock waves, stars: Wolf-Rayet, supernovae: individual: iPTF13bvn, surveys},
-     year = 2013,
-    month = sep,
-   volume = 775,
-      eid = {L7},
-    pages = {L7},
-      doi = {10.1088/2041-8205/775/1/L7},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775L...7C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ATel.5850....1S,
-   author = {{Smartt}, S.~J. and {Smith}, K.~W. and {Wright}, D. and {Young}, D.~R. and 
-	{Kotak}, R. and {Nicholl}, M. and {Polshaw}, J. and {Inserra}, C. and 
-	{Chen}, T.-W. and {Terreran}, G. and {Gall}, E. and {Fraser}, M. and 
-	{McCrum}, M. and {Valenti}, S. and {Foley}, R. and {Lawrence}, A. and 
-	{Gezari}, S. and {Burgett}, W. and {Chambers}, K. and {Huber}, M. and 
-	{Kudritzki}, R.~P. and {Magnier}, E. and {Morgan}, J. and {Tonry}, J. and 
-	{Sweeney}, W. and {Stubbs}, C.~W.~C. and {Kirshner}, R. and 
-	{Metcalfe}, N. and {Rest}, P.~D.~A.},
-    title = "{Pan-STARRS1 3Pi transients}",
-  journal = {The Astronomer's Telegram},
- keywords = {Optical, AGN, Supernovae, Transient},
-     year = 2014,
-    month = feb,
-   volume = 5850,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ATel.5850....1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...788...48S,
-   author = {{Shappee}, B.~J. and {Prieto}, J.~L. and {Grupe}, D. and {Kochanek}, C.~S. and 
-	{Stanek}, K.~Z. and {De Rosa}, G. and {Mathur}, S. and {Zu}, Y. and 
-	{Peterson}, B.~M. and {Pogge}, R.~W. and {Komossa}, S. and {Im}, M. and 
-	{Jencson}, J. and {Holoien}, T.~W.-S. and {Basu}, U. and {Beacom}, J.~F. and 
-	{Szczygie{\l}}, D.~M. and {Brimacombe}, J. and {Adams}, S. and 
-	{Campillay}, A. and {Choi}, C. and {Contreras}, C. and {Dietrich}, M. and 
-	{Dubberley}, M. and {Elphick}, M. and {Foale}, S. and {Giustini}, M. and 
-	{Gonzalez}, C. and {Hawkins}, E. and {Howell}, D.~A. and {Hsiao}, E.~Y. and 
-	{Koss}, M. and {Leighly}, K.~M. and {Morrell}, N. and {Mudd}, D. and 
-	{Mullins}, D. and {Nugent}, J.~M. and {Parrent}, J. and {Phillips}, M.~M. and 
-	{Pojmanski}, G. and {Rosing}, W. and {Ross}, R. and {Sand}, D. and 
-	{Terndrup}, D.~M. and {Valenti}, S. and {Walker}, Z. and {Yoon}, Y.
-	},
-    title = "{The Man behind the Curtain: X-Rays Drive the UV through NIR Variability in the 2013 Active Galactic Nucleus Outburst in NGC 2617}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1310.2241},
- primaryClass = "astro-ph.HE",
- keywords = {galaxies: active, galaxies: nuclei, galaxies: Seyfert, line: formation, line: profiles},
-     year = 2014,
-    month = jun,
-   volume = 788,
-      eid = {48},
-    pages = {48},
-      doi = {10.1088/0004-637X/788/1/48},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...788...48S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2003PASP..115.1289V,
-    author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{On the Progenitor of the Type II-Plateau Supernova 2003gd in M74}",
-    journal = {\pasp},
-    year = 2003,
-    month = nov,
-    volume = 115,
-    pages = {1289-1295},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003PASP..115.1289V&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2003IAUC.8150....2E,
-    author = {{Evans}, R. and {McNaught}, R.~H.},
-    title = "{Supernova 2003gd in M74}",
-    journal = {\iauc},
-    year = 2003,
-    month = jun,
-    volume = 8150,
-    pages = {2-+},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003IAUC.8150....2E&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003IAUC.8150....3G,
-    author = {{Garnavich}, P. and {Bass}, E.},
-    title = "{Supernova 2003gd in M74}",
-    journal = {\iauc},
-    year = 2003,
-    volume = 8150,
-    month = jun,
-    pages = {3-+},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003IAUC.8150....3G&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003IAUC.8152....1K,
-    author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Smartt}, S.~J. and {Benn}, C.},
-    title = "{Supernova 2003gd in M74}",
-    journal = {\iauc},
-    year = 2003,
-    volume = 8152,
-    month = jun,
-    pages = {1-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003IAUC.8152....1K&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2002ApJ...566L..63H,
-    author = {{Hamuy}, M. and {Pinto}, P.~A.},
-    title = "{Type II Supernovae as Standardized Candles}",
-    journal = {\apjl},
-    year = 2002,
-    month = feb,
-    volume = 566,
-    pages = {L63-L65},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002ApJ...566L..63H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1968AJ.....73.1021K,
-    author = {{Kowal}, C.~T.},
-    title = "{Absolute magnitudes of supernovae.}",
-    journal = {\aj},
-    year = 1968,
-    month = dec,
-    volume = 73,
-    pages = {1021-1024},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1968AJ.....73.1021K&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999AJ....117..707R,
-    author = {{Riess}, A.~G. and {Kirshner}, R.~P. and {Schmidt}, B.~P. and 
-	{Jha}, S. and {Challis}, P. and {Garnavich}, P.~M. and {Esin}, A.~A. and {Carpenter}, C. and {et al.}},
-    title = "{BVRI Light Curves for 22 Type IA Supernovae}",
-    journal = {\aj},
-    year = 1999,
-    month = feb,
-    volume = 117,
-    pages = {707-724},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1999AJ....117..707R&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...553...47F,
-    author = {{Freedman}, W.~L. and {Madore}, B.~F. and {Gibson}, B.~K. and 
-	{Ferrarese}, L. and {Kelson}, D.~D. and {Sakai}, S. and {Mould}, J.~R. and {Kennicutt}, R.~C. and {et al.}},
-    title = "{Final Results from the Hubble Space Telescope Key Project to Measure the Hubble Constant}",
-    journal = {\apj},
-    year = 2001,
-    month = may,
-    volume = 553,
-    pages = {47-72},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001ApJ...553...47F&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ApJ...594....1T,
-    author = {{Tonry}, J.~L. and {Schmidt}, B.~P. and {Barris}, B. and {Candia}, P. and {Challis}, P. and {Clocchiatti}, A. and {Coil}, A.~L. and {Filippenko}, A.~V. and {\rm et al.}},
-    title = "{Cosmological Results from High-z Supernovae}",
-    journal = {\apj},
-    year = 2003,
-    month = sep,
-    volume = 594,
-    pages = {1-24},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003ApJ...594....1T&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999ApJ...517..565P,
-    author = {{Perlmutter}, S. and {Aldering}, G. and {Goldhaber}, G. and 
-	{Knop}, R.~A. and {Nugent}, P. and {Castro}, P.~G. and {Deustua}, S. and 
-	{Fabbro}, S. and {et al.}},
-    title = "{Measurements of Omega and Lambda from 42 High-Redshift Supernovae}",
-    journal = {\apj},
-    year = 1999,
-    month = jun,
-    volume = 517,
-    pages = {565-586},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1999ApJ...517..565P&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{astro-ph/0310057,
-    author = {{Zampieri}, L. and {Ramina}, M. and {Pastorello}, A.},
-    title = "{Understanding Type II Supernovae, astro-ph/0310057}",
-    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
-    year = 2004,
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{astro-ph/0309122,
-    author = {{Hamuy}, M.},
-    title = "{The Standard Candle Method for Type II Supernovae and the Hubble Constant, astro-ph/0309122}",
-    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
-    year = 2004,
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...558..615H,
-    author = {{Hamuy}, M. and {Pinto}, P.~A. and {Maza}, J. and {Suntzeff}, N.~B. and 
-	{Phillips}, M.~M. and {Eastman}, R.~G. and {Smith}, R.~C. and 
-	{Corbally}, C.~J. and {et al.}},
-    title = "{The Distance to SN 1999em from the Expanding Photosphere Method}",
-    journal = {\apj},
-    year = 2001,
-    month = sep,
-    volume = 558,
-    pages = {615-642},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001ApJ...558..615H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ApJ...582..905H,
-    author = {{Hamuy}, M.},
-    title = "{Observed and Physical Properties of Core-Collapse Supernovae}",
-    journal = {\apj},
-    year = 2003,
-    month = jan,
-    volume = 582,
-    pages = {905-914},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003ApJ...582..905H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1992ApJ...395..366S,
-    author = {{Schmidt}, B.~P. and {Kirshner}, R.~P. and {Eastman}, R.~G.},
-    title = "{Expanding photospheres of type II supernovae and the extragalactic distance scale}",
-    journal = {\apj},
-    year = 1992,
-    month = aug,
-    volume = 395,
-    pages = {366-386},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992ApJ...395..366S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996ApJ...466..911E,
-    author = {{Eastman}, R.~G. and {Schmidt}, B.~P. and {Kirshner}, R.},
-    title = "{The Atmospheres of Type II Supernovae and the Expanding Photosphere Method}",
-    journal = {\apj},
-    year = 1996,
-    month = aug,
-    volume = 466,
-    pages = {911-+},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1996ApJ...466..911E&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000ApJ...545..444B,
-    author = {{Baron}, E. and {Branch}, D. and {Hauschildt}, P.~H. and {Filippenko}, A.~V. and 
-	{Kirshner}, R.~P. and {Challis}, P.~M. and {Jha}, S. and {Chevalier}, R. and {et al.}},
-    title = "{Preliminary Spectral Analysis of the Type II Supernova 1999EM}",
-    journal = {\apj},
-    year = 2000,
-    month = dec,
-    volume = 545,
-    pages = {444-448},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000ApJ...545..444B&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1989ApJ...345..245C,
-    author = {{Cardelli}, J.~A. and {Clayton}, G.~C. and {Mathis}, J.~S.},
-    title = "{The relationship between infrared, optical, and ultraviolet extinction}",
-    journal = {\apj},
-    year = 1989,
-    month = oct,
-    volume = 345,
-    pages = {245-256},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1989ApJ...345..245C&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002PASP..114...35L,
-    author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Gates}, E.~L. and 
-	{Li}, W. and {Eastman}, R.~G. and {Barth}, A.~J. and {Bus}, S.~J. and 
-	{Chornock}, R. and {et al.}},
-    title = "{The Distance to SN 1999em in NGC 1637 from the Expanding Photosphere Method}",
-    journal = {\pasp},
-    year = 2002,
-    month = jan,
-    volume = 114,
-    pages = {35-64},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002PASP..114...35L&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002AJ....124.2490L,
-    author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Li}, W. and {Matheson}, T. and 
-	{Kirshner}, R.~P. and {Chornock}, R. and {Van Dyk}, S.~D. and 
-	{Berlind}, P. and {et al.}},
-    title = "{A Study of the Type II-Plateau Supernova 1999gi and the Distance to its Host Galaxy, NGC 3184}",
-    journal = {\aj},
-    year = 2002,
-    month = nov,
-    volume = 124,
-    pages = {2490-2505},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002AJ....124.2490L&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001PhDTHamuy,
-    author = {{Hamuy}, M.},
-    title = "{Type II Supernovae as Distance Indicators}",
-    journal = {Ph.D.~Thesis},
-    year = 2001
-}
-
-@ARTICLE{2002GCN..1242....1H,
-    author = {{Henden}, A.},
-    title = "{SN2002ap (SN/GRB?) UBVRI field photometry.}",
-    journal = {GRB Circular Network},
-    year = 2002,
-    volume = 1242,
-    pages = {1-+},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002GCN..1242....1H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ApJ...594..247L,
-    author = {{Leonard}, D.~C. and {Kanbur}, S.~M. and {Ngeow}, C.~C. and 
-	{Tanvir}, N.~R.},
-    title = "{The Cepheid Distance to NGC 1637: A Direct Test of the Expanding Photosphere Method Distance to SN 1999em}",
-    journal = {\apj},
-    year = 2003,
-    month = sep,
-    volume = 594,
-    pages = {247-278},
-    adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2003ApJ...594..247L&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1981ApJS...47..357B,
-    author = {{Bahcall}, J.~N. and {Soneira}, R.~M.},
-    title = "{Predicted star counts in selected fields and photometric bands Applications to galactic structure, the disk luminosity function, and the detection of a massive halo}",
-    journal = {\apjs},
-    year = 1981,
-    month = dec,
-    volume = 47,
-    pages = {357-403},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1981ApJS...47..357B&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@BOOK{2000asqu.book.....C,
-    author = {{Drilling}, J.~S. and {Landolt}, A.~U.},
-    title = "{in Allen's astrophysical quantities}",
-    publisher = {4th ed. Publisher: New York: AIP Press; Springer, 2000. Edited by Arthur N.~Cox. ISBN: 0387987460},
-    year = 2000,
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000asqu.book.....C&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996AJ....111.2280S,
-    author = {{Sohn}, Y. and {Davidge}, T.~J.},
-    title = "{Multicolor CCD Photometry of Supergiants in the Disk of NGC 628}",
-    journal = {\aj},
-    year = 1996,
-    month = jun,
-    volume = 111,
-    pages = {2280-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1996AJ....111.2280S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996A&AS..119..499S,
-    author = {{Sharina}, M.~E. and {Karachentsev}, I.~D. and {Tikhonov}, N.~A.
-	},
-    title = "{Photometric distances to NGC 628 and its four companions.}",
-    journal = {\aaps},
-    year = 1996,
-    month = nov,
-    volume = 119,
-    pages = {499-507},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1996A&AS..119..499S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1994MNRAS.271..530R,
-    author = {{Rozanski}, R. and {Rowan-Robinson}, M.},
-    title = "{The Accuracy of the Brightest Stars in Galaxies as Distance Indicators}",
-    journal = {\mnras},
-    year = 1994,
-    month = dec,
-    volume = 271,
-    pages = {530-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1994MNRAS.271..530R&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998AJ....115..130S,
-    author = {{Sohn}, Y. and {Davidge}, T.~J.},
-    title = "{VRI CCD photometry of supergiant stars in the barred galaxies NGC 925 and NGC 1637}",
-    journal = {\aj},
-    year = 1998,
-    month = jan,
-    volume = 115,
-    pages = {130-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....115..130S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998ApJ...500..525S,
-    author = {{Schlegel}, D.~J. and {Finkbeiner}, D.~P. and {Davis}, M.},
-    title = "{Maps of Dust Infrared Emission for Use in Estimation of Reddening and Cosmic Microwave Background Radiation Foregrounds}",
-    journal = {\apj},
-    year = 1998,
-    month = jun,
-    volume = 500,
-    pages = {525-+},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1998ApJ...500..525S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1984A&A...132...20S,
-    author = {{Shostak}, G.~S. and {van der Kruit}, P.~C.},
-    title = "{Studies of nearly face-on spiral galaxies. II - H I synthesis observations and optical surface photometry of NGC 628}",
-    journal = {\aap},
-    year = 1984,
-    month = mar,
-    volume = 132,
-    pages = {20-32},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1984A&A...132...20S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001NewAR..45..105I,
-    author = {{Irwin}, M. and {Lewis}, J.},
-    title = "{INT WFS pipeline processing}",
-    journal = {New Astronomy Review},
-    year = 2001,
-    month = jan,
-    volume = 45,
-    pages = {105-110},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001NewAR..45..105I&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@BOOK{SUN50.24,
-    author = {{Howarth}, I.~D. and {Murray}, J. and {Mills}, D. and {Berry}, D.~S.},
-    title = "{Starlink User Note 50.24}",
-    publisher = {Rutherford Appleton Laboratory},
-    year = 2003,
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000asqu.book.....C&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.338..939E,
-    author = {{Elmhamdi}, A. and {Danziger}, I.~J. and {Chugai}, N. and {Pastorello}, A. and 
-        {Turatto}, M. and {Cappellaro}, E. and {Altavilla}, G. and {Benetti}, S. and 
-        {Patat}, F. and {Salvo}, M.},
-    title = "{Photometry and spectroscopy of the Type IIP SN 1999em from outburst to dust formation}",
-    journal = {\mnras},
-    year = 2003,
-    month = feb,
-    volume = 338,
-    pages = {939-956},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003MNRAS.338..939E&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1992ApJS...78...61B,
-    author = {{Belley}, J. and {Roy}, J.},
-    title = "{The abundance gradients across the spiral galaxies NGC 628 and NGC 6946}",
-    journal = {\apjs},
-    year = 1992,
-    month = jan,
-    volume = 78,
-    pages = {61-85},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992ApJS...78...61B&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998AJ....116..673F,
-    author = {{Ferguson}, A.~M.~N. and {Gallagher}, J.~S. and {Wyse}, R.~F.~G.
-	},
-    title = "{The Extreme Outer Regions of Disk Galaxies. I. Chemical Abundances of H II Regions}",
-    journal = {\aj},
-    year = 1998,
-    month = aug,
-    volume = 116,
-    pages = {673-690},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....116..673F&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@BOOK{1988ngc..book.....T,
-    author = {{Tully}, R.~B.},
-    title = "{Nearby galaxies catalog}",
-    publisher = {Cambridge and New York, Cambridge University Press, 1988, 221 p.},
-    year = 1988,
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1988ngc..book.....T&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998A&AS..130..333T,
-    author = {{Theureau}, G. and {Bottinelli}, L. and {Coudreau-Durand}, N. and 
-	{Gouguenheim}, L. and {Hallet}, N. and {Loulergue}, M. and {Paturel}, G. and 
-	{Teerikorpi}, P.},
-    title = "{Kinematics of the local universe. VII. New 21-cm line measurements of 2112 galaxies}",
-    journal = {\aaps},
-    year = 1998,
-    month = jun,
-    volume = 130,
-    pages = {333-339},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998A&AS..130..333T&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000ApJ...530..625T,
-    author = {{Tonry}, J.~L. and {Blakeslee}, J.~P. and {Ajhar}, E.~A. and 
-	{Dressler}, A.},
-    title = "{The Surface Brightness Fluctuation Survey of Galaxy Distances. II. Local and Large-Scale Flows}",
-    journal = {\apj},
-    year = 2000,
-    month = feb,
-    volume = 530,
-    pages = {625-651},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000ApJ...530..625T&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1994A&A...286..718K,
-    author = {{Karachentsev}, I.~D. and {Tikhonov}, N.~A.},
-    title = "{New photometric distances for dwarf galaxies in the Local Volume}",
-    journal = {\aap},
-    year = 1994,
-    month = jun,
-    volume = 286,
-    pages = {718-724},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1994A&A...286..718K&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1992MmSAI..63..465P,
-    author = {{Piotto}, G. and {Capaccioli}, M. and {Bresolin}, F.},
-    title = "{On the distances of nearby galaxies}",
-    journal = {Memorie della Societa Astronomica Italiana},
-    year = 1992,
-    volume = 63,
-    pages = {465-478},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1992MmSAI..63..465P&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998ApJ...498L.129T,
-    author = {{Turatto}, M. and {Mazzali}, P.~A. and {Young}, T.~R. and {Nomoto}, K. and 
-	{Iwamoto}, K. and {Benetti}, S. and {Cappallaro}, E. and {Danziger}, I.~J. and {et al.}},
-    title = "{The Peculiar Type II Supernova 1997D: A Case for a Very Low 56Ni Mass}",
-    journal = {\apjl},
-    year = 1998,
-    month = may,
-    volume = 498,
-    pages = {L129+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998ApJ...498L.129T&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005PASP..117..773V,
-   author = {{van den Bergh}, S. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{Classifications of the Host Galaxies of Supernovae, Set III}",
-  journal = {\pasp},
-   eprint = {astro-ph/0504668},
-     year = 2005,
-    month = aug,
-   volume = 117,
-    pages = {773-782},
-      doi = {10.1086/431435},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005PASP..117..773V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1994ApJ...430...53P,
-    author = {{Pierce}, M.~J.},
-    title = "{Luminosity-line-width relations and the extragalactic distance scale. 2: A comparison with Types IA and II supernovae}",
-    journal = {\apj},
-    year = 1994,
-    month = jul,
-    volume = 430,
-    pages = {53-62},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1994ApJ...430...53P&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1979ApJ...227..729D,
-    author = {{de Vaucouleurs}, G.},
-    title = "{The extragalactic distance scale. VI - Distances of 458 spiral galaxies from tertiary indicators}",
-    journal = {\apj},
-    year = 1979,
-    month = feb,
-    volume = 227,
-    pages = {729-755},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1979ApJ...227..729D&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004Sci...303..499S,
-    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Tout}, C.~A. and 
-	{Gilmore}, G.~F. and {Mattila}, S. and {Benn}, C.~R.},
-    title = "{Detection of a Red Supergiant Progenitor Star of a Type II-Plateau Supernova}",
-    journal = {Science},
-    year = 2004,
-    month = jan,
-    volume = 303,
-    pages = {499-503},
-    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2004Sci...303..499S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...645.1102L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
-	{Plez}, B. and {Meynet}, G. and {Maeder}, A.},
-    title = "{The Effective Temperatures and Physical Properties of Magellanic Cloud Red Supergiants: The Effects of Metallicity}",
-  journal = {\apj},
-   eprint = {astro-ph/0603596},
- keywords = {ISM: Dust, Extinction, Stars: Atmospheres, Stars: Fundamental Parameters, Stars: Late-Type, Stars: Supergiants},
-     year = 2006,
-    month = jul,
-   volume = 645,
-    pages = {1102-1117},
-      doi = {10.1086/504417},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...645.1102L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007ApJ...667..202L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
-	{Plez}, B.},
-    title = "{Late-Type Red Supergiants: Too Cool for the Magellanic Clouds?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0705.3431},
- keywords = {Stars: Evolution, Stars: Late-Type, Stars: Mass Loss, Stars: Supergiants},
-     year = 2007,
-    month = sep,
-   volume = 667,
-    pages = {202-212},
-      doi = {10.1086/520797},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...667..202L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...628..973L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
-	{Plez}, B. and {Josselin}, E. and {Maeder}, A. and {Meynet}, G.
-	},
-    title = "{The Effective Temperature Scale of Galactic Red Supergiants: Cool, but Not As Cool As We Thought}",
-  journal = {\apj},
-   eprint = {astro-ph/0504337},
- keywords = {ISM: Dust, Extinction, Stars: Atmospheres, Stars: Fundamental Parameters, Stars: Late-Type, Stars: Supergiants},
-     year = 2005,
-    month = aug,
-   volume = 628,
-    pages = {973-985},
-      doi = {10.1086/430901},
-   adsurl = {http://adsabs.harvard.edu/abs/2005ApJ...628..973L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{1988AJ.....96..909S,
-    author = {{Stetson}, P.~B. and {Harris}, W.~E.},
-    title = "{CCD photometry of the globular cluster M92}",
-    journal = {\aj},
-    year = 1988,
-    month = sep,
-    volume = 96,
-    pages = {909-975},
-    adsurl = 
-{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1988AJ.....96..909S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000PASP..112.1383D,
-    author = {{Dolphin}, A.~E.},
-    title = "{WFPC2 Stellar Photometry with HSTPHOT}",
-    journal = {\pasp},
-    year = 2000,
-    month = oct,
-    volume = 112,
-    pages = {1383-1396},
-    adsurl = 
-{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000PASP..112.1383D&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2000PASP..112.1397D,
-    author = {{Dolphin}, A.~E.},
-    title = "{The Charge-Transfer Efficiency and Calibration of WFPC2}",
-    journal = {\pasp},
-    year = 2000,
-    month = oct,
-    volume = 112,
-    pages = {1397-1410},
-    adsurl = 
-{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000PASP..112.1397D&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1995PASP..107.1065H,
-    author = {{Holtzman}, J.~A. and {Burrows}, C.~J. and {Casertano}, S. 
-and 
-	{Hester}, J.~J. and {Trauger}, J.~T. and {Watson}, A.~M. and 
-	{Worthey}, G.},
-    title = "{The Photometric Performance and Calibration of WFPC2}",
-    journal = {\pasp},
-    year = 1995,
-    month = nov,
-    volume = 107,
-    pages = {1065-+},
-    adsurl = 
-{http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995PASP..107.1065H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1987PASP...99..191S,
-    author = {{Stetson}, P.~B.},
-    title = "{DAOPHOT - A computer program for crowded-field stellar photometry}",
-    journal = {\pasp},
-    year = 1987,
-    month = mar,
-    volume = 99,
-    pages = {191-222},
-    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=1987PASP...99..191S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2004mmu..sympE...2H,
-    author = {{Hamuy}, M.},
-    title = "{The Latest Version of the Standardized Candle Method for Type II Supernovae, astro-ph/0301281}",
-    booktitle = {Measuring and Modeling the Universe, from the Carnegie Observatories Centennial Symposia. Carnegie Observatories Astrophysics Series. Edited by W. L. Freedman, 2004.  Pasadena: Carnegie Observatories,},
-    year = 2004,
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.338..711Z,
-    author = {{Zampieri}, L. and {Pastorello}, A. and {Turatto}, M. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Altavilla}, G. and {Mazzali}, P. and {Hamuy}, M.
-	},
-    title = "{Peculiar, low-luminosity Type II supernovae: low-energy explosions in massive progenitors?}",
-    journal = {\mnras},
-    year = 2003,
-    month = jan,
-    volume = 338,
-    pages = {711-716},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.338..711Z&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.343..735S,
-    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Gilmore}, G.~F. and 
-        {Tout}, C.~A. and {Kilkenny}, D. and {Benetti}, S.},
-    title = "{Mass limits for the progenitor star of supernova 2001du and other Type II-P supernovae}",
-    journal = {\mnras},
-    year = 2003,
-    month = aug,
-    volume = 343,
-    pages = {735-749},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.343..735S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2003fthp.conf....3H,
-    author = {{Heger}, A. and {Woosley}, S.~E. and {Fryer}, C.~L. and {Langer}, N.
-        },
-    title = "{Massive Star Evolution Through the Ages}",
-    booktitle = {From Twilight to Highlight: The Physics of Supernovae},
-    year = 2003,
-    pages = {3-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003fthp.conf....3H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ApJ...591..288H,
-    author = {{Heger}, A. and {Fryer}, C.~L. and {Woosley}, S.~E. and {Langer}, N. and 
-        {Hartmann}, D.~H.},
-    title = "{How Massive Single Stars End Their Life}",
-    journal = {\apj},
-    year = 2003,
-    month = jul,
-    volume = 591,
-    pages = {288-300},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ApJ...591..288H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.346...97N,
-    author = {{Nadyozhin}, D.~K.},
-    title = "{Explosion energies, nickel masses and distances of Type II plateau supernovae}",
-    journal = {\mnras},
-    year = 2003,
-    month = nov,
-    volume = 346,
-    pages = {97-104},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.346...97N&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1985SvAL...11..145L,
-    author = {{Litvinova}, I.~Y. and {Nadezhin}, D.~K.},
-    title = "{Determination of Integrated Parameters for Type-II Supernovae}",
-    journal = {Soviet Astronomy Letters},
-    year = 1985,
-    month = may,
-    volume = 11,
-    pages = {145-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1985SvAL...11..145L&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572L..61M,
-    author = {{Mazzali}, P.~A. and {Deng}, J. and {Maeda}, K. and {Nomoto}, K. and 
-	{Umeda}, H. and {Hatano}, K. and {Iwamoto}, K. and {Yoshii}, Y. and 
-	{et al.}},
-    title = "{The Type Ic Hypernova SN 2002ap}",
-    journal = {\apjl},
-    year = 2002,
-    month = jun,
-    volume = 572,
-    pages = {L61-L65},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJ...572L..61M&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572L.147S,
-    author = {{Smartt}, S.~J. and {Vreeswijk}, P.~M. and {Ramirez-Ruiz}, E. and 
-	{Gilmore}, G.~F. and {Meikle}, W.~P.~S. and {Ferguson}, A.~M.~N. and 
-	{Knapen}, J.~H.},
-    title = "{On the Progenitor of the Type Ic Supernova 2002ap}",
-    journal = {\apjl},
-    year = 2002,
-    month = jun,
-    volume = 572,
-    pages = {L147-L151},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJ...572L.147S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002MNRAS.332L..73G,
-    author = {{Gal-Yam}, A. and {Ofek}, E.~O. and {Shemmer}, O.},
-    title = "{Supernova 2002ap: the first month}",
-    journal = {\mnras},
-    year = 2002,
-    month = jun,
-    volume = 332,
-    pages = {L73-L77},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002MNRAS.332L..73G&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...565.1089S,
-    author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Tout}, C.~A. and {Hodgkin}, S.~T.
-	},
-    title = "{The Nature of the Progenitor of the Type II-P Supernova 1999em}",
-    journal = {\apj},
-    year = 2002,
-    month = feb,
-    volume = 565,
-    pages = {1089-1100},
-    adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002ApJ...565.1089S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{1994AJ....107..662A,
-   author = {{Aldering}, G. and {Humphreys}, R.~M. and {Richmond}, M.},
-    title = "{SN 1993J: The optical properties of its progenitor}",
-  journal = {\aj},
- keywords = {B Stars, Binary Stars, Blue Stars, Magellanic Clouds, O Stars, Optical Properties, Spectral Energy Distribution, Stellar Evolution, Stellar Models, Stellar Spectra, Supergiant Stars, Supernovae, Ubv Spectra, Astronomical Photography, Astronomical Photometry, Charge Coupled Devices, Hertzsprung-Russell Diagram, Light Curve, Stellar Mass},
-     year = 1994,
-    month = feb,
-   volume = 107,
-    pages = {662-672},
-      doi = {10.1086/116886},
-   adsurl = {http://adsabs.harvard.edu/abs/1994AJ....107..662A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012MNRAS.424.1372A,
-   author = {{Anderson}, J.~P. and {Habergham}, S.~M. and {James}, P.~A. and 
-	{Hamuy}, M.},
-    title = "{Progenitor mass constraints for core-collapse supernovae from correlations with host galaxy star formation}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1205.3802},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, galaxies: statistics},
-     year = 2012,
-    month = aug,
-   volume = 424,
-    pages = {1372-1391},
-      doi = {10.1111/j.1365-2966.2012.21324.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.424.1372A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008MNRAS.390.1527A,
-   author = {{Anderson}, J.~P. and {James}, P.~A.},
-    title = "{Constraints on core-collapse supernova progenitors from correlations with H{$\alpha$} emission}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0809.0236},
- keywords = {supernovae: general , galaxies: general , galaxies: statistics},
-     year = 2008,
-    month = nov,
-   volume = 390,
-    pages = {1527-1538},
-      doi = {10.1111/j.1365-2966.2008.13843.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.390.1527A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009MNRAS.399..559A,
-   author = {{Anderson}, J.~P. and {James}, P.~A.},
-    title = "{Comparisons of the radial distributions of core-collapse supernovae with those of young and old stellar populations}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0907.0034},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general , galaxies: general , galaxies: statistics},
-     year = 2009,
-    month = oct,
-   volume = 399,
-    pages = {559-573},
-      doi = {10.1111/j.1365-2966.2009.15324.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2009MNRAS.399..559A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2004MNRAS.349.1344A,
-    author = {{Altavilla}, G. and {Fiorentino}, G. and {Marconi}, M. and {Musella}, I. and 
-	{Cappellaro}, E. and {Barbon}, R. and {Benetti}, S. and {Pastorello}, A. and 
-	{Riello}, M. and {Turatto}, M. and {Zampieri}, L.},
-    title = "{Cepheid calibration of Type Ia supernovae and the Hubble constant}",
-    journal = {\mnras},
-    year = 2004,
-    month = apr,
-    volume = 349,
-    pages = {1344-1352},
-    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2004MNRAS.349.1344A&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001MNRAS.322..361B,
-    author = {{Benetti}, S. and {Turatto}, M. and {Balberg}, S. and {Zampieri}, L. and 
-	{Shapiro}, S.~L. and {Cappellaro}, E. and {Nomoto}, K. and {Nakamura}, T. and 
-	{Mazzali}, P.~A. and {Patat}, F.},
-    title = "{The fading of supernova 1997D}",
-    journal = {\mnras},
-    year = 2001,
-    month = apr,
-    volume = 322,
-    pages = {361-368},
-    adsurl = {http://esoads.eso.org/cgi-bin/nph-bib_query?bibcode=2001MNRAS.322..361B&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PhDT,
-    author = {{Pastorello}, A.},
-    title = "{H-Rich Core-Collapse Supernovae}",
-    journal = {Ph.D.~Thesis},
-    year = 2003
-}
-
-@ARTICLE{2004MNRAS.347...74P,
-    author = {{Pastorello}, A. and {Zampieri}, L. and {Turatto}, M. and {Cappellaro}, E. and 
-	{Meikle}, W.~P.~S. and {Benetti}, S. and {Branch}, D. and {Baron}, E. and 
-	{Patat}, F. and {Armstrong}, M. and {Altavilla}, G. and {Salvo}, M. and 
-	{Riello}, M.},
-    title = "{Low-luminosity Type II supernovae: spectroscopic and photometric evolution}",
-    journal = {\mnras},
-    year = 2004,
-    month = jan,
-    volume = 347,
-    pages = {74-94},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.347...74P&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{astro-ph/0310056,
-    author = {{Pastorello}, A. and {Ramina}, M. and {Zampieri}, L. and {Navasardyan}, H. and {Salvo}, M. and {Fiaschi}, M.},
-    title = "{Observational Properties of Type II Plateau Supernovae, astro-ph/0310056}",
-    booktitle = {Supernovae (10 Years of 1993J), Marcaide J. M., Weiler K. W., eds, Proc. IAU Coll. 192, Springer-Verlag, Berlin, in press,},
-    year = 2004,
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004mmu..sympE...2H&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003IAUC.8152....4S,
-    author = {{Smartt}, S.~J. and {Maund}, J.~R. and {Hendry}, M.~A. and {Benn}, C.~R.},
-    title = "{Supernova 2003gd in M74}",
-    journal = {IAUC 8152},
-    year = 2003,
-    month = jun,
-    volume = 8152,
-    pages = {4-+},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003IAUC.8152....4S&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003MNRAS.340..191R,
-    author = {{Rigon}, L. and {Turatto}, M. and {Benetti}, S. and {Pastorello}, A. and 
-	{Cappellaro}, E. and {Aretxaga}, I. and {Vega}, O. and {Chavushyan}, V. and 
-	{Patat}, F. and {Danziger}, I.~J. and {Salvo}, M.},
-    title = "{SN 1999E: another piece in the supernova-gamma-ray burst connection puzzle}",
-    journal = {\mnras},
-    year = 2003,
-    month = mar,
-    volume = 340,
-    pages = {191-196},
-    adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003MNRAS.340..191R&amp;db_key=AST},
-    adsnote = {Provided by the NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006PASP..118....2H,
-   author = {{Hamuy}, M. and {Folatelli}, G. and {Morrell}, N.~I. and {Phillips}, M.~M. and 
-	{Suntzeff}, N.~B. and {Persson}, S.~E. and {Roth}, M. and {Gonzalez}, S. and 
-	{Krzeminski}, W. and {Contreras}, C. and {Freedman}, W.~L. and 
-	{Murphy}, D.~C. and {Madore}, B.~F. and {Wyatt}, P. and {Maza}, J. and 
-	{Filippenko}, A.~V. and {Li}, W. and {Pinto}, P.~A.},
-    title = "{The Carnegie Supernova Project: The Low-Redshift Survey}",
-  journal = {\pasp},
-   eprint = {astro-ph/0512039},
-     year = 2006,
-    month = jan,
-   volume = 118,
-    pages = {2-20},
-      doi = {10.1086/500228},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006PASP..118....2H&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000MmSAI..71..573T,
-   author = {{Turatto}, M.},
-    title = "{The ESO-Asiago SN monitoring program and archive}",
-  journal = {Memorie della Societa Astronomica Italiana},
-     year = 2000,
-   volume = 71,
-    pages = {573-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000MmSAI..71..573T&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006AJ....131.2233R,
-   author = {{Richardson}, D. and {Branch}, D. and {Baron}, E.},
-    title = "{Absolute Magnitude Distributions and Light Curves of Stripped-Envelope Supernovae}",
-  journal = {\aj},
-   eprint = {astro-ph/0601136},
-     year = 2006,
-    month = apr,
-   volume = 131,
-    pages = {2233-2244},
-      doi = {10.1086/500578},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006AJ....131.2233R&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002AJ....123..745R,
-   author = {{Richardson}, D. and {Branch}, D. and {Casebeer}, D. and {Millard}, J. and 
-	{Thomas}, R.~C. and {Baron}, E.},
-    title = "{A Comparative Study of the Absolute Magnitude Distributions of Supernovae}",
-  journal = {\aj},
-   eprint = {astro-ph/0112051},
-     year = 2002,
-    month = feb,
-   volume = 123,
-    pages = {745-752},
-      doi = {10.1086/338318},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002AJ....123..745R&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999IAUC.7152....2F,
-   author = {{Filippenko}, A.~V. and {Li}, W.~D. and {Modjaz}, M.},
-    title = "{Supernova 1999bw in NGC 3198}",
-  journal = {\iauc},
-     year = 1999,
-    month = apr,
-   volume = 7152,
-    pages = {2-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1999IAUC.7152....2F&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004PASP..116..326W,
-   author = {{Wagner}, R.~M. and {Vrba}, F.~J. and {Henden}, A.~A. and {Canzian}, B. and 
-	{Luginbuhl}, C.~B. and {Filippenko}, A.~V. and {Chornock}, R. and 
-	{Li}, W. and {Coil}, A.~L. and {Schmidt}, G.~D. and {Smith}, P.~S. and 
-	{Starrfield}, S. and {Klose}, S. and {Tich{\'a}}, J. and {Tich{\'y}}, M. and 
-	{Gorosabel}, J. and {Hudec}, R. and {Simon}, V.},
-    title = "{Discovery and Evolution of an Unusual Luminous Variable Star in NGC 3432 (Supernova 2000ch)}",
-  journal = {\pasp},
-   eprint = {astro-ph/0404035},
-     year = 2004,
-    month = apr,
-   volume = 116,
-    pages = {326-336},
-      doi = {10.1086/382997},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004PASP..116..326W&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001IAUC.7597....3M,
-   author = {{Matheson}, T. and {Calkins}, M.},
-    title = "{Supernova 2001ac in NGC 3504}",
-  journal = {\iauc},
-     year = 2001,
-    month = mar,
-   volume = 7597,
-    pages = {3-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001IAUC.7597....3M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369..390M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Kudritzki}, R.-P. and 
-	{Pastorello}, A. and {Nelemans}, G. and {Bresolin}, F. and {Patat}, F. and 
-	{Gilmore}, G.~F. and {Benn}, C.~R.},
-    title = "{Faint supernovae and supernova impostors: case studies of SN 2002kg/NGC 2403-V37 and SN 2003gm}",
-  journal = {\mnras},
-   eprint = {astro-ph/0603056},
-     year = 2006,
-    month = jun,
-   volume = 369,
-    pages = {390-406},
-      doi = {10.1111/j.1365-2966.2006.10308.x},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369..390M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005A&A...429L..13W,
-   author = {{Weis}, K. and {Bomans}, D.~J.},
-    title = "{SN 2002kg - the brightening of LBV V37 in NGC 2403}",
-  journal = {\aap},
-   eprint = {astro-ph/0411504},
-     year = 2005,
-    month = jan,
-   volume = 429,
-    pages = {L13-L16},
-      doi = {10.1051/0004-6361:200400105},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005A&A...429L..13W&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006astro.ph..3025V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V. and {Humphreys}, R.~M. and 
-	{Chornock}, R. and {Foley}, R. and {Challis}, P.~M.},
-    title = "{The Type IIn Supernova 2002kg: The Outburst of a Luminous Blue Variable Star in NGC 2403}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0603025},
-     year = 2006,
-    month = mar,
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006astro.ph..3025V&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005PASP..117..773V,
-   author = {{van den Bergh}, S. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{Classifications of the Host Galaxies of Supernovae, Set III}",
-  journal = {\pasp},
-   eprint = {astro-ph/0504668},
-     year = 2005,
-    month = aug,
-   volume = 117,
-    pages = {773-782},
-      doi = {10.1086/431435},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005PASP..117..773V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2004AAS...205.7102L,
-   author = {{Leaman}, J. and {Li}, W. and {Filippenko}, A.},
-    title = "{The Supernova Rate in Nearby Galaxies Determined from the Lick Observatory Supernova Search}",
-booktitle = {Bulletin of the American Astronomical Society},
-     year = 2004,
-    month = dec,
-    pages = {1464-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004AAS...205.7102L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999A&A...351..459C,
-   author = {{Cappellaro}, E. and {Evans}, R. and {Turatto}, M.},
-    title = "{A new determination of supernova rates and a comparison with indicators for galactic star formation}",
-  journal = {\aap},
-   eprint = {astro-ph/9904225},
-     year = 1999,
-    month = nov,
-   volume = 351,
-    pages = {459-466},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1999A&A...351..459C&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1985ApJS...57...91E,
-   author = {{Elias}, J.~H. and {Frogel}, J.~A. and {Humphreys}, R.~M.},
-    title = "{M supergiants in the Milky Way and the Magellanic Clouds Colors, spectral types, and luminosities}",
-  journal = {\apjs},
-     year = 1985,
-    month = jan,
-   volume = 57,
-    pages = {91-131},
-      doi = {10.1086/190997},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1985ApJS...57...91E&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006AJ....131.2245Z,
-   author = {{Zhang}, T. and {Wang}, X. and {Li}, W. and {Zhou}, X. and {Ma}, J. and 
-	{Jiang}, Z. and {Chen}, J.},
-    title = "{Optical Photometry of the Type II-P Supernova 2004dj in NGC 2403}",
-  journal = {\aj},
-   eprint = {astro-ph/0512526},
-     year = 2006,
-    month = apr,
-   volume = 131,
-    pages = {2245-2255},
-      doi = {10.1086/500972},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006AJ....131.2245Z&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...626L..89W,
-   author = {{Wang}, X. and {Yang}, Y. and {Zhang}, T. and {Ma}, J. and {Zhou}, X. and 
-	{Li}, W. and {Lou}, Y.-Q. and {Li}, Z.},
-    title = "{The Progenitor of SN 2004dj in a Star Cluster}",
-  journal = {\apjl},
-   eprint = {astro-ph/0505305},
-     year = 2005,
-    month = jun,
-   volume = 626,
-    pages = {L89-L92},
-      doi = {10.1086/431903},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...626L..89W&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004ApJ...615L.113M,
-   author = {{Ma{\'{\i}}z-Apell{\'a}niz}, J. and {Bond}, H.~E. and {Siegel}, M.~H. and 
-	{Lipkin}, Y. and {Maoz}, D. and {Ofek}, E.~O. and {Poznanski}, D.
-	},
-    title = "{The Progenitor of the Type II-P SN 2004dj in NGC 2403}",
-  journal = {\apjl},
-   eprint = {astro-ph/0408265},
-     year = 2004,
-    month = nov,
-   volume = 615,
-    pages = {L113-L116},
-      doi = {10.1086/426120},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...615L.113M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2003ApJ...594..247L,
-   author = {{Leonard}, D.~C. and {Kanbur}, S.~M. and {Ngeow}, C.~C. and 
-	{Tanvir}, N.~R.},
-    title = "{The Cepheid Distance to NGC 1637: A Direct Test of the Expanding Photosphere Method Distance to SN 1999em}",
-  journal = {\apj},
-   eprint = {astro-ph/0305259},
-     year = 2003,
-    month = sep,
-   volume = 594,
-    pages = {247-278},
-      doi = {10.1086/376831},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ApJ...594..247L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2000ApJ...545..444B,
-   author = {{Baron}, E. and {Branch}, D. and {Hauschildt}, P.~H. and {Filippenko}, A.~V. and 
-	{Kirshner}, R.~P. and {Challis}, P.~M. and {Jha}, S. and {Chevalier}, R. and 
-	{Fransson}, C. and {Lundqvist}, P. and {Garnavich}, P. and {Leibundgut}, B. and 
-	{McCray}, R. and {Michael}, E. and {Panagia}, N. and {Phillips}, M.~M. and 
-	{Pun}, C.~S.~J. and {Schmidt}, B. and {Sonneborn}, G. and {Suntzeff}, N.~B. and 
-	{Wang}, L. and {Wheeler}, J.~C.},
-    title = "{Preliminary Spectral Analysis of the Type II Supernova 1999EM}",
-  journal = {\apj},
-   eprint = {astro-ph/0010614},
-     year = 2000,
-    month = dec,
-   volume = 545,
-    pages = {444-448},
-      doi = {10.1086/317795},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2000ApJ...545..444B&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2002A&A...389...19P,
-   author = {{Paturel}, G. and {Teerikorpi}, P. and {Theureau}, G. and {Fouqu{\'e}}, P. and 
-	{Musella}, I. and {Terry}, J.~N.},
-    title = "{Calibration of the distance scale from galactic Cepheids. II. Use of the HIPPARCOS calibration}",
-  journal = {\aap},
-   eprint = {astro-ph/0204328},
-     year = 2002,
-    month = jul,
-   volume = 389,
-    pages = {19-28},
-      doi = {10.1051/0004-6361:20020492},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2002A&A...389...19P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...628..973L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
-	{Plez}, B. and {Josselin}, E. and {Maeder}, A. and {Meynet}, G.
-	},
-    title = "{The Effective Temperature Scale of Galactic Red Supergiants: Cool, but Not As Cool As We Thought}",
-  journal = {\apj},
-   eprint = {astro-ph/0504337},
-     year = 2005,
-    month = aug,
-   volume = 628,
-    pages = {973-985},
-      doi = {10.1086/430901},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...628..973L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005MNRAS.360..288M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J.},
-    title = "{Hubble Space Telescope imaging of the progenitor sites of six nearby core-collapse supernovae}",
-  journal = {\mnras},
-   eprint = {astro-ph/0501323},
-     year = 2005,
-    month = jun,
-   volume = 360,
-    pages = {288-304},
-      doi = {10.1111/j.1365-2966.2005.09034.x},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005MNRAS.360..288M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000ApJ...530..625T,
-   author = {{Tonry}, J.~L. and {Blakeslee}, J.~P. and {Ajhar}, E.~A. and 
-	{Dressler}, A.},
-    title = "{The Surface Brightness Fluctuation Survey of Galaxy Distances. II. Local and Large-Scale Flows}",
-  journal = {\apj},
-   eprint = {astro-ph/9907062},
-     year = 2000,
-    month = feb,
-   volume = 530,
-    pages = {625-651},
-      doi = {10.1086/308409},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000ApJ...530..625T&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002PASP..114..833P,
-   author = {{Poznanski}, D. and {Gal-Yam}, A. and {Maoz}, D. and {Filippenko}, A.~V. and 
-	{Leonard}, D.~C. and {Matheson}, T.},
-    title = "{Not Color-Blind: Using Multiband Photometry to Classify Supernovae}",
-  journal = {\pasp},
-   eprint = {astro-ph/0202198},
- keywords = {Stars: Supernovae: General, Techniques: Photometric},
-     year = 2002,
-    month = aug,
-   volume = 114,
-    pages = {833-845},
-      doi = {10.1086/341741},
-   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..833P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007MNRAS.382.1169P,
-   author = {{Poznanski}, D. and {Maoz}, D. and {Yasuda}, N. and {Foley}, R.~J. and 
-	{Doi}, M. and {Filippenko}, A.~V. and {Fukugita}, M. and {Gal-Yam}, A. and 
-	{Jannuzi}, B.~T. and {Morokuma}, T. and {Oda}, T. and {Schweiker}, H. and 
-	{Sharon}, K. and {Silverman}, J.~M. and {Totani}, T.},
-    title = "{Supernovae in the Subaru Deep Field: an initial sample and Type Ia rate out to redshift 1.6}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0707.0393},
- keywords = {surveys, supernovae: general, cosmology: miscellaneous, cosmology: observations},
-     year = 2007,
-    month = dec,
-   volume = 382,
-    pages = {1169-1186},
-      doi = {10.1111/j.1365-2966.2007.12424.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.382.1169P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ApJ...694.1067P,
-   author = {{Poznanski}, D. and {Butler}, N. and {Filippenko}, A.~V. and 
-	{Ganeshalingam}, M. and {Li}, W. and {Bloom}, J.~S. and {Chornock}, R. and 
-	{Foley}, R.~J. and {Nugent}, P.~E. and {Silverman}, J.~M. and 
-	{Cenko}, S.~B. and {Gates}, E.~L. and {Leonard}, D.~C. and {Miller}, A.~A. and 
-	{Modjaz}, M. and {Serduke}, F.~J.~D. and {Smith}, N. and {Swift}, B.~J. and 
-	{Wong}, D.~S.},
-    title = "{Improved Standardization of Type II-P Supernovae: Application to an Expanded Sample}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0810.4923},
- keywords = {cosmology: observations, distance scale, dust, extinction, supernovae: general},
-     year = 2009,
-    month = apr,
-   volume = 694,
-    pages = {1067-1079},
-      doi = {10.1088/0004-637X/694/2/1067},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...694.1067P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012MNRAS.426.1465P,
-   author = {{Poznanski}, D. and {Prochaska}, J.~X. and {Bloom}, J.~S.},
-    title = "{An empirical relation between sodium absorption and dust extinction}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1206.6107},
- primaryClass = "astro-ph.IM",
- keywords = {ISM: atoms, dust, extinction},
-     year = 2012,
-    month = oct,
-   volume = 426,
-    pages = {1465-1474},
-      doi = {10.1111/j.1365-2966.2012.21796.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.426.1465P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.415L..81P,
-   author = {{Poznanski}, D. and {Ganeshalingam}, M. and {Silverman}, J.~M. and 
-	{Filippenko}, A.~V.},
-    title = "{Low-resolution sodium D absorption is a bad proxy for extinction}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1106.1469},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, dust, extinction, galaxies: ISM},
-     year = 2011,
-    month = jul,
-   volume = 415,
-    pages = {L81-L84},
-      doi = {10.1111/j.1745-3933.2011.01084.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.415L..81P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007AJ....134.1285P,
-   author = {{Poznanski}, D. and {Maoz}, D. and {Gal-Yam}, A.},
-    title = "{Bayesian Single-Epoch Photometric Classification of Supernovae}",
-  journal = {\aj},
-   eprint = {astro-ph/0610129},
- keywords = {supernovae: general},
-     year = 2007,
-    month = sep,
-   volume = 134,
-    pages = {1285-1297},
-      doi = {10.1086/520956},
-   adsurl = {http://adsabs.harvard.edu/abs/2007AJ....134.1285P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010Sci...327...58P,
-   author = {{Poznanski}, D. and {Chornock}, R. and {Nugent}, P.~E. and {Bloom}, J.~S. and 
-	{Filippenko}, A.~V. and {Ganeshalingam}, M. and {Leonard}, D.~C. and 
-	{Li}, W. and {Thomas}, R.~C.},
-    title = "{An Unusually Fast-Evolving Supernova}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {0911.2699},
- primaryClass = "astro-ph.SR",
-     year = 2010,
-    month = jan,
-   volume = 327,
-    pages = {58-},
-      doi = {10.1126/science.1181709},
-   adsurl = {http://adsabs.harvard.edu/abs/2010Sci...327...58P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...721..956P,
-   author = {{Poznanski}, D. and {Nugent}, P.~E. and {Filippenko}, A.~V.},
-    title = "{Type II-P Supernovae as Standard Candles: The SDSS-II Sample Revisited}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1008.0877},
- primaryClass = "astro-ph.CO",
- keywords = {cosmology: observations, distance scale, supernovae: general},
-     year = 2010,
-    month = oct,
-   volume = 721,
-    pages = {956-959},
-      doi = {10.1088/0004-637X/721/2/956},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...721..956P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436.3224P,
-   author = {{Poznanski}, D.},
-    title = "{An emerging coherent picture of red supergiant supernova explosions}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1304.4967},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general},
-     year = 2013,
-    month = dec,
-   volume = 436,
-    pages = {3224-3230},
-      doi = {10.1093/mnras/stt1800},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3224P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115....1V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images}",
-  journal = {\pasp},
-   eprint = {astro-ph/0210347},
-     year = 2003,
-    month = jan,
-   volume = 115,
-    pages = {1-20},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003PASP..115....1V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.347...74P,
-   author = {{Pastorello}, A. and {Zampieri}, L. and {Turatto}, M. and {Cappellaro}, E. and 
-	{Meikle}, W.~P.~S. and {Benetti}, S. and {Branch}, D. and {Baron}, E. and 
-	{Patat}, F. and {Armstrong}, M. and {Altavilla}, G. and {Salvo}, M. and 
-	{Riello}, M.},
-    title = "{Low-luminosity Type II supernovae: spectroscopic and photometric evolution}",
-  journal = {\mnras},
-   eprint = {astro-ph/0309264},
-     year = 2004,
-    month = jan,
-   volume = 347,
-    pages = {74-94},
-      doi = {10.1111/j.1365-2966.2004.07173.x},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.347...74P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2001ApJ...556L..29S,
-   author = {{Smartt}, S.~J. and {Gilmore}, G.~F. and {Trentham}, N. and 
-	{Tout}, C.~A. and {Frayn}, C.~M.},
-    title = "{An Upper Mass Limit for the Progenitor of the Type II-P Supernova SN 1999gi}",
-  journal = {\apjl},
-   eprint = {astro-ph/0105453},
-     year = 2001,
-    month = jul,
-   volume = 556,
-    pages = {L29-L32},
-      doi = {10.1086/322868},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001ApJ...556L..29S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@PHDTHESIS{2006PhDTHendry,
-   author = {{Hendry}, M.~A.},
-   school = {, University of Cambridge, (2006)},
-     year = 2006,
-    month = February,
-}
-
-@ARTICLE{2001NewAR..45..105I,
-   author = {{Irwin}, M. and {Lewis}, J.},
-    title = "{INT WFS pipeline processing}",
-  journal = {New Astronomy Review},
-     year = 2001,
-    month = jan,
-   volume = 45,
-    pages = {105-110},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2001NewAR..45..105I&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.368.1169P,
-   author = {{Pozzo}, M. and {Meikle}, W.~P.~S. and {Rayner}, J.~T. and {Joseph}, R.~D. and 
-	{Filippenko}, A.~V. and {Foley}, R.~J. and {Li}, W. and {Mattila}, S. and 
-	{Sollerman}, J.},
-    title = "{Optical and infrared observations of the TypeIIP SN2002hh from days 3 to 397}",
-  journal = {\mnras},
-   eprint = {astro-ph/0602372},
-     year = 2006,
-    month = may,
-   volume = 368,
-    pages = {1169-1195},
-      doi = {10.1111/j.1365-2966.2006.10204.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.368.1169P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000A&A...362..544K,
-   author = {{Karachentsev}, I.~D. and {Sharina}, M.~E. and {Huchtmeier}, W.~K.
-	},
-    title = "{A group of galaxies around the giant spiral NGC 6946}",
-  journal = {\aap},
-   eprint = {astro-ph/0010148},
-     year = 2000,
-    month = oct,
-   volume = 362,
-    pages = {544-556},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2000A&A...362..544K&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014AN....335..841T,
-   author = {{Tomasella }, L. and {Benetti}, S. and {Cappellaro}, E. and 
-	{Pastorello}, A. and {Turatto}, M. and {Barbon}, R. and {Elias-Rosa}, N. and 
-	{Harutyunyan}, A. and {Ochner}, P. and {Tartaglia}, L. and {Valenti}, S.
-	},
-    title = "{Asiago Supernova classification program: Blowing out the first two hundred candles}",
-  journal = {Astronomische Nachrichten},
-archivePrefix = "arXiv",
-   eprint = {1403.7233},
- primaryClass = "astro-ph.HE",
- keywords = {catalogs, supernovae: general, surveys},
-     year = 2014,
-    month = oct,
-   volume = 335,
-    pages = {841},
-      doi = {10.1002/asna.201412068},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AN....335..841T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006MNRAS.369.1303H,
-   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Crockett}, R.~M. and 
-	{Maund}, J.~R. and {Gal-Yam}, A. and {Moon}, D.-S. and {Cenko}, S.~B. and 
-	{Fox}, D.~W. and {Kudritzki}, R.~P. and {Benn}, C.~R. and {{\O}stensen}, R.
-	},
-    title = "{SN 2004A: another Type II-P supernova with a red supergiant progenitor}",
-  journal = {\mnras},
-   eprint = {astro-ph/0603670},
-     year = 2006,
-    month = jul,
-   volume = 369,
-    pages = {1303-1320},
-      doi = {10.1111/j.1365-2966.2006.10374.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369.1303H&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.359..906H,
-   author = {{Hendry}, M.~A. and {Smartt}, S.~J. and {Maund}, J.~R.and {Pastorello}, A. and 
-	{Zampieri}, L. and {Benetti}, S. and {Turatto}, M. and {Cappellaro}, E. and 
-	{et al.}
-        },
-    title = "{A study of the Type II-P supernova 2003gd in M74}",
-  journal = {\mnras},
-   eprint = {astro-ph/0501341},
-     year = 2005,
-    month = may,
-   volume = 359,
-    pages = {906-926},
-      doi = {10.1111/j.1365-2966.2005.08928.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005MNRAS.359..906H&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1987AJ.....94.1156H,
-   author = {{Humphreys}, R.~M. and {Aaronson}, M.},
-    title = "{The visually brightest early-type supergiants in the spiral galaxies NGC 2403, M81, and M101}",
-  journal = {\aj},
-     year = 1987,
-    month = nov,
-   volume = 94,
-    pages = {1156-1168},
-      doi = {10.1086/114553},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1987AJ.....94.1156H&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2006MNRAS.370..513S,
-   author = {{Smith}, L.~J. and {Westmoquette}, M.~S. and {Gallagher}, J.~S. and 
-	{O'Connell}, R.~W. and {Rosario}, D.~J. and {de Grijs}, R.},
-    title = "{HST/STIS optical spectroscopy of five super star clusters in the starburst galaxy M82}",
-  journal = {\mnras},
-   eprint = {astro-ph/0605095},
-     year = 2006,
-    month = jul,
-   volume = 370,
-    pages = {513-527},
-      doi = {10.1111/j.1365-2966.2006.10507.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.370..513S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369.1780V,
-   author = {{Vink{\'o}}, J. and {Tak{\'a}ts}, K. and {S{\'a}rneczky}, K. and 
-	{Szab{\'o}}, G.~M. and {et al.}
-	},
-    title = "{The first year of SN 2004dj in NGC 2403}",
-  journal = {\mnras},
-   eprint = {astro-ph/0604230},
-     year = 2006,
-    month = jul,
-   volume = 369,
-    pages = {1780-1796},
-      doi = {10.1111/j.1365-2966.2006.10416.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.369.1780V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.438..368T,
-   author = {{Tak{\'a}ts}, K. and {Pumo}, M.~L. and {Elias-Rosa}, N. and 
-	{Pastorello}, A. and {Pignata}, G. and {Paillas}, E. and {Zampieri}, L. and 
-	{Anderson}, J.~P. and {Vink{\'o}}, J. and {Benetti}, S. and 
-	{Botticella}, M.-T. and {Bufano}, F. and {Campillay}, A. and 
-	{Cartier}, R. and {Ergon}, M. and {Folatelli}, G. and {Foley}, R.~J. and 
-	{F{\"o}rster}, F. and {Hamuy}, M. and {Hentunen}, V.-P. and 
-	{Kankare}, E. and {Leloudas}, G. and {Morrell}, N. and {Nissinen}, M. and 
-	{Phillips}, M.~M. and {Smartt}, S.~J. and {Stritzinger}, M. and 
-	{Taubenberger}, S. and {Valenti}, S. and {Van Dyk}, S.~D. and 
-	{Haislip}, J.~B. and {LaCluyze}, A.~P. and {Moore}, J.~P. and 
-	{Reichart}, D.},
-    title = "{SN 2009N: linking normal and subluminous Type II-P SNe}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1311.2525},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2008in, supernovae: individual: SN 2009N, galaxies: individual: NGC 4487},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {368-387},
-      doi = {10.1093/mnras/stt2203},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438..368T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009CBET.1656....1L,
-   author = {{Li}, W. and {Cenko}, S.~B. and {Filippenko}, A.~V.},
-    title = "{Supernova 2009H in NGC 1084}",
-  journal = {Central Bureau Electronic Telegrams},
-     year = 2009,
-    month = jan,
-   volume = 1656,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2009CBET.1656....1L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005PASP..117..121L,
-   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C.
-	},
-    title = "{On the Progenitor of the Type II Supernova 2004et in NGC 6946}",
-  journal = {\pasp},
-   eprint = {astro-ph/0412487},
-     year = 2005,
-    month = feb,
-   volume = 117,
-    pages = {121-131},
-      doi = {10.1086/428278},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005PASP..117..121L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001A&A...366..538L,
-   author = {{Lejeune}, T. and {Schaerer}, D.},
-    title = "{Database of Geneva stellar evolution tracks and isochrones for (UBV)_{J}(RI)_{C} JHKLL'M, HST-WFPC2, Geneva and Washington photometric systems}",
-  journal = {\aap},
-   eprint = {astro-ph/0011497},
-     year = 2001,
-    month = feb,
-   volume = 366,
-    pages = {538-546},
-      doi = {10.1051/0004-6361:20000214},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2001A&A...366..538L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{
-W2007astro.ph..1152E,
-   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
-    title = "{Ruling out a massive-assymptoic giant-branch star as the progenitor of supernova 2005cs}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0701152},
-     year = 2007,
-    month = jan,
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2007astro.ph..1152E&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...769...99B,
-   author = {{Brown}, J.~M. and {Woosley}, S.~E.},
-    title = "{Nucleosynthetic Constraints on the Mass of the Heaviest Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1302.6973},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: abundances, hydrodynamics, nuclear reactions, nucleosynthesis, abundances, stars: abundances, supernovae: general},
-     year = 2013,
-    month = jun,
-   volume = 769,
-      eid = {99},
-    pages = {99},
-      doi = {10.1088/0004-637X/769/2/99},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769...99B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006astro.ph.12541B,
-   author = {{Brown}, P.~J. and {Dessart}, L. and {Holland}, S.~T. and {Immler}, S. and 
-	{Landsman}, W. and {Blondin}, S. and {Blustin}, A.~J. and {Breeveld}, A. and 
-	{Dewangan}, G.~C. and {Gehrels}, N. and {Hutchins}, R.~B. and 
-	{Kirshner}, R.~P. and {Mason}, K.~O. and {Mazzali}, P.~A. and 
-	{Milne}, P. and {Modjaz}, M. and {Roming}, P.~W.~A.},
-    title = "{Early Ultraviolet, Optical and X-Ray Observations of the Type IIP SN 2005cs in M51 with Swift}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0612541},
-     year = 2006,
-    month = dec,
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006astro.ph.12541B&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...460..769T,
-   author = {{Tsvetkov}, D.~Y. and {Volnova}, A.~A. and {Shulga}, A.~P. and 
-	{Korotkiy}, S.~A. and {Elmhamdi}, A. and {Danziger}, I.~J. and 
-	{Ereshko}, M.~V.},
-    title = "{Observations and analysis of two type IIP supernovae: the intrinsically faint object SN 2005cs and the ambiguous object SN 2005ay}",
-  journal = {\aap},
-   eprint = {astro-ph/0605184},
-     year = 2006,
-    month = dec,
-   volume = 460,
-    pages = {769-776},
-      doi = {10.1051/0004-6361:20065704},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006A&A...460..769T&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.372.1735T,
-   author = {{Tak{\'a}ts}, K. and {Vink{\'o}}, J.},
-    title = "{Distance estimate and progenitor characteristics of SN 2005cs in M51}",
-  journal = {\mnras},
-   eprint = {astro-ph/0608430},
-     year = 2006,
-    month = nov,
-   volume = 372,
-    pages = {1735-1740},
-      doi = {10.1111/j.1365-2966.2006.10974.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006MNRAS.372.1735T&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006astro.ph.11186D,
-   author = {{Danziger}, I.~J. and {Elmhamdi}, A. and {Tsvetkov}, D.~Y. and 
-	{Volnova}, A.~A. and {Shulga}, A.~P.},
-    title = "{SNe 2005ay and 2005cs: Two interesting II-Plateau events}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0611186},
-     year = 2006,
-    month = nov,
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006astro.ph.11186D&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006ApJ...641.1060L,
-   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
-	{Jha}, S. and {Bloom}, J.~S. and {Riess}, A.~G. and {Livio}, M.
-	},
-    title = "{Identification of the Red Supergiant Progenitor of Supernova 2005cs: Do the Progenitors of Type II-P Supernovae Have Low Mass?}",
-  journal = {\apj},
-   eprint = {astro-ph/0507394},
-     year = 2006,
-    month = apr,
-   volume = 641,
-    pages = {1060-1070},
-      doi = {10.1086/499916},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2006ApJ...641.1060L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.364L..33M,
-   author = {{Maund}, J.~R. and {Smartt}, S.~J. and {Danziger}, I.~J.},
-    title = "{The progenitor of SN 2005cs in the Whirlpool Galaxy}",
-  journal = {\mnras},
-   eprint = {astro-ph/0507502},
-     year = 2005,
-    month = nov,
-   volume = 364,
-    pages = {L33-L37},
-      doi = {10.1111/j.1745-3933.2005.00100.x},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=2005MNRAS.364L..33M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006CBET..636....1B,
-   author = {{Blondin}, S. and {Masters}, K. and {Modjaz}, M. and {Kirshner}, R. and 
-	{Challis}, P. and {Matheson}, T. and {Berlind}, P.},
-    title = "{2006fp in UGC 12182}",
-  journal = {Central Bureau Electronic Telegrams, 636, 1 (2006).~ Edited by Green, D.~W.~E.},
-     year = 2006,
-    month = sep,
-   volume = 636,
-    pages = {1-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006CBET..636....1B&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{dJ,
-   author = {{de Jager}, C. and {Nieuwenhuijzen}, H. and {van der Hucht}, K.~A.
-	},
-    title = "{Mass loss rates in the Hertzsprung-Russell diagram}",
-  journal = {\aaps},
-     year = 1988,
-    month = feb,
-   volume = 72,
-    pages = {259-289},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1988A&AS...72..259D&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{red2blue,
-   author = {{Langer}, N. and {Maeder}, A.},
-    title = "{The problem of the blue-to-red supergiant ratio in galaxies.}",
-  journal = {\aap},
-     year = 1995,
-    month = mar,
-   volume = 295,
-    pages = {685-+},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995A&A...295..685L&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{VKL2001,
-   author = {{Vink}, J.~S. and {de Koter}, A. and {Lamers}, H.~J.~G.~L.~M.
-	},
-    title = "{Mass-loss predictions for O and B stars as a function of metallicity}",
-  journal = {\aap},
-   eprint = {astro-ph/0101509},
-     year = 2001,
-    month = apr,
-   volume = 369,
-    pages = {574-588},
-      doi = {10.1051/0004-6361:20010127},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2001A&A...369..574V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{E03,
-   author = {{Eldridge}, J.~J. and {Tout}, C.~A.},
-    title = "{A more detailed look at the opacities for enriched carbon and oxygen mixtures}",
-  journal = {\mnras},
-   eprint = {astro-ph/0310255},
-     year = 2004,
-    month = feb,
-   volume = 348,
-    pages = {201-206},
-      doi = {10.1111/j.1365-2966.2004.07344.x},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2004MNRAS.348..201E&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-@ARTICLE{MM03,
-   author = {{Meynet}, G. and {Maeder}, A.},
-    title = "{Stellar evolution with rotation. X. Wolf-Rayet star populations at solar metallicity}",
-  journal = {\aap},
-   eprint = {astro-ph/0304069},
-     year = 2003,
-    month = jun,
-   volume = 404,
-    pages = {975-990},
-      doi = {10.1051/0004-6361:20030512},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2003A&A...404..975M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{FA05,
-   author = {{Ferguson}, J.~W. and {Alexander}, D.~R. and {Allard}, F. and 
-	{Barman}, T. and {Bodnarik}, J.~G. and {Hauschildt}, P.~H. and 
-	{Heffner-Wong}, A. and {Tamanai}, A.},
-    title = "{Low-Temperature Opacities}",
-  journal = {\apj},
-   eprint = {astro-ph/0502045},
-     year = 2005,
-    month = apr,
-   volume = 623,
-    pages = {585-596},
-      doi = {10.1086/428642},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2005ApJ...623..585F&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{schaller,
-   author = {{Schaller}, G. and {Schaerer}, D. and {Meynet}, G. and {Maeder}, A.
-	},
-    title = "{New grids of stellar models from 0.8 to 120 solar masses at Z = 0.020 and Z = 0.001}",
-  journal = {\aaps},
-     year = 1992,
-    month = dec,
-   volume = 96,
-    pages = {269-331},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1992A&AS...96..269S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-@INPROCEEDINGS{someone,
-   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J.},
-    title = "{The Solar Chemical Composition}",
-booktitle = {ASP Conf. Ser. 336: Cosmic Abundances as Records of Stellar Evolution and Nucleosynthesis},
-     year = 2005,
-   editor = {{Barnes}, III, T.~G. and {Bash}, F.~N.},
-    month = sep,
-    pages = {25-+},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2005ASPC..336...25A&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-@ARTICLE{E71,
-   author = {{Eggleton}, P.~P.},
-    title = "{The evolution of low mass stars}",
-  journal = {\mnras},
-     year = 1971,
-   volume = 151,
-    pages = {351-+},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1971MNRAS.151..351E&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-@ARTICLE{P95,
-   author = {{Pols}, O.~R. and {Tout}, C.~A. and {Eggleton}, P.~P. and {Han}, Z.
-	},
-    title = "{Approximate input physics for stellar modelling}",
-  journal = {\mnras},
-   eprint = {astro-ph/9504025},
-     year = 1995,
-    month = jun,
-   volume = 274,
-    pages = {964-974},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1995MNRAS.274..964P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.370.1817S,
-   author = {{Stancliffe}, R.~J.},
-    title = "{Does simultaneous solution matter for stellar evolution codes?}",
-  journal = {\mnras},
-   eprint = {astro-ph/0605583},
-     year = 2006,
-    month = aug,
-   volume = 370,
-    pages = {1817-1822},
-      doi = {10.1111/j.1365-2966.2006.10595.x},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006MNRAS.370.1817S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006astro.ph..8410B,
-   author = {{Bresolin}, F.},
-    title = "{Measuring Chemical Abundances in Extragalactic Metal-Rich HII Regions}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0608410},
-     year = 2006,
-    month = aug,
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2006astro.ph..8410B&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998AJ....116.2805V,
-   author = {{van Zee}, L. and {Salzer}, J.~J. and {Haynes}, M.~P. and {O'Donoghue}, A.~A. and 
-	{Balonek}, T.~J.},
-    title = "{Spectroscopy of Outlying H II Regions in Spiral Galaxies: Abundances and Radial Gradients}",
-  journal = {\aj},
-   eprint = {astro-ph/9808315},
-     year = 1998,
-    month = dec,
-   volume = 116,
-    pages = {2805-2833},
-      doi = {10.1086/300647},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1998AJ....116.2805V&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...631..231P,
-   author = {{Pilyugin}, L.~S. and {Thuan}, T.~X.},
-    title = "{Oxygen Abundance Determination in H II Regions: The Strong Line Intensities-Abundance Calibration Revisited}",
-  journal = {\apj},
-     year = 2005,
-    month = sep,
-   volume = 631,
-    pages = {231-243},
-      doi = {10.1086/432408},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...631..231P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004ApJ...615..228B,
-   author = {{Bresolin}, F. and {Garnett}, D.~R. and {Kennicutt}, Jr., R.~C.
-	},
-    title = "{Abundances of Metal-rich H II Regions in M51}",
-  journal = {\apj},
-   eprint = {astro-ph/0407065},
-     year = 2004,
-    month = nov,
-   volume = 615,
-    pages = {228-241},
-      doi = {10.1086/424377},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...615..228B&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.348L..59P,
-   author = {{Pettini}, M. and {Pagel}, B.~E.~J.},
-    title = "{[OIII]/[NII] as an abundance indicator at high redshift}",
-  journal = {\mnras},
-   eprint = {astro-ph/0401128},
-     year = 2004,
-    month = mar,
-   volume = 348,
-    pages = {L59-L63},
-      doi = {10.1111/j.1365-2966.2004.07591.x},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.348L..59P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJS..142...35K,
-   author = {{Kewley}, L.~J. and {Dopita}, M.~A.},
-    title = "{Using Strong Lines to Estimate Abundances in Extragalactic H II Regions and Starburst Galaxies}",
-  journal = {\apjs},
-   eprint = {astro-ph/0206495},
-     year = 2002,
-    month = sep,
-   volume = 142,
-    pages = {35-52},
-      doi = {10.1086/341326},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002ApJS..142...35K&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002A&A...395..519T,
-   author = {{Trundle}, C. and {Dufton}, P.~L. and {Lennon}, D.~J. and {Smartt}, S.~J. and 
-	{Urbaneja}, M.~A.},
-    title = "{Chemical composition of B-type supergiants in the OB 8, OB 10, OB 48, OB 78 associations of M 31}",
-  journal = {\aap},
-   eprint = {astro-ph/0207198},
-     year = 2002,
-    month = nov,
-   volume = 395,
-    pages = {519-533},
-      doi = {10.1051/0004-6361:20021044},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2002A&A...395..519T&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1994ApJ...420...87Z,
-   author = {{Zaritsky}, D. and {Kennicutt}, Jr., R.~C. and {Huchra}, J.~P.
-	},
-    title = "{H II regions and the abundance properties of spiral galaxies}",
-  journal = {\apj},
-     year = 1994,
-    month = jan,
-   volume = 420,
-    pages = {87-109},
-      doi = {10.1086/173544},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=1994ApJ...420...87Z&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997MNRAS.288..715R,
-   author = {{Roy}, J.-R. and {Walsh}, J.~R.},
-    title = "{The abundance gradient of NGC 1365: evidence for a recently formed bar in an archetypal barred spiral galaxy?}",
-  journal = {\mnras},
-   eprint = {astro-ph/9705032},
-     year = 1997,
-    month = jul,
-   volume = 288,
-    pages = {715-725},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1997MNRAS.288..715R&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004A&A...425..849P,
-   author = {{Pilyugin}, L.~S. and {V{\'{\i}}lchez}, J.~M. and {Contini}, T.
-	},
-    title = "{Oxygen and nitrogen abundances in nearby galaxies. Correlations between oxygen abundance and macroscopic properties}",
-  journal = {\aap},
-   eprint = {astro-ph/0407014},
-     year = 2004,
-    month = oct,
-   volume = 425,
-    pages = {849-869},
-      doi = {10.1051/0004-6361:20034522},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004A&A...425..849P&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004ApJ...606..862O,
-   author = {{Origlia}, L. and {Ranalli}, P. and {Comastri}, A. and {Maiolino}, R.
-	},
-    title = "{Stellar and Gaseous Abundances in M82}",
-  journal = {\apj},
-   eprint = {astro-ph/0401361},
-     year = 2004,
-    month = may,
-   volume = 606,
-    pages = {862-868},
-      doi = {10.1086/383018},
-   adsurl = {http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2004ApJ...606..862O&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997ApJ...489...63G,
-   author = {{Garnett}, D.~R. and {Shields}, G.~A. and {Skillman}, E.~D. and 
-	{Sagan}, S.~P. and {Dufour}, R.~J.},
-    title = "{Interstellar Abundance Gradients in NGC 2403: Comparison to M33}",
-  journal = {\apj},
-     year = 1997,
-    month = nov,
-   volume = 489,
-    pages = {63-+},
-      doi = {10.1086/304775},
-   adsurl = {http://cdsads.u-strasbg.fr/cgi-bin/nph-bib_query?bibcode=1997ApJ...489...63G&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004MNRAS.353...87E,
-   author = {{Eldridge}, J.~J. and {Tout}, C.~A.},
-    title = "{The progenitors of core-collapse supernovae}",
-  journal = {\mnras},
-   eprint = {astro-ph/0405408},
-     year = 2004,
-    month = sep,
-   volume = 353,
-    pages = {87-97},
-      doi = {10.1111/j.1365-2966.2004.08041.x},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004MNRAS.353...87E&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003ARA&A..41...15M,
-   author = {{Massey}, P.},
-    title = "{MASSIVE STARS IN THE LOCAL GROUP: Implications for Stellar Evolution and Star Formation}",
-  journal = {\araa},
-     year = 2003,
-   volume = 41,
-    pages = {15-56},
-      doi = {10.1146/annurev.astro.41.071601.170033},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003ARA&A..41...15M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...456.1131M,
-   author = {{Mokiem}, M.~R. and {de Koter}, A. and {Evans}, C.~J. and {Puls}, J. and 
-	{Smartt}, S.~J. and {Crowther}, P.~A. and {Herrero}, A. and 
-	{Langer}, N. and {Lennon}, D.~J. and {Najarro}, F. and {Villamariz}, M.~R. and 
-	{Yoon}, S.-C.},
-    title = "{The VLT-FLAMES survey of massive stars: mass loss and rotation of early-type stars in the SMC}",
-  journal = {\aap},
-   eprint = {astro-ph/0606403},
-     year = 2006,
-    month = sep,
-   volume = 456,
-    pages = {1131-1151},
-      doi = {10.1051/0004-6361:20064995},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006A&A...456.1131M&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007astro.ph..1246M,
-   author = {{Modjaz}, M. and {Kewley}, L. and {Kirshner}, R.~P. and {Stanek}, K.~Z. and 
-	{Challis}, P. and {Garnavich}, P.~M. and {Greene}, J.~E. and 
-	{Prieto}, J.~L.},
-    title = "{Measured Metallicities at the Sites of Nearby Broad-Lined Type Ic Supernovae and Implications for the SN-GRB Connection}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0701246},
-     year = 2007,
-    month = jan,
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2007astro.ph..1246M&db_key=PRE},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...635..311U,
-   author = {{Urbaneja}, M.~A. and {Herrero}, A. and {Kudritzki}, R.-P. and 
-	{Najarro}, F. and {Smartt}, S.~J. and {Puls}, J. and {Lennon}, D.~J. and 
-	{Corral}, L.~J.},
-    title = "{Blue Luminous Stars in Nearby Galaxies: Quantitative Spectral Analysis of M33 B-Type Supergiant Stars}",
-  journal = {\apj},
-     year = 2005,
-    month = dec,
-   volume = 635,
-    pages = {311-335},
-      doi = {10.1086/497528},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ApJ...635..311U&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...448..351S,
-   author = {{Sim{\'o}n-D{\'{\i}}az}, S. and {Herrero}, A. and {Esteban}, C. and 
-	{Najarro}, F.},
-    title = "{Detailed spectroscopic analysis of the Trapezium cluster stars inside the Orion nebula. Rotational velocities, stellar parameters, and oxygen abundances}",
-  journal = {\aap},
-     year = 2006,
-    month = mar,
-   volume = 448,
-    pages = {351-366},
-      doi = {10.1051/0004-6361:20053066},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2006A&A...448..351S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001ApJ...554L.221S,
-   author = {{Sofia}, U.~J. and {Meyer}, D.~M.},
-    title = "{Interstellar Abundance Standards Revisited}",
-  journal = {\apjl},
-     year = 2001,
-    month = jun,
-   volume = 554,
-    pages = {L221-L224},
-      doi = {10.1086/321715},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2001ApJ...554L.221S&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004A&A...417..751A,
-   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J. and {Allende Prieto}, C. and 
-	{Kiselman}, D.},
-    title = "{Line formation in solar granulation. IV. [O I], O I and OH lines and the photospheric O abundance}",
-  journal = {\aap},
-   eprint = {astro-ph/0312290},
-     year = 2004,
-    month = apr,
-   volume = 417,
-    pages = {751-768},
-      doi = {10.1051/0004-6361:20034328},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004A&A...417..751A&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2005ASPC..336...25A,
-   author = {{Asplund}, M. and {Grevesse}, N. and {Sauval}, A.~J.},
-    title = "{The Solar Chemical Composition}",
-booktitle = {ASP Conf. Ser. 336: Cosmic Abundances as Records of Stellar Evolution and Nucleosynthesis},
-     year = 2005,
-   editor = {{Barnes}, III, T.~G. and {Bash}, F.~N.},
-    month = sep,
-    pages = {25-+},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2005ASPC..336...25A&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004ApJ...604..362D,
-   author = {{Daflon}, S. and {Cunha}, K. and {Butler}, K.},
-    title = "{Chemical Abundances for a Sample of Southern OB Stars}",
-  journal = {\apj},
-     year = 2004,
-    month = mar,
-   volume = 604,
-    pages = {362-371},
-      doi = {10.1086/381683},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2004ApJ...604..362D&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1993MNRAS.262..545K,
-   author = {{Kroupa}, P. and {Tout}, C.~A. and {Gilmore}, G.},
-    title = "{The distribution of low-mass stars in the Galactic disc}",
-  journal = {\mnras},
-     year = 1993,
-    month = jun,
-   volume = 262,
-    pages = {545-587},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=1993MNRAS.262..545K&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003A&A...404.1077E,
-   author = {{Elmhamdi}, A. and {Chugai}, N.~N. and {Danziger}, I.~J.},
-    title = "{Light curves and H{$\alpha$}  luminosities as indicators of ^{56}Ni mass in type IIP supernovae}",
-  journal = {\aap},
-   eprint = {astro-ph/0304144},
-     year = 2003,
-    month = jun,
-   volume = 404,
-    pages = {1077-1086},
-      doi = {10.1051/0004-6361:20030522},
-   adsurl = {http://ukads.nottingham.ac.uk/cgi-bin/nph-bib_query?bibcode=2003A&A...404.1077E&db_key=AST},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004IAUC.8297....2S,
-   author = {{Singer}, D. and {Pugh}, H. and {Li}, W.},
-    title = "{Supernovae 2004ak, 2004al, and 2004am}",
-  journal = {\iauc},
-     year = 2004,
-    month = mar,
-   volume = 8297,
-    pages = {2-+},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2004IAUC.8297....2S},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004IAUC.8299....2M,
-   author = {{Mattila}, S. and {Meikle}, W.~P.~S. and {Groeningsson}, P. and 
-	{Greimel}, R. and {Schirmer}, M. and {Acosta-Pulido}, J.~A. and 
-	{Li}, W.},
-    title = "{Supernova 2004am in M82}",
-  journal = {\iauc},
-     year = 2004,
-    month = mar,
-   volume = 8299,
-    pages = {2-+},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2004IAUC.8299....2M},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006MNRAS.369.1780V,
-   author = {{Vink{\'o}}, J. and {Tak{\'a}ts}, K. and {S{\'a}rneczky}, K. and 
-	{Szab{\'o}}, G.~M. and {M{\'e}sz{\'a}ros}, S. and {Csorv{\'a}si}, R. and 
-	{Szalai}, T. and {G{\'a}sp{\'a}r}, A. and {P{\'a}l}, A. and 
-	{Csizmadia}, S. and {K{\'o}sp{\'a}l}, A. and {R{\'a}cz}, M. and 
-	{Kun}, M. and {Cs{\'a}k}, B. and {F{\"u}r{\'e}sz}, G. and {DeBond}, H. and 
-	{Grunhut}, J. and {Thomson}, J. and {Mochnacki}, S. and {Koktay}, T.
-	},
-    title = "{The first year of SN 2004dj in NGC 2403}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0604230},
-     year = 2006,
-    month = jul,
-   volume = 369,
-    pages = {1780-1796},
-      doi = {10.1111/j.1365-2966.2006.10416.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.369.1780V},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-
-
-@ARTICLE{2006MNRAS.372.1735T,
-   author = {{Tak{\'a}ts}, K. and {Vink{\'o}}, J.},
-    title = "{Distance estimate and progenitor characteristics of SN 2005cs in M51}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0608430},
-     year = 2006,
-    month = nov,
-   volume = 372,
-    pages = {1735-1740},
-      doi = {10.1111/j.1365-2966.2006.10974.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.372.1735T},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...659.1488B,
-   author = {{Brown}, P.~J. and {Dessart}, L. and {Holland}, S.~T. and {Immler}, S. and 
-	{Landsman}, W. and {Blondin}, S. and {Blustin}, A.~J. and {Breeveld}, A. and 
-	{Dewangan}, G.~C. and {Gehrels}, N. and {Hutchins}, R.~B. and 
-	{Kirshner}, R.~P. and {Mason}, K.~O. and {Mazzali}, P.~A. and 
-	{Milne}, P. and {Modjaz}, M. and {Roming}, P.~W.~A.},
-    title = "{Early Ultraviolet, Optical, and X-Ray Observations of the Type IIP SN 2005cs in M51 with Swift}",
-  journal = {\apj},
-   eprint = {arXiv:astro-ph/0612541},
-     year = 2007,
-    month = apr,
-   volume = 659,
-    pages = {1488-1495},
-      doi = {10.1086/511968},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...659.1488B},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...460..769T,
-   author = {{Tsvetkov}, D.~Y. and {Volnova}, A.~A. and {Shulga}, A.~P. and 
-	{Korotkiy}, S.~A. and {Elmhamdi}, A. and {Danziger}, I.~J. and 
-	{Ereshko}, M.~V.},
-    title = "{Observations and analysis of two type IIP supernovae: the intrinsically faint object SN 2005cs and the ambiguous object SN 2005ay}",
-  journal = {\aap},
-   eprint = {arXiv:astro-ph/0605184},
-     year = 2006,
-    month = dec,
-   volume = 460,
-    pages = {769-776},
-      doi = {10.1051/0004-6361:20065704},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...460..769T},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...785...82S,
-   author = {{Smith}, N. and {Arnett}, W.~D.},
-    title = "{Preparing for an Explosion: Hydrodynamic Instabilities and Turbulence in Presupernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1307.5035},
- primaryClass = "astro-ph.SR",
- keywords = {instabilities, meteorites, meteors, meteoroids, nuclear reactions, nucleosynthesis, abundances, stars: mass-loss, supernovae: general, turbulence },
-     year = 2014,
-    month = apr,
-   volume = 785,
-      eid = {82},
-    pages = {82},
-      doi = {10.1088/0004-637X/785/2/82},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...785...82S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436.3224P,
-   author = {{Poznanski}, D.},
-    title = "{An emerging coherent picture of red supergiant supernova explosions}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1304.4967},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general},
-     year = 2013,
-    month = dec,
-   volume = 436,
-    pages = {3224-3230},
-      doi = {10.1093/mnras/stt1800},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3224P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@INPROCEEDINGS{Arnett,
-   author = {{Arnett}, D},
-    title = "{Supernovae and Nucleosynthesis}",
-booktitle = {Supernovae and Nucleosynthesis (New Jersey: Princeton Univ. Press)},
-     year = 1996,
-   editor = {},
-    month = sep,
-    pages = {},
-   adsurl = {},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.370.1752P,
-   author = {{Pastorello}, A. and {Sauer}, D. and {Taubenberger}, S. and 
-	{Mazzali}, P.~A. and {et al.}},
-    title = "{SN 2005cs in M51 - I. The first month of evolution of a subluminous SN II plateau}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0605700},
-     year = 2006,
-    month = aug,
-   volume = 370,
-    pages = {1752-1762},
-      doi = {10.1111/j.1365-2966.2006.10587.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.370.1752P},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-   
-@ARTICLE{2003astro.ph..8136N,
-   author = {{Nomoto}, K. and {Maeda}, K. and {Mazzali}, P.~A. and {Umeda}, H. and 
-	{Deng}, J. and {Iwamoto}, K.},
-    title = "{Hypernovae and Other Black-Hole-Forming Supernovae}",
-  journal = {ArXiv Astrophysics e-prints},
-   eprint = {astro-ph/0308136},
-     year = 2003,
-    month = aug,
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2003astro.ph..8136N},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...656..372G,
-   author = {{Gal-Yam}, A. and {Leonard}, D.~C. and {Fox}, D.~B. and {Cenko}, S.~B. and 
-	{Soderberg}, A.~M. and {Moon}, D.-S. and {Sand}, D.~J. and {Li}, W. and 
-	{Filippenko}, A.~V. and {Aldering}, G. and {Copin}, Y.},
-    title = "{On the Progenitor of SN 2005gl and the Nature of Type IIn Supernovae}",
-  journal = {\apj},
-   eprint = {arXiv:astro-ph/0608029},
-     year = 2007,
-    month = feb,
-   volume = 656,
-    pages = {372-381},
-      doi = {10.1086/510523},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...656..372G},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...661.1013L,
-   author = {{Li}, W. and {Wang}, X. and {Van Dyk}, S.~D. and {Cuillandre}, J.-C. and 
-	{Foley}, R.~J. and {Filippenko}, A.~V.},
-    title = "{On the Progenitors of Two Type II-P Supernovae in the Virgo Cluster}",
-  journal = {\apj},
-   eprint = {arXiv:astro-ph/0701049},
-     year = 2007,
-    month = jun,
-   volume = 661,
-    pages = {1013-1024},
-      doi = {10.1086/516747},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007ApJ...661.1013L},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003AJ....126.2867M,
-   author = {{Massey}, P. and {Olsen}, K.~A.~G.},
-    title = "{The Evolution of Massive Stars. I. Red Supergiants in the Magellanic Clouds}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0309272},
-     year = 2003,
-    month = dec,
-   volume = 126,
-    pages = {2867-2886},
-      doi = {10.1086/379558},
-   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....126.2867M},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...450..345K,
-   author = {{Kitaura}, F.~S. and {Janka}, H.-T. and {Hillebrandt}, W.},
-    title = "{Explosions of O-Ne-Mg cores, the Crab supernova, and subluminous type II-P supernovae}",
-  journal = {\aap},
-   eprint = {arXiv:astro-ph/0512065},
-     year = 2006,
-    month = apr,
-   volume = 450,
-    pages = {345-350},
-      doi = {10.1051/0004-6361:20054703},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...450..345K},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007arXiv0705.4643P,
-   author = {{Poelarends}, A.~J.~T. and {Herwig}, F. and {Langer}, N. and 
-	{Heger}, A.},
-    title = "{The Supernova Channel of Super-AGB Stars}",
-  journal = {ArXiv e-prints},
-   eprint = {0705.4643},
-     year = 2007,
-    month = may,
-   volume = 705,
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007arXiv0705.4643P},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006MNRAS.369..383D,
-   author = {{Dobbie}, P.~D. and {Napiwotzki}, R. and {Burleigh}, M.~R. and 
-	{Barstow}, M.~A. and {Boyce}, D.~D. and {Casewell}, S.~L. and 
-	{Jameson}, R.~F. and {Hubeny}, I. and {Fontaine}, G.},
-    title = "{New Praesepe white dwarfs and the initial mass-final mass relation}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0603314},
-     year = 2006,
-    month = jun,
-   volume = 369,
-    pages = {383-389},
-      doi = {10.1111/j.1365-2966.2006.10311.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006MNRAS.369..383D},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006ApJ...645.1102L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Olsen}, K.~A.~G. and 
-	{Plez}, B. and {Meynet}, G. and {Maeder}, A.},
-    title = "{The Effective Temperatures and Physical Properties of Magellanic Cloud Red Supergiants: The Effects of Metallicity}",
-  journal = {\apj},
-   eprint = {arXiv:astro-ph/0603596},
-     year = 2006,
-    month = jul,
-   volume = 645,
-    pages = {1102-1117},
-      doi = {10.1086/504417},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006ApJ...645.1102L},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1978ApJS...38..309H,
-   author = {{Humphreys}, R.~M.},
-    title = "{Studies of luminous stars in nearby galaxies. I. Supergiants and O stars in the Milky Way.}",
-  journal = {\apjs},
-     year = 1978,
-    month = dec,
-   volume = 38,
-    pages = {309-350},
-   adsurl = {http://adsabs.harvard.edu/abs/1978ApJS...38..309H},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001AJ....121.1050M,
-   author = {{Massey}, P. and {DeGioia-Eastwood}, K. and {Waterhouse}, E.
-	},
-    title = "{The Progenitor Masses of Wolf-Rayet Stars and Luminous Blue Variables Determined from Cluster Turnoffs. II. Results from 12 Galactic Clusters and OB Associations}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0010654},
-     year = 2001,
-    month = feb,
-   volume = 121,
-    pages = {1050-1070},
-      doi = {10.1086/318769},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2001AJ....121.1050M},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000AJ....119.2214M,
-   author = {{Massey}, P. and {Waterhouse}, E. and {DeGioia-Eastwood}, K.
-	},
-    title = "{The Progenitor Masses of Wolf-Rayet Stars and Luminous Blue Variables Determined from Cluster Turnoffs. I. Results from 19 OB Associations in the Magellanic Clouds}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0002233},
-     year = 2000,
-    month = may,
-   volume = 119,
-    pages = {2214-2241},
-      doi = {10.1086/301345},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2000AJ....119.2214M},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{arXiv:astroph0610356v2,
-   author = {{Crowther}, P.~A..},
-    title = "{Physical Properties of Wolf-Rayet Stars}",
-  journal = {ArXiv e-prints},
-   eprint = {0610356},
-     year = 2007,
-    month = may,
-   volume = 705,
-   adsurl = {},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...457..265D,
-   author = {{Dufton}, P.~L. and {Smartt}, S.~J. and {Lee}, J.~K. and {Ryans}, R.~S.~I. and 
-	{Hunter}, I. and {Evans}, C.~J. and {Herrero}, A. and {Trundle}, C. and 
-	{Lennon}, D.~J. and {Irwin}, M.~J. and {Kaufer}, A.},
-    title = "{The VLT-FLAMES survey of massive stars: stellar parameters and rotational velocities in NGC 3293, NGC 4755 and NGC 6611}",
-  journal = {\aap},
-   eprint = {arXiv:astro-ph/0606409},
-     year = 2006,
-    month = oct,
-   volume = 457,
-    pages = {265-280},
-      doi = {10.1051/0004-6361:20065392},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2006A&A...457..265D},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005ApJ...625L..87Y,
-   author = {{Young}, T.~R. and {Smith}, D. and {Johnson}, T.~A.},
-    title = "{An Optical Afterglow Model for Bright Linear Type II Supernovae}",
-  journal = {\apjl},
-     year = 2005,
-    month = jun,
-   volume = 625,
-    pages = {L87-L90},
-      doi = {10.1086/431279},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2005ApJ...625L..87Y},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...666.1116S,
-   author = {{Smith}, N. and {Li}, W. and {Foley}, R.~J. and {Wheeler}, J.~C. and 
-	{Pooley}, D. and {Chornock}, R. and {Filippenko}, A.~V. and 
-	{Silverman}, J.~M. and {Quimby}, R. and {Bloom}, J.~S. and {Hansen}, C.
-	},
-    title = "{SN 2006gy: Discovery of the Most Luminous Supernova Ever Recorded, Powered by the Death of an Extremely Massive Star like {$\eta$} Carinae}",
-  journal = {\apj},
-   eprint = {astro-ph/0612617},
- keywords = {Stars: Circumstellar Matter, Stars: Evolution, supernovae: individual (SN 2006gy)},
-     year = 2007,
-    month = sep,
-   volume = 666,
-    pages = {1116-1128},
-      doi = {10.1086/519949},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...666.1116S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1988ApJ...334..909M,
-   author = {{Mayle}, R. and {Wilson}, J.~R.},
-    title = "{Supernovae from collapse of oxygen-magnesium-neon cores}",
-  journal = {\apj},
-     year = 1988,
-    month = nov,
-   volume = 334,
-    pages = {909-926},
-      doi = {10.1086/166886},
-   adsurl = {http://adsabs.harvard.edu/abs/1988ApJ...334..909M},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002RvMP...74.1015W,
-   author = {{Woosley}, S.~E. and {Heger}, A. and {Weaver}, T.~A.},
-    title = "{The evolution and explosion of massive stars}",
-  journal = {Reviews of Modern Physics},
-     year = 2002,
-    month = nov,
-   volume = 74,
-    pages = {1015-1071},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2002RvMP...74.1015W},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000A&A...354..557C,
-   author = {{Chugai}, N.~N. and {Utrobin}, V.~P.},
-    title = "{The nature of SN 1997D: low-mass progenitor and weak explosion}",
-  journal = {\aap},
-   eprint = {arXiv:astro-ph/9906190},
-     year = 2000,
-    month = feb,
-   volume = 354,
-    pages = {557-566},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2000A&A...354..557C},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005ApJ...630L..29G,
-   author = {{Gal-Yam}, A. and {Fox}, D.~B. and {Kulkarni}, S.~R. and {Matthews}, K. and 
-	{Leonard}, D.~C. and {Sand}, D.~J. and {Moon}, D.-S. and {Cenko}, S.~B. and 
-	{Soderberg}, A.~M.},
-    title = "{A High Angular Resolution Search for the Progenitor of the Type Ic Supernova 2004gt}",
-  journal = {\apjl},
-   eprint = {arXiv:astro-ph/0506472},
-     year = 2005,
-    month = sep,
-   volume = 630,
-    pages = {L29-L32},
-      doi = {10.1086/491622},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2005ApJ...630L..29G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003A&A...412...45P,
-   author = {{Paturel}, G. and {Petit}, C. and {Prugniel}, P. and {Theureau}, G. and 
-	{Rousseau}, J. and {Brouty}, M. and {Dubois}, P. and {Cambr{\'e}sy}, L.
-	},
-    title = "{HYPERLEDA.  I. Identification and designation of galaxies}",
-  journal = {\aap},
-     year = 2003,
-    month = dec,
-   volume = 412,
-    pages = {45-55},
-      doi = {10.1051/0004-6361:20031411},
-   adsurl = {http://adsabs.harvard.edu/abs/2003A&A...412...45P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007CBET.1184....1H,
-   author = {{Harutyunyan}, A. and {Navasardyan}, H. and {Benetti}, S. and 
-	{Turatto}, M. and {Pastorello}, A. and {Taubenberger}, S.},
-    title = "{2007sv}",
-  journal = {Central Bureau Electronic Telegrams},
-     year = 2007,
-    month = dec,
-   volume = 1184,
-    pages = {1-+},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007CBET.1184....1H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007arXiv0710.3192O,
-   author = {{Ofek}, E.~O. and {Kulkarni}, S.~R. and {Rau}, A. and {Cenko}, S.~B. and 
-	{Peng}, E.~W. and {Blakeslee}, J.~P. and {Cote}, P. and {Ferrarese}, L. and 
-	{Jordan}, A. and {Mei}, S. and {Puzia}, T. and {Bradley}, L.~D. and 
-	{Magee}, D. and {Bouwens}, R.},
-    title = "{The Environment of M85 optical transient 2006-1: constraints on the progenitor age and mass}",
-  journal = {ArXiv e-prints},
-   eprint = {0710.3192},
-     year = 2007,
-    month = oct,
-   volume = 710,
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007arXiv0710.3192O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007Natur.447..458K,
-   author = {{Kulkarni}, S.~R. and {Ofek}, E.~O. and {Rau}, A. and {Cenko}, S.~B. and 
-	{Soderberg}, A.~M. and {Fox}, D.~B. and {Gal-Yam}, A. and {Capak}, P.~L. and 
-	{Moon}, D.~S. and {Li}, W. and {Filippenko}, A.~V. and {Egami}, E. and 
-	{Kartaltepe}, J. and {Sanders}, D.~B.},
-    title = "{An unusually brilliant transient in the galaxy M85}",
-  journal = {\nat},
-   eprint = {arXiv:0705.3668},
-     year = 2007,
-    month = may,
-   volume = 447,
-    pages = {458-460},
-      doi = {10.1038/nature05822},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007Natur.447..458K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007Natur.449....1P,
-   author = {{Pastorello}, A. and {Valle}, M.~D. and {Smartt}, S.~J. and 
-	{Zampieri}, L. and {Benetti}, S. and {Cappellaro}, E. and {Mazzali}, P.~A. and 
-	{Patat}, F. and {Spiro}, S. and {Turatto}, M. and {Valenti}, S.
-	},
-    title = "{A very faint core-collapse supernova in M85}",
-  journal = {\nat},
-   eprint = {arXiv:0710.3753},
-     year = 2007,
-    month = oct,
-   volume = 449,
-    pages = {1-2},
-      doi = {10.1038/nature06282},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2007Natur.449....1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005MNRAS.360..950P,
-   author = {{Pastorello}, A. and {Baron}, E. and {Branch}, D. and {Zampieri}, L. and 
-	{Turatto}, M. and {Ramina}, M. and {Benetti}, S. and {Cappellaro}, E. and {et al.}},
-    title = "{SN 1998A: explosion of a blue supergiant}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0504114},
-     year = 2005,
-    month = jul,
-   volume = 360,
-    pages = {950-962},
-      doi = {10.1111/j.1365-2966.2005.09079.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2005MNRAS.360..950P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007MNRAS.376L..52E,
-   author = {{Eldridge}, J.~J. and {Mattila}, S. and {Smartt}, S.~J.},
-    title = "{Ruling out a massive asymptotic giant-branch star as the progenitor of supernova 2005cs}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0701152},
-     year = 2007,
-    month = mar,
-   volume = 376,
-    pages = {L52-L56},
-      doi = {10.1111/j.1745-3933.2007.00285.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2007MNRAS.376L..52E},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{matilla2004am,
-   author = {{Mattila}, S. and {et al.}},
-    title = "{2004am}",
-  journal = {ArXiv e-prints},
-   eprint = {submitted},
-     year = 2008,
-   adsurl = {},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{arXiv:astroph0610356v2,
-   author = {{Crowther}, P.~A..},
-    title = "{Physical Properties of Wolf-Rayet Stars}",
-  journal = {ArXiv e-prints},
-   eprint = {0610356},
-     year = 2007,
-    month = may,
-   volume = 705,
-   adsurl = {},
-  adsnote = {Provided by the Smithsonian/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000ApJ...544.1016H,
-   author = {{Heger}, A. and {Langer}, N.},
-    title = "{Presupernova Evolution of Rotating Massive Stars. II. Evolution of the Surface Properties}",
-  journal = {\apj},
-   eprint = {arXiv:astro-ph/0005110},
-     year = 2000,
-    month = dec,
-   volume = 544,
-    pages = {1016-1035},
-      doi = {10.1086/317239},
-   adsurl = {http://adsabs.harvard.edu/abs/2000ApJ...544.1016H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005MNRAS.360..950P,
-   author = {{Pastorello}, A. and {Baron}, E. and {Branch}, D. and {Zampieri}, L. and 
-	{Turatto}, M. and {Ramina}, M. and {Benetti}, S. and {Cappellaro}, E. and 
-	{Salvo}, M. and {Patat}, F. and {Piemonte}, A. and {Sollerman}, J. and 
-	{Leibundgut}, B. and {Altavilla}, G.},
-    title = "{SN 1998A: explosion of a blue supergiant}",
-  journal = {\mnras},
-   eprint = {arXiv:astro-ph/0504114},
-     year = 2005,
-    month = jul,
-   volume = 360,
-    pages = {950-962},
-      doi = {10.1111/j.1365-2966.2005.09079.x},
-   adsurl = {http://ukads.nottingham.ac.uk/abs/2005MNRAS.360..950P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ATel.4037....1V,
-   author = {{Valenti}, S. and {Pastorello}, A. and {Benitez-Herrera}, S. and 
-	{Taubenberger}, S. and {Smartt}, S.~J. and {Sullivan}, M. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Greggio}, L. and {Hachinger}, S. and 
-	{Turatto}, M. and {Zampieri}, L. and {Baltay}, C. and {Ellman}, N. and 
-	{Hadjiyska}, E. and {McKinnon}, R. and {Rabinowitz}, D. and 
-	{Nugent}, P. and {Mazzali}, P.~A. and {Maguire}, K. and {Pan}, Y.-C. and 
-	{Hook}, I. and {Fraser}, M. and {Inserra}, C. and {Magill}, L. and 
-	{Maund}, J. and {McCrum}, M. and {Kotak}, R. and {Smith}, K.~W. and 
-	{Young}, D.~R. and {Chen}, T.-W. and {Wright}, D. and {Scalzo}, R. and 
-	{Schmidt}, B.~P. and {Sim}, S.~A. and {Yuan}, F. and {Stanishev}, V. and 
-	{Patat}, N. and {Botticella}, M.~T. and {Dall'Ora}, M. and {Limongi}, M. and 
-	{Pumo}, M.~L. and {Dennefeld}, M. and {Blagorodnova}, N. and 
-	{Elias-Rosa}, N. and {Walton}, N.~A. and {Cellier-Holzem}, F. and 
-	{Bongard}, S. and {Regnault}, N. and {Pain}, R. and {Guillou}, L.~L. and 
-	{Hillebrandt}, W. and {Kromer}, M. and {Sternberg}, A. and {Bufano}, F. and 
-	{Pignata}, G. and {Anderson}, J.~P. and {Hamuy}, M. and {Clocchiatti}, A. and 
-	{Eldridge}, J.~J. and {Feindt}, U. and {Kowalski}, M. and {Kankare}, E. and 
-	{Mattila}, S. and {Walker}, E.~S. and {Amanullah}, R. and {Fransson}, C. and 
-	{Goobar}, A. and {Sollerman}, J. and {Ergon}, M. and {Gal-Yam}, A. and 
-	{Yaron}, O.},
-    title = "{PESSTO spectroscopic classification of La Silla-Quest Transients}",
-  journal = {The Astronomer's Telegram},
- keywords = {Optical, Supernovae, Transient},
-     year = 2012,
-    month = apr,
-   volume = 4037,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{efosc2manual,
-   author = {{Monaco}, L. and {Snodgrass}, C. and {Schmidtobreick}, L. and 
-	{Saviane}, I.
-	},
-    title = "{EFOSC2 User's Manual}",
-  journal = {LSO-MAN-ESO-36100-0004, Issue 3.6},
- keywords = {Optical},
-     year = 2012,
-    month = aug,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{p2edpstd,
-   author = {{Retzlaff}, J. and {Delmotte}, N. and {Arnaboldi}, M. and 
-	{Romaniello}, M.
-	},
-    title = "{ESO Science Data Products Standard}",
-  journal = {GEN-SPE-ESO-33000-5335, Issue 5},
- keywords = {Optical},
-     year = 2013,
-    month = aug,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001PASP..113.1420V,
-   author = {{van Dokkum}, P.~G.},
-    title = "{Cosmic-Ray Rejection by Laplacian Edge Detection}",
-  journal = {\pasp},
-   eprint = {arXiv:astro-ph/0108003},
- keywords = {Instrumentation: Detectors, Methods: Data Analysis-techniques: image processing},
-     year = 2001,
-    month = nov,
-   volume = 113,
-    pages = {1420-1427},
-      doi = {10.1086/323894},
-   adsurl = {http://adsabs.harvard.edu/abs/2001PASP..113.1420V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003AJ....125..984M,
-   author = {{Monet}, D.~G. and {Levine}, S.~E. and {Canzian}, B. and {Ables}, H.~D. and 
-	{Bird}, A.~R. and {Dahn}, C.~C. and {Guetter}, H.~H. and {Harris}, H.~C. and 
-	{Henden}, A.~A. and {Leggett}, S.~K. and {Levison}, H.~F. and 
-	{Luginbuhl}, C.~B. and {Martini}, J. and {Monet}, A.~K.~B. and 
-	{Munn}, J.~A. and {Pier}, J.~R. and {Rhodes}, A.~R. and {Riepe}, B. and 
-	{Sell}, S. and {Stone}, R.~C. and {Vrba}, F.~J. and {Walker}, R.~L. and 
-	{Westerhout}, G. and {Brucato}, R.~J. and {Reid}, I.~N. and 
-	{Schoening}, W. and {Hartley}, M. and {Read}, M.~A. and {Tritton}, S.~B.
-	},
-    title = "{The USNO-B Catalog}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0210694},
- keywords = {Astrometry, Catalogs},
-     year = 2003,
-    month = feb,
-   volume = 125,
-    pages = {984-993},
-      doi = {10.1086/345888},
-   adsurl = {http://adsabs.harvard.edu/abs/2003AJ....125..984M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{sextractor,
-   author = {{Bertin}, E. and {Arnouts}, S.},
-    title = "{SExtractor: Software for source extraction.}",
-  journal = {\aaps},
- keywords = {METHODS: DATA ANALYSIS, TECHNIQUES: IMAGE PROCESSING, GALAXIES: PHOTOMETRY},
-     year = 1996,
-    month = jun,
-   volume = 117,
-    pages = {393-404},
-   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..117..393B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005AJ....130..873J,
-   author = {{Jester}, S. and {Schneider}, D.~P. and {Richards}, G.~T. and 
-	{Green}, R.~F. and {Schmidt}, M. and {Hall}, P.~B. and {Strauss}, M.~A. and 
-	{Vanden Berk}, D.~E. and {Stoughton}, C. and {Gunn}, J.~E. and 
-	{Brinkmann}, J. and {Kent}, S.~M. and {Smith}, J.~A. and {Tucker}, D.~L. and 
-	{Yanny}, B.},
-    title = "{The Sloan Digital Sky Survey View of the Palomar-Green Bright Quasar Survey}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0506022},
- keywords = {Catalogs, Galaxies: Active, Galaxies: Quasars: Emission Lines, Galaxies: Quasars: General, Surveys},
-     year = 2005,
-    month = sep,
-   volume = 130,
-    pages = {873-895},
-      doi = {10.1086/432466},
-   adsurl = {http://adsabs.harvard.edu/abs/2005AJ....130..873J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...460..339J,
-   author = {{Jordi}, K. and {Grebel}, E.~K. and {Ammon}, K.},
-    title = "{Empirical color transformations between SDSS photometry and other photometric systems}",
-  journal = {\aap},
-   eprint = {arXiv:astro-ph/0609121},
- keywords = {surveys, catalogs, techniques: photometric},
-     year = 2006,
-    month = dec,
-   volume = 460,
-    pages = {339-347},
-      doi = {10.1051/0004-6361:20066082},
-   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...460..339J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.433.1312F,
-   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
-	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
-	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
-	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
-	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
-	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
-	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
-	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
-	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
-	{Zhou}, G.},
-    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1303.3453},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
-     year = 2013,
-    month = aug,
-   volume = 433,
-    pages = {1312-1337},
-      doi = {10.1093/mnras/stt813},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2005PASP..117..810S,
-   author = {{Stritzinger}, M. and {Suntzeff}, N.~B. and {Hamuy}, M. and 
-	{Challis}, P. and {Demarco}, R. and {Germany}, L. and {Soderberg}, A.~M.
-	},
-    title = "{An Atlas of Spectrophotometric Landolt Standard Stars}",
-  journal = {\pasp},
-   eprint = {arXiv:astro-ph/0504244},
- keywords = {Techniques: Photometric, Stars: Fundamental Parameters},
-     year = 2005,
-    month = aug,
-   volume = 117,
-    pages = {810-822},
-      doi = {10.1086/431468},
-   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..810S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008A&A...488..383H,
-   author = {{Harutyunyan}, A.~H. and {Pfahler}, P. and {Pastorello}, A. and 
-	{Taubenberger}, S. and {Turatto}, M. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Elias-Rosa}, N. and {Navasardyan}, H. and 
-	{Valenti}, S. and {Stanishev}, V. and {Patat}, F. and {Riello}, M. and 
-	{Pignata}, G. and {Hillebrandt}, W.},
-    title = "{ESC supernova spectroscopy of non-ESC targets}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {0804.1939},
- keywords = {supernovae: general, methods: data analysis},
-     year = 2008,
-    month = sep,
-   volume = 488,
-    pages = {383-399},
-      doi = {10.1051/0004-6361:20078859},
-   adsurl = {http://adsabs.harvard.edu/abs/2008A&A...488..383H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...666.1024B,
-   author = {{Blondin}, S. and {Tonry}, J.~L.},
-    title = "{Determining the Type, Redshift, and Age of a Supernova Spectrum}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0709.4488},
- keywords = {Methods: Data Analysis, Methods: Statistical, Stars: Supernovae: General},
-     year = 2007,
-    month = sep,
-   volume = 666,
-    pages = {1024-1047},
-      doi = {10.1086/520494},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...666.1024B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005AJ....130..873J,
-   author = {{Jester}, S. and {Schneider}, D.~P. and {Richards}, G.~T. and 
-	{Green}, R.~F. and {Schmidt}, M. and {Hall}, P.~B. and {Strauss}, M.~A. and 
-	{Vanden Berk}, D.~E. and {Stoughton}, C. and {Gunn}, J.~E. and 
-	{Brinkmann}, J. and {Kent}, S.~M. and {Smith}, J.~A. and {Tucker}, D.~L. and 
-	{Yanny}, B.},
-    title = "{The Sloan Digital Sky Survey View of the Palomar-Green Bright Quasar Survey}",
-  journal = {\aj},
-   eprint = {arXiv:astro-ph/0506022},
- keywords = {Catalogs, Galaxies: Active, Galaxies: Quasars: Emission Lines, Galaxies: Quasars: General, Surveys},
-     year = 2005,
-    month = sep,
-   volume = 130,
-    pages = {873-895},
-      doi = {10.1086/432466},
-   adsurl = {http://adsabs.harvard.edu/abs/2005AJ....130..873J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009PASP..121.1395L,
-   author = {{Law}, N.~M. and {Kulkarni}, S.~R. and {Dekany}, R.~G. and {Ofek}, E.~O. and 
-	{Quimby}, R.~M. and {Nugent}, P.~E. and {Surace}, J. and {Grillmair}, C.~C. and 
-	{Bloom}, J.~S. and {Kasliwal}, M.~M. and {Bildsten}, L. and 
-	{Brown}, T. and {Cenko}, S.~B. and {Ciardi}, D. and {Croner}, E. and 
-	{Djorgovski}, S.~G. and {van Eyken}, J. and {Filippenko}, A.~V. and 
-	{Fox}, D.~B. and {Gal-Yam}, A. and {Hale}, D. and {Hamam}, N. and 
-	{Helou}, G. and {Henning}, J. and {Howell}, D.~A. and {Jacobsen}, J. and 
-	{Laher}, R. and {Mattingly}, S. and {McKenna}, D. and {Pickles}, A. and 
-	{Poznanski}, D. and {Rahmer}, G. and {Rau}, A. and {Rosing}, W. and 
-	{Shara}, M. and {Smith}, R. and {Starr}, D. and {Sullivan}, M. and 
-	{Velur}, V. and {Walters}, R. and {Zolkower}, J.},
-    title = "{The Palomar Transient Factory: System Overview, Performance, and First Results}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {0906.5350},
- primaryClass = "astro-ph.IM",
- keywords = {Astronomical Techniques},
-     year = 2009,
-    month = dec,
-   volume = 121,
-    pages = {1395-1408},
-      doi = {10.1086/648598},
-   adsurl = {http://adsabs.harvard.edu/abs/2009PASP..121.1395L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2010SPIE.7733E..12K,
-   author = {{Kaiser}, N. and {Burgett}, W. and {Chambers}, K. and {Denneau}, L. and 
-	{Heasley}, J. and {Jedicke}, R. and {Magnier}, E. and {Morgan}, J. and 
-	{Onaka}, P. and {Tonry}, J.},
-    title = "{The Pan-STARRS wide-field optical/NIR imaging survey}",
-booktitle = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-     year = 2010,
-   series = {Society of Photo-Optical Instrumentation Engineers (SPIE) Conference Series},
-   volume = 7733,
-    month = jul,
-      eid = {77330E},
-      doi = {10.1117/12.859188},
-   adsurl = {http://adsabs.harvard.edu/abs/2010SPIE.7733E..12K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ApJ...696..870D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
-	{Beshore}, E. and {Larson}, S. and {Graham}, M.~J. and {Williams}, R. and 
-	{Christensen}, E. and {Catelan}, M. and {Boattini}, A. and {Gibbs}, A. and 
-	{Hill}, R. and {Kowalski}, R.},
-    title = "{First Results from the Catalina Real-Time Transient Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0809.1394},
- keywords = {BL Lacertae objects: general, galaxies: general, novae, cataclysmic variables, stars: flare, supernovae: general},
-     year = 2009,
-    month = may,
-   volume = 696,
-    pages = {870-884},
-      doi = {10.1088/0004-637X/696/1/870},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...696..870D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2013PASP..125..683B,
-   author = {{Baltay}, C. and {Rabinowitz}, D. and {Hadjiyska}, E. and {Walker}, E.~S. and 
-	{Nugent}, P. and {Coppi}, P. and {Ellman}, N. and {Feindt}, U. and 
-	{McKinnon}, R. and {Horowitz}, B. and {Effron}, A.},
-    title = "{The La Silla-QUEST Low Redshift Supernova Survey}",
-  journal = {\pasp},
- keywords = {Astronomical Instrumentation},
-     year = 2013,
-    month = jun,
-   volume = 125,
-    pages = {683-694},
-      doi = {10.1086/671198},
-   adsurl = {http://adsabs.harvard.edu/abs/2013PASP..125..683B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007PASA...24....1K,
-   author = {{Keller}, S.~C. and {Schmidt}, B.~P. and {Bessell}, M.~S. and 
-	{Conroy}, P.~G. and {Francis}, P. and {Granlund}, A. and {Kowald}, E. and 
-	{Oates}, A.~P. and {Martin-Jones}, T. and {Preston}, T. and 
-	{Tisserand}, P. and {Vaccarella}, A. and {Waterson}, M.~F.},
-    title = "{The SkyMapper Telescope and The Southern Sky Survey}",
-  journal = {\pasa},
-   eprint = {arXiv:astro-ph/0702511},
- keywords = {telescopes, surveys, techniques: photometry,},
-     year = 2007,
-    month = may,
-   volume = 24,
-    pages = {1-12},
-      doi = {10.1071/AS07001},
-   adsurl = {http://adsabs.harvard.edu/abs/2007PASA...24....1K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010ApJ...723L..89U,
-   author = {{Utrobin}, V.~P. and {Chugai}, N.~N. and {Botticella}, M.~T.
-	},
-    title = "{Type IIP Supernova 2009kf: Explosion Driven by Black Hole Accretion?}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1009.4425},
- primaryClass = "astro-ph.SR",
- keywords = {gamma-ray burst: general, stars: evolution, stars: massive, supernovae: general, supernovae: individual: SN 2009kf},
-     year = 2010,
-    month = nov,
-   volume = 723,
-    pages = {L89-L92},
-      doi = {10.1088/2041-8205/723/1/L89},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...723L..89U},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1996AJ....111.1286C,
-   author = {{Clocchiatti}, A. and {Benetti}, S. and {Wheeler}, J.~C. and 
-	{Wren}, W. and {Boisseau}, J. and {Cappellaro}, E. and {Turatto}, M. and 
-	{Patat}, F. and {Swartz}, D.~A. and {Harkness}, R.~P. and {Brotherton}, M.~S. and 
-	{Wills}, B. and {Hemenway}, P. and {Cornell}, M. and {Frueh}, M. and 
-	{Kaiser}, M.~B.},
-    title = "{A Study of SN 1992H in NGC 5377}",
-  journal = {\aj},
- keywords = {SUPERNOVAE: INDIVIDUAL: SN 1992H, GALAXIES: INDIVIDUAL: NGC 5377},
-     year = 1996,
-    month = mar,
-   volume = 111,
-    pages = {1286},
-      doi = {10.1086/117874},
-   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.1286C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2009PASP..121.1334R,
-   author = {{Rau}, A. and {Kulkarni}, S.~R. and {Law}, N.~M. and {Bloom}, J.~S. and 
-	{Ciardi}, D. and {Djorgovski}, G.~S. and {Fox}, D.~B. and {Gal-Yam}, A. and 
-	{Grillmair}, C.~C. and {Kasliwal}, M.~M. and {Nugent}, P.~E. and 
-	{Ofek}, E.~O. and {Quimby}, R.~M. and {Reach}, W.~T. and {Shara}, M. and 
-	{Bildsten}, L. and {Cenko}, S.~B. and {Drake}, A.~J. and {Filippenko}, A.~V. and 
-	{Helfand}, D.~J. and {Helou}, G. and {Howell}, D.~A. and {Poznanski}, D. and 
-	{Sullivan}, M.},
-    title = "{Exploring the Optical Transient Sky with the Palomar Transient Factory}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {0906.5355},
- primaryClass = "astro-ph.CO",
- keywords = {Supernovae},
-     year = 2009,
-    month = dec,
-   volume = 121,
-    pages = {1334-1351},
-      doi = {10.1086/605911},
-   adsurl = {http://adsabs.harvard.edu/abs/2009PASP..121.1334R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011Natur.480..344N,
-   author = {{Nugent}, P.~E. and {Sullivan}, M. and {Cenko}, S.~B. and {Thomas}, R.~C. and 
-	{Kasen}, D. and {Howell}, D.~A. and {Bersier}, D. and {Bloom}, J.~S. and 
-	{Kulkarni}, S.~R. and {Kandrashoff}, M.~T. and {Filippenko}, A.~V. and 
-	{Silverman}, J.~M. and {Marcy}, G.~W. and {Howard}, A.~W. and 
-	{Isaacson}, H.~T. and {Maguire}, K. and {Suzuki}, N. and {Tarlton}, J.~E. and 
-	{Pan}, Y.-C. and {Bildsten}, L. and {Fulton}, B.~J. and {Parrent}, J.~T. and 
-	{Sand}, D. and {Podsiadlowski}, P. and {Bianco}, F.~B. and {Dilday}, B. and 
-	{Graham}, M.~L. and {Lyman}, J. and {James}, P. and {Kasliwal}, M.~M. and 
-	{Law}, N.~M. and {Quimby}, R.~M. and {Hook}, I.~M. and {Walker}, E.~S. and 
-	{Mazzali}, P. and {Pian}, E. and {Ofek}, E.~O. and {Gal-Yam}, A. and 
-	{Poznanski}, D.},
-    title = "{Supernova SN 2011fe from an exploding carbon-oxygen white dwarf star}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1110.6201},
- primaryClass = "astro-ph.CO",
-     year = 2011,
-    month = dec,
-   volume = 480,
-    pages = {344-347},
-      doi = {10.1038/nature10644},
-   adsurl = {http://adsabs.harvard.edu/abs/2011Natur.480..344N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...736..159G,
-   author = {{Gal-Yam}, A. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Green}, Y. and 
-	{Yaron}, O. and {Ben-Ami}, S. and {Xu}, D. and {Sternberg}, A. and 
-	{Quimby}, R.~M. and {Kulkarni}, S.~R. and {Ofek}, E.~O. and 
-	{Walters}, R. and {Nugent}, P.~E. and {Poznanski}, D. and {Bloom}, J.~S. and 
-	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Li}, W. and {Silverman}, J.~M. and 
-	{Walker}, E.~S. and {Sullivan}, M. and {Maguire}, K. and {Howell}, D.~A. and 
-	{Mazzali}, P.~A. and {Frail}, D.~A. and {Bersier}, D. and {James}, P.~A. and 
-	{Akerlof}, C.~W. and {Yuan}, F. and {Law}, N. and {Fox}, D.~B. and 
-	{Gehrels}, N.},
-    title = "{Real-time Detection and Rapid Multiwavelength Follow-up Observations of a Highly Subluminous Type II-P Supernova from the Palomar Transient Factory Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1106.0400},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: PTF10vdl},
-     year = 2011,
-    month = aug,
-   volume = 736,
-      eid = {159},
-    pages = {159},
-      doi = {10.1088/0004-637X/736/2/159},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...736..159G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{arxiv.org.0812.4923,
-   author = {{Pignata}, G. and {Maza}, and J. {Hamuy}, M., and {Other1}, A.N., and {Other2}, A.N., and {Other3}, A.N },
-    title = "{chase}",
-  journal = {arXiv:0812.4923},
-     year = 2008,
-    month = dec,
-    pages = {1-+},
-   adsurl = {http://arxiv.org/abs/0812.4923},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.412.1419L,
-   author = {{Leaman}, J. and {Li}, W. and {Chornock}, R. and {Filippenko}, A.~V.
-	},
-    title = "{Nearby supernova rates from the Lick Observatory Supernova Search - I. The methods and data base}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.4611},
- primaryClass = "astro-ph.SR",
- keywords = {surveys, supernovae: general, galaxies: evolution},
-     year = 2011,
-    month = apr,
-   volume = 412,
-    pages = {1419-1440},
-      doi = {10.1111/j.1365-2966.2011.18158.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1419L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007Natur.447..829P,
-   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Mattila}, S. and {Eldridge}, J.~J. and 
-	{Young}, D. and {Itagaki}, K. and {Yamaoka}, H. and {Navasardyan}, H. and 
-	{Valenti}, S. and {Patat}, F. and {Agnoletto}, I. and {Augusteijn}, T. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Boles}, T. and {Bonnet-Bidaud}, J.-M. and 
-	{Botticella}, M.~T. and {Bufano}, F. and {Cao}, C. and {Deng}, J. and 
-	{Dennefeld}, M. and {Elias-Rosa}, N. and {Harutyunyan}, A. and 
-	{Keenan}, F.~P. and {Iijima}, T. and {Lorenzi}, V. and {Mazzali}, P.~A. and 
-	{Meng}, X. and {Nakano}, S. and {Nielsen}, T.~B. and {Smoker}, J.~V. and 
-	{Stanishev}, V. and {Turatto}, M. and {Xu}, D. and {Zampieri}, L.
-	},
-    title = "{A giant outburst two years before the core-collapse of a massive star}",
-  journal = {\nat},
-   eprint = {arXiv:astro-ph/0703663},
-     year = 2007,
-    month = jun,
-   volume = 447,
-    pages = {829-832},
-      doi = {10.1038/nature05825},
-   adsurl = {http://adsabs.harvard.edu/abs/2007Natur.447..829P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ARA&A..47...63S,
-   author = {{Smartt}, S.~J.},
-    title = "{Progenitors of Core-Collapse Supernovae}",
-  journal = {\araa},
-archivePrefix = "arXiv",
-   eprint = {0908.0700},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = sep,
-   volume = 47,
-    pages = {63-106},
-      doi = {10.1146/annurev-astro-082708-101737},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ARA&A..47...63S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1999A&A...351..459C,
-   author = {{Cappellaro}, E. and {Evans}, R. and {Turatto}, M.},
-    title = "{A new determination of supernova rates and a comparison with indicators for galactic star formation}",
-  journal = {\aap},
-   eprint = {astro-ph/9904225},
- keywords = {SURVEYS, STARS: SUPERNOVAE: GENERAL, GALAXIES: EVOLUTION, GALAXIES: STELLAR CONTENT},
-     year = 1999,
-    month = nov,
-   volume = 351,
-    pages = {459-466},
-   adsurl = {http://adsabs.harvard.edu/abs/1999A&A...351..459C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.412.1441L,
-   author = {{Li}, W. and {Leaman}, J. and {Chornock}, R. and {Filippenko}, A.~V. and 
-	{Poznanski}, D. and {Ganeshalingam}, M. and {Wang}, X. and {Modjaz}, M. and 
-	{Jha}, S. and {Foley}, R.~J. and {Smith}, N.},
-    title = "{Nearby supernova rates from the Lick Observatory Supernova Search - II. The observed luminosity functions and fractions of supernovae in a complete sample}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.4612},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general},
-     year = 2011,
-    month = apr,
-   volume = 412,
-    pages = {1441-1472},
-      doi = {10.1111/j.1365-2966.2011.18160.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1441L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...723L..98K,
-   author = {{Kasliwal}, M.~M. and {Kulkarni}, S.~R. and {Gal-Yam}, A. and 
-	{Yaron}, O. and {Quimby}, R.~M. and {Ofek}, E.~O. and {Nugent}, P. and 
-	{Poznanski}, D. and {Jacobsen}, J. and {Sternberg}, A. and {Arcavi}, I. and 
-	{Howell}, D.~A. and {Sullivan}, M. and {Rich}, D.~J. and {Burke}, P.~F. and 
-	{Brimacombe}, J. and {Milisavljevic}, D. and {Fesen}, R. and 
-	{Bildsten}, L. and {Shen}, K. and {Cenko}, S.~B. and {Bloom}, J.~S. and 
-	{Hsiao}, E. and {Law}, N.~M. and {Gehrels}, N. and {Immler}, S. and 
-	{Dekany}, R. and {Rahmer}, G. and {Hale}, D. and {Smith}, R. and 
-	{Zolkower}, J. and {Velur}, V. and {Walters}, R. and {Henning}, J. and 
-	{Bui}, K. and {McKenna}, D.},
-    title = "{Rapidly Decaying Supernova 2010X: A Candidate ''.Ia'' Explosion}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1009.0960},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: SN2010X SN2002bj, surveys, white dwarfs},
-     year = 2010,
-    month = nov,
-   volume = 723,
-    pages = {L98-L102},
-      doi = {10.1088/2041-8205/723/1/L98},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...723L..98K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009Natur.459..674V,
-   author = {{Valenti}, S. and {Pastorello}, A. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Mazzali}, P.~A. and {Manteca}, J. and {Taubenberger}, S. and 
-	{Elias-Rosa}, N. and {Ferrando}, R. and {Harutyunyan}, A. and 
-	{Hentunen}, V.~P. and {Nissinen}, M. and {Pian}, E. and {Turatto}, M. and 
-	{Zampieri}, L. and {Smartt}, S.~J.},
-    title = "{A low-energy core-collapse supernova without a hydrogen envelope}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {0901.2074},
- primaryClass = "astro-ph.SR",
-     year = 2009,
-    month = jun,
-   volume = 459,
-    pages = {674-677},
-      doi = {10.1038/nature08023},
-   adsurl = {http://adsabs.harvard.edu/abs/2009Natur.459..674V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998Msngr..91....9M,
-   author = {{Moorwood}, A. and {Cuby}, J.-G. and {Lidman}, C.},
-    title = "{SOFI sees first light at the NTT.}",
-  journal = {The Messenger},
- keywords = {New Technology Telescopes: Infrared Imaging, New Technology Telescopes: Infrared Spectrometers},
-     year = 1998,
-    month = mar,
-   volume = 91,
-    pages = {9-13},
-   adsurl = {http://adsabs.harvard.edu/abs/1998Msngr..91....9M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{sofiman,
-   author = {{Lidman,}, C. and {Cuby,}, J.-G. and {Vanzi}, L. and 
-	{Billeres}, M. and {Ivanov}, V.D. and {Saviane}, I.
-	},
-    title = "{SOFI User's Manual}",
-  journal = {LSO-MAN-ESO-40100-0004, Issue 2.3},
- keywords = {Optical},
-     year = 2012,
-    month = may,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ATel.4037....1V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011A&A...527A..91P,
-   author = {{Patat}, F. and {Moehler}, S. and {O'Brien}, K. and {Pompei}, E. and 
-	{Bensby}, T. and {Carraro}, G. and {de Ugarte Postigo}, A. and 
-	{Fox}, A. and {Gavignaud}, I. and {James}, G. and {Korhonen}, H. and 
-	{Ledoux}, C. and {Randall}, S. and {Sana}, H. and {Smoker}, J. and 
-	{Stefl}, S. and {Szeifert}, T.},
-    title = "{Optical atmospheric extinction over Cerro Paranal}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1011.6156},
- primaryClass = "astro-ph.IM",
- keywords = {techniques: spectroscopic, Earth, site testing, atmospheric effects},
-     year = 2011,
-    month = mar,
-   volume = 527,
-      eid = {A91},
-    pages = {A91},
-      doi = {10.1051/0004-6361/201015537},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...527A..91P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005JQSRT..91..233C,
-   author = {{Clough}, S.~A. and {Shephard}, M.~W. and {Mlawer}, E.~J. and 
-	{Delamere}, J.~S. and {Iacono}, M.~J. and {Cady-Pereira}, K. and 
-	{Boukabara}, S. and {Brown}, P.~D.},
-    title = "{Atmospheric radiative transfer modeling: a summary of the AER codes}",
-  journal = {\jqsrt},
-     year = 2005,
-    month = mar,
-   volume = 91,
-    pages = {233-244},
-      doi = {10.1016/j.jqsrt.2004.05.058},
-   adsurl = {http://adsabs.harvard.edu/abs/2005JQSRT..91..233C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...770...29C,
-   author = {{Childress}, M.~J. and {Scalzo}, R.~A. and {Sim}, S.~A. and 
-	{Tucker}, B.~E. and {Yuan}, F. and {Schmidt}, B.~P. and {Cenko}, S.~B. and 
-	{Silverman}, J.~M. and {Contreras}, C. and {Hsiao}, E.~Y. and 
-	{Phillips}, M. and {Morrell}, N. and {Jha}, S.~W. and {McCully}, C. and 
-	{Filippenko}, A.~V. and {Anderson}, J.~P. and {Benetti}, S. and 
-	{Bufano}, F. and {de Jaeger}, T. and {Forster}, F. and {Gal-Yam}, A. and 
-	{Le Guillou}, L. and {Maguire}, K. and {Maund}, J. and {Mazzali}, P.~A. and 
-	{Pignata}, G. and {Smartt}, S. and {Spyromilio}, J. and {Sullivan}, M. and 
-	{Taddia}, F. and {Valenti}, S. and {Bayliss}, D.~D.~R. and {Bessell}, M. and 
-	{Blanc}, G.~A. and {Carson}, D.~J. and {Clubb}, K.~I. and {de Burgh-Day}, C. and 
-	{Desjardins}, T.~D. and {Fang}, J.~J. and {Fox}, O.~D. and {Gates}, E.~L. and 
-	{Ho}, I.-T. and {Keller}, S. and {Kelly}, P.~L. and {Lidman}, C. and 
-	{Loaring}, N.~S. and {Mould}, J.~R. and {Owers}, M. and {Ozbilgen}, S. and 
-	{Pei}, L. and {Pickering}, T. and {Pracy}, M.~B. and {Rich}, J.~A. and 
-	{Schaefer}, B.~E. and {Scott}, N. and {Stritzinger}, M. and 
-	{Vogt}, F.~P.~A. and {Zhou}, G.},
-    title = "{Spectroscopic Observations of SN 2012fr: A Luminous, Normal Type Ia Supernova with Early High-velocity Features and a Late Velocity Plateau}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1302.2926},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: individual: NGC 1365, supernovae: general, supernovae: individual: SN 2012fr},
-     year = 2013,
-    month = jun,
-   volume = 770,
-      eid = {29},
-    pages = {29},
-      doi = {10.1088/0004-637X/770/1/29},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770...29C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJS..205...20M,
-   author = {{Magnier}, E.~A. and {Schlafly}, E. and {Finkbeiner}, D. and 
-	{Juric}, M. and {Tonry}, J.~L. and {Burgett}, W.~S. and {Chambers}, K.~C. and 
-	{Flewelling}, H.~A. and {Kaiser}, N. and {Kudritzki}, R.-P. and 
-	{Morgan}, J.~S. and {Price}, P.~A. and {Sweeney}, W.~E. and 
-	{Stubbs}, C.~W.},
-    title = "{The Pan-STARRS 1 Photometric Reference Ladder, Release 12.01}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1303.3634},
- primaryClass = "astro-ph.IM",
- keywords = {catalogs, instrumentation: photometers, standards, surveys: PS1, techniques: photometric},
-     year = 2013,
-    month = apr,
-   volume = 205,
-      eid = {20},
-    pages = {20},
-      doi = {10.1088/0067-0049/205/2/20},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJS..205...20M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{Lor92,
-	author ={{Lord}, S.D.},
-	year = 1992,
-	journal ={NASA Technical Memorandum},
-	volume = 103957
-}
-
-@ARTICLE{2012ApJS..203...21A,
-   author = {{Ahn}, C.~P. and {Alexandroff}, R. and {Allende Prieto}, C. and 
-	{Anderson}, S.~F. and {Anderton}, T. and {Andrews}, B.~H. and 
-	{Aubourg}, {\'E}. and {Bailey}, S. and {Balbinot}, E. and {Barnes}, R. and et al.},
-    title = "{The Ninth Data Release of the Sloan Digital Sky Survey: First Spectroscopic Data from the SDSS-III Baryon Oscillation Spectroscopic Survey}",
-  journal = {\apjs},
-archivePrefix = "arXiv",
-   eprint = {1207.7137},
- primaryClass = "astro-ph.IM",
- keywords = {atlases, catalogs, surveys },
-     year = 2012,
-    month = dec,
-   volume = 203,
-      eid = {21},
-    pages = {21},
-      doi = {10.1088/0067-0049/203/2/21},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJS..203...21A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012PASP..124..668Y,
-   author = {{Yaron}, O. and {Gal-Yam}, A.},
-    title = "{WISeREP - An Interactive Supernova Data Repository}",
-  journal = {\pasp},
-archivePrefix = "arXiv",
-   eprint = {1204.1891},
- primaryClass = "astro-ph.IM",
- keywords = {Supernovae},
-     year = 2012,
-    month = jul,
-   volume = 124,
-    pages = {668-681},
-      doi = {10.1086/666656},
-   adsurl = {http://adsabs.harvard.edu/abs/2012PASP..124..668Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.440.1917D,
-   author = {{Dwarkadas}, V.~V.},
-    title = "{On the lack of X-ray bright Type IIP supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1402.5150},
- primaryClass = "astro-ph.HE",
- keywords = {shock waves, circumstellar matter, stars: massive, supernovae: general, stars: winds, outflows, X-rays: ISM},
-     year = 2014,
-    month = may,
-   volume = 440,
-    pages = {1917-1924},
-      doi = {10.1093/mnras/stu347},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.440.1917D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...759...20K,
-   author = {{Kochanek}, C.~S. and {Khan}, R. and {Dai}, X.},
-    title = "{On Absorption by Circumstellar Dust, with the Progenitor of SN 2012aw as a Case Study}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1208.4111},
- primaryClass = "astro-ph.SR",
- keywords = {dust, extinction, stars: evolution, supergiants, supernovae: general, supernovae: individual: SN2012aw},
-     year = 2012,
-    month = nov,
-   volume = 759,
-      eid = {20},
-    pages = {20},
-      doi = {10.1088/0004-637X/759/1/20},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...759...20K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012MNRAS.419.2054W,
-   author = {{Walmswell}, J.~J. and {Eldridge}, J.~J.},
-    title = "{Circumstellar dust as a solution to the red supergiant supernova progenitor problem}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1109.4637},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supergiants, supernovae: general},
-     year = 2012,
-    month = jan,
-   volume = 419,
-    pages = {2054-2062},
-      doi = {10.1111/j.1365-2966.2011.19860.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.2054W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2008ApJ...684.1336K,
-   author = {{Kochanek}, C.~S. and {Beacom}, J.~F. and {Kistler}, M.~D. and 
-	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A. and 
-	{Y{\"u}ksel}, H.},
-    title = "{A Survey About Nothing: Monitoring a Million Supergiants for Failed Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0802.0456},
- keywords = {Stars: Evolution, Stars: Supernovae: General, Surveys},
-     year = 2008,
-    month = sep,
-   volume = 684,
-    pages = {1336-1342},
-      doi = {10.1086/590053},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...684.1336K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013MNRAS.431L.102M,
-   author = {{Maund}, J.~R. and {Fraser}, M. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
-	{Barbarino}, C. and {Childress}, M. and {Gal-Yam}, A. and {Inserra}, C. and 
-	{Pignata}, G. and {Reichart}, D. and {Schmidt}, B. and {Sollerman}, J. and 
-	{Taddia}, F. and {Tomasella}, L. and {Valenti}, S. and {Yaron}, O.
-	},
-    title = "{Supernova 2012ec: identification of the progenitor and early monitoring with PESSTO}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1302.0170},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: 2012ec, galaxies: individual: NGC 1084},
-     year = 2013,
-    month = apr,
-   volume = 431,
-    pages = {L102-L106},
-      doi = {10.1093/mnrasl/slt017},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L.102M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013arXiv1302.2983V,
-   author = {{Valenti}, S. and {Yuan}, F. and {Taubenberger}, S. and {Maguire}, K. and 
-	{Pastorello}, A. and {Benetti}, S. and {Smartt}, S.~J. and {Cappellaro}, E. and 
-	{Howell}, D.~A. and {Bildsten}, L. and {Moore}, K. and {Stritzinger}, M. and 
-	{Anderson}, J.~P. and {Benitez-Herrera}, S. and {Bufano}, F. and 
-	{Gonzalez-Gaitan}, S. and {McCrum}, M.~G. and {Pignata}, G. and 
-	{Fraser}, M. and {Gal-Yam}, A. and {Le Guillou}, L. and {Inserra}, C. and 
-	{Reichart}, D.~E. and {Scalzo}, R. and {Sullivan}, M. and {Yaron}, O. and 
-	{Young}, D.~R.},
-    title = "{PESSTO monitoring of SN 2012hn: further heterogeneity among faint type I supernovae}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1302.2983},
- primaryClass = "astro-ph.SR",
- keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Cosmology and Extragalactic Astrophysics},
-     year = 2013,
-    month = feb,
-   adsurl = {http://adsabs.harvard.edu/abs/2013arXiv1302.2983V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996A&AS..117..393B,
-   author = {{Bertin}, E. and {Arnouts}, S.},
-    title = "{SExtractor: Software for source extraction.}",
-  journal = {\aaps},
- keywords = {METHODS: DATA ANALYSIS, TECHNIQUES: IMAGE PROCESSING, GALAXIES: PHOTOMETRY},
-     year = 1996,
-    month = jun,
-   volume = 117,
-    pages = {393-404},
-   adsurl = {http://adsabs.harvard.edu/abs/1996A&AS..117..393B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006AJ....131.1163S,
-   author = {{Skrutskie}, M.~F. and {Cutri}, R.~M. and {Stiening}, R. and 
-	{Weinberg}, M.~D. and {Schneider}, S. and {Carpenter}, J.~M. and 
-	{Beichman}, C. and {Capps}, R. and {Chester}, T. and {Elias}, J. and 
-	{Huchra}, J. and {Liebert}, J. and {Lonsdale}, C. and {Monet}, D.~G. and 
-	{Price}, S. and {Seitzer}, P. and {Jarrett}, T. and {Kirkpatrick}, J.~D. and 
-	{Gizis}, J.~E. and {Howard}, E. and {Evans}, T. and {Fowler}, J. and 
-	{Fullmer}, L. and {Hurt}, R. and {Light}, R. and {Kopan}, E.~L. and 
-	{Marsh}, K.~A. and {McCallon}, H.~L. and {Tam}, R. and {Van Dyk}, S. and 
-	{Wheelock}, S.},
-    title = "{The Two Micron All Sky Survey (2MASS)}",
-  journal = {\aj},
- keywords = {Catalogs, Infrared: General, Surveys},
-     year = 2006,
-    month = feb,
-   volume = 131,
-    pages = {1163-1183},
-      doi = {10.1086/498708},
-   adsurl = {http://adsabs.harvard.edu/abs/2006AJ....131.1163S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{swarp,
-   author = {{Bertin}, E. and {Mellier}, Y. and {Radovich}, M. and {Missonnier}, G. and 
-	{Didelon}, P. and {Morin}, B.},
-    title = "{The TERAPIX Pipeline}",
- keywords = {astronomy: optical, astronomy: software, pipelines: data reduction, software: package, software: development, software: data analysis, data analysis, databases, distributed processing},
-booktitle = {Astronomical Data Analysis Software and Systems XI},
-     year = 2002,
-   series = {Astronomical Society of the Pacific Conference Series},
-   volume = 281,
-   editor = {{Bohlender}, D.~A. and {Durand}, D. and {Handley}, T.~H.},
-    pages = {228},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ASPC..281..228B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ApJ...696..870D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
-	{Beshore}, E. and {Larson}, S. and {Graham}, M.~J. and {Williams}, R. and 
-	{Christensen}, E. and {Catelan}, M. and {Boattini}, A. and {Gibbs}, A. and 
-	{Hill}, R. and {Kowalski}, R.},
-    title = "{First Results from the Catalina Real-Time Transient Survey}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0809.1394},
- keywords = {BL Lacertae objects: general, galaxies: general, novae, cataclysmic variables, stars: flare, supernovae: general},
-     year = 2009,
-    month = may,
-   volume = 696,
-    pages = {870-884},
-      doi = {10.1088/0004-637X/696/1/870},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...696..870D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...735..106D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Mahabal}, A. and 
-	{Anderson}, J. and {Roy}, R. and {Mohan}, V. and {Ravindranath}, S. and 
-	{Frail}, D. and {Gezari}, S. and {Neill}, J.~D. and {Ho}, L.~C. and 
-	{Prieto}, J.~L. and {Thompson}, D. and {Thorstensen}, J. and 
-	{Wagner}, M. and {Kowalski}, R. and {Chiang}, J. and {Grove}, J.~E. and 
-	{Schinzel}, F.~K. and {Wood}, D.~L. and {Carrasco}, L. and {Recillas}, E. and 
-	{Kewley}, L. and {Archana}, K.~N. and {Basu}, A. and {Wadadekar}, Y. and 
-	{Kumar}, B. and {Myers}, A.~D. and {Phinney}, E.~S. and {Williams}, R. and 
-	{Graham}, M.~J. and {Catelan}, M. and {Beshore}, E. and {Larson}, S. and 
-	{Christensen}, E.},
-    title = "{The Discovery and Nature of the Optical Transient CSS100217:102913+404220}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1103.5514},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: active, galaxies: nuclei, galaxies: stellar content, supernovae: general},
-     year = 2011,
-    month = jul,
-   volume = 735,
-      eid = {106},
-    pages = {106},
-      doi = {10.1088/0004-637X/735/2/106},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...735..106D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...718L.127D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Prieto}, J.~L. and 
-	{Mahabal}, A. and {Balam}, D. and {Williams}, R. and {Graham}, M.~J. and 
-	{Catelan}, M. and {Beshore}, E. and {Larson}, S.},
-    title = "{Discovery of the Extremely Energetic Supernova 2008fz}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0908.1990},
- primaryClass = "astro-ph.HE",
- keywords = {galaxies: stellar content, supernovae: general, supernovae: individual: SN 2008fz},
-     year = 2010,
-    month = aug,
-   volume = 718,
-    pages = {L127-L131},
-      doi = {10.1088/2041-8205/718/2/L127},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...718L.127D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2010ApJ...724L..16P,
-   author = {{Pastorello}, A. and {Smartt}, S.~J. and {Botticella}, M.~T. and 
-	{Maguire}, K. and {Fraser}, M. and {Smith}, K. and {Kotak}, R. and 
-	{Magill}, L. and {Valenti}, S. and {Young}, D.~R. and {Gezari}, S. and 
-	{Bresolin}, F. and {Kudritzki}, R. and {Howell}, D.~A. and {Rest}, A. and 
-	{Metcalfe}, N. and {Mattila}, S. and {Kankare}, E. and {Huang}, K.~Y. and 
-	{Urata}, Y. and {Burgett}, W.~S. and {Chambers}, K.~C. and {Dombeck}, T. and 
-	{Flewelling}, H. and {Grav}, T. and {Heasley}, J.~N. and {Hodapp}, K.~W. and 
-	{Kaiser}, N. and {Luppino}, G.~A. and {Lupton}, R.~H. and {Magnier}, E.~A. and 
-	{Monet}, D.~G. and {Morgan}, J.~S. and {Onaka}, P.~M. and {Price}, P.~A. and 
-	{Rhoads}, P.~H. and {Siegmund}, W.~A. and {Stubbs}, C.~W. and 
-	{Sweeney}, W.~E. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waterson}, M.~F. and {Waters}, C. and {Wynn-Williams}, C.~G.
-	},
-    title = "{Ultra-bright Optical Transients are Linked with Type Ic Supernovae}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1008.2674},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: SN 2010gx SCP-06F6 SN 2005ap},
-     year = 2010,
-    month = nov,
-   volume = 724,
-    pages = {L16-L21},
-      doi = {10.1088/2041-8205/724/1/L16},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...724L..16P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...681L...9P,
-   author = {{Prieto}, J.~L. and {Kistler}, M.~D. and {Thompson}, T.~A. and 
-	{Y{\"u}ksel}, H. and {Kochanek}, C.~S. and {Stanek}, K.~Z. and 
-	{Beacom}, J.~F. and {Martini}, P. and {Pasquali}, A. and {Bechtold}, J.
-	},
-    title = "{Discovery of the Dust-Enshrouded Progenitor of SN 2008S with Spitzer}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0803.0324},
- keywords = {Stars: Evolution, Stars: Supernovae: General, Surveys},
-     year = 2008,
-    month = jul,
-   volume = 681,
-    pages = {L9-L12},
-      doi = {10.1086/589922},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...681L...9P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2013ApJ...770..128I,
-   author = {{Inserra}, C. and {Smartt}, S.~J. and {Jerkstrand}, A. and {Valenti}, S. and 
-	{Fraser}, M. and {Wright}, D. and {Smith}, K. and {Chen}, T.-W. and 
-	{Kotak}, R. and {Pastorello}, A. and {Nicholl}, M. and {Bresolin}, F. and 
-	{Kudritzki}, R.~P. and {Benetti}, S. and {Botticella}, M.~T. and 
-	{Burgett}, W.~S. and {Chambers}, K.~C. and {Ergon}, M. and {Flewelling}, H. and 
-	{Fynbo}, J.~P.~U. and {Geier}, S. and {Hodapp}, K.~W. and {Howell}, D.~A. and 
-	{Huber}, M. and {Kaiser}, N. and {Leloudas}, G. and {Magill}, L. and 
-	{Magnier}, E.~A. and {McCrum}, M.~G. and {Metcalfe}, N. and 
-	{Price}, P.~A. and {Rest}, A. and {Sollerman}, J. and {Sweeney}, W. and 
-	{Taddia}, F. and {Taubenberger}, S. and {Tonry}, J.~L. and {Wainscoat}, R.~J. and 
-	{Waters}, C. and {Young}, D.},
-    title = "{Super-luminous Type Ic Supernovae: Catching a Magnetar by the Tail}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1304.3320},
- primaryClass = "astro-ph.HE",
- keywords = {stars: magnetars, supernovae: general, supernovae: individual: PTF10hgi PTF11rks SN 2011ke SN 2011kf SN 2012il},
-     year = 2013,
-    month = jun,
-   volume = 770,
-      eid = {128},
-    pages = {128},
-      doi = {10.1088/0004-637X/770/2/128},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...770..128I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012Msngr.150...34B,
-   author = {{Baltay}, C. and {Rabinowitz}, D. and {Hadjiyska}, E. and {Schwamb}, M. and 
-	{Ellman}, N. and {Zinn}, R. and {Tourtellotte}, S. and {McKinnon}, R. and 
-	{Horowitz}, B. and {Effron}, A. and {Nugent}, P.},
-    title = "{The La Silla-QUEST Southern Hemisphere Variability Survey}",
-  journal = {The Messenger},
-     year = 2012,
-    month = dec,
-   volume = 150,
-    pages = {34-38},
-   adsurl = {http://adsabs.harvard.edu/abs/2012Msngr.150...34B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...718L.127D,
-   author = {{Drake}, A.~J. and {Djorgovski}, S.~G. and {Prieto}, J.~L. and 
-	{Mahabal}, A. and {Balam}, D. and {Williams}, R. and {Graham}, M.~J. and 
-	{Catelan}, M. and {Beshore}, E. and {Larson}, S.},
-    title = "{Discovery of the Extremely Energetic Supernova 2008fz}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0908.1990},
- primaryClass = "astro-ph.HE",
- keywords = {galaxies: stellar content, supernovae: general, supernovae: individual: SN 2008fz},
-     year = 2010,
-    month = aug,
-   volume = 718,
-    pages = {L127-L131},
-      doi = {10.1088/2041-8205/718/2/L127},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...718L.127D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...686..467S,
-   author = {{Smith}, N. and {Chornock}, R. and {Li}, W. and {Ganeshalingam}, M. and 
-	{Silverman}, J.~M. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
-	{Barth}, A.~J.},
-    title = "{SN 2006tf: Precursor Eruptions and the Optically Thick Regime of Extremely Luminous Type IIn Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0804.0042},
- keywords = {Stars: Circumstellar Matter, Stars: Evolution, Stars: Mass Loss, Stars: Winds, Outflows, supernovae: individual (SN 2006tf)},
-     year = 2008,
-    month = oct,
-   volume = 686,
-    pages = {467-484},
-      doi = {10.1086/591021},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...686..467S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007ApJ...659L..13O,
-   author = {{Ofek}, E.~O. and {Cameron}, P.~B. and {Kasliwal}, M.~M. and 
-	{Gal-Yam}, A. and {Rau}, A. and {Kulkarni}, S.~R. and {Frail}, D.~A. and 
-	{Chandra}, P. and {Cenko}, S.~B. and {Soderberg}, A.~M. and 
-	{Immler}, S.},
-    title = "{SN 2006gy: An Extremely Luminous Supernova in the Galaxy NGC 1260}",
-  journal = {\apjl},
-   eprint = {astro-ph/0612408},
- keywords = {galaxies: individual (NGC 1260), Stars: Supernovae: General, supernovae: individual (SN 2006gy)},
-     year = 2007,
-    month = apr,
-   volume = 659,
-    pages = {L13-L16},
-      doi = {10.1086/516749},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...659L..13O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013Natur.494...65O,
-   author = {{Ofek}, E.~O. and {Sullivan}, M. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
-	{Gal-Yam}, A. and {Kulkarni}, S.~R. and {Arcavi}, I. and {Bildsten}, L. and 
-	{Bloom}, J.~S. and {Horesh}, A. and {Howell}, D.~A. and {Filippenko}, A.~V. and 
-	{Laher}, R. and {Murray}, D. and {Nakar}, E. and {Nugent}, P.~E. and 
-	{Silverman}, J.~M. and {Shaviv}, N.~J. and {Surace}, J. and 
-	{Yaron}, O.},
-    title = "{An outburst from a massive star 40days before a supernova explosion}",
-  journal = {\nat},
-archivePrefix = "arXiv",
-   eprint = {1302.2633},
- primaryClass = "astro-ph.HE",
-     year = 2013,
-    month = feb,
-   volume = 494,
-    pages = {65-67},
-      doi = {10.1038/nature11877},
-   adsurl = {http://adsabs.harvard.edu/abs/2013Natur.494...65O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-@ARTICLE{2014ApJ...789..104O,
-   author = {{Ofek}, E.~O. and {Sullivan}, M. and {Shaviv}, N.~J. and {Steinbok}, A. and 
-	{Arcavi}, I. and {Gal-Yam}, A. and {Tal}, D. and {Kulkarni}, S.~R. and 
-	{Nugent}, P.~E. and {Ben-Ami}, S. and {Kasliwal}, M.~M. and 
-	{Cenko}, S.~B. and {Laher}, R. and {Surace}, J. and {Bloom}, J.~S. and 
-	{Filippenko}, A.~V. and {Silverman}, J.~M. and {Yaron}, O.},
-    title = "{Precursors Prior to Type IIn Supernova Explosions are Common: Precursor Rates, Properties, and Correlations}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1401.5468},
- primaryClass = "astro-ph.HE",
- keywords = {stars: mass-loss, supernovae: general, supernovae: individual: SN 2010mc PTF 10bjb SN 2011ht PTF 10weh PTF 12cxj SN 2009ip},
-     year = 2014,
-    month = jul,
-   volume = 789,
-      eid = {104},
-    pages = {104},
-      doi = {10.1088/0004-637X/789/2/104},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...789..104O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013ApJ...767....1P,
-   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
-	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
-	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
-	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
-	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
-	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
-	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
-	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
-	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
-	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
-	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
-	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
-	{Wright}, D.},
-    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1210.3568},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {1},
-    pages = {1},
-      doi = {10.1088/0004-637X/767/1/1},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013RSPTA.37120239H,
-   author = {{Hodgkin}, S.~T. and {Wyrzykowski}, L. and {Blagorodnova}, N. and 
-	{Koposov}, S.},
-    title = "{Transient astronomy with the Gaia satellite}",
-  journal = {Royal Society of London Philosophical Transactions Series A},
-     year = 2013,
-    month = apr,
-   volume = 371,
-    pages = {20239},
-      doi = {10.1098/rsta.2012.0239},
-   adsurl = {http://esoads.eso.org/abs/2013RSPTA.37120239H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013RSPTA.37120498O,
-   author = {{O'Brien}, P.~T. and {Smartt}, S.~J.},
-    title = "{Interpreting signals from astrophysical transient experiments}",
-  journal = {Royal Society of London Philosophical Transactions Series A},
-archivePrefix = "arXiv",
-   eprint = {1306.0792},
- primaryClass = "astro-ph.IM",
-     year = 2013,
-    month = apr,
-   volume = 371,
-    pages = {20498},
-      doi = {10.1098/rsta.2012.0498},
-   adsurl = {http://esoads.eso.org/abs/2013RSPTA.37120498O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115.1220F,
-   author = {{Foley}, R.~J. and {Papenkova}, M.~S. and {Swift}, B.~J. and 
-	{Filippenko}, A.~V. and {Li}, W. and {Mazzali}, P.~A. and {Chornock}, R. and 
-	{Leonard}, D.~C. and {Van Dyk}, S.~D.},
-    title = "{Optical Photometry and Spectroscopy of the SN 1998bw-like Type Ic Supernova 2002ap}",
-  journal = {\pasp},
-   eprint = {astro-ph/0307136},
- keywords = {gamma-rays: bursts, line: identification, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1985F, Stars: Supernovae: Individual: Alphanumeric: SN 1994I, Stars: Supernovae: Individual: Alphanumeric: SN 1998bw, Stars: Supernovae: Individual: Alphanumeric: SN 1999ex, supernovae: individual (SN 2002ap)},
-     year = 2003,
-    month = oct,
-   volume = 115,
-    pages = {1220-1235},
-      doi = {10.1086/378242},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115.1220F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996AJ....111..327R,
-   author = {{Richmond}, M.~W. and {van Dyk}, S.~D. and {Ho}, W. and {Peng}, C.~Y. and 
-	{Paik}, Y. and {Treffers}, R.~R. and {Filippenko}, A.~V. and 
-	{Bustamante-Donas}, J. and {Moeller}, M. and {Pawellek}, C. and 
-	{Tartara}, H. and {Spence}, M.},
-    title = "{UBVRI Photometry of the Type IC SN 1994I in M51}",
-  journal = {\aj},
- keywords = {GALAXIES: INDIVIDUAL: M51, SUPERNOVAE: INDIVIDUAL: SN 1994I},
-     year = 1996,
-    month = jan,
-   volume = 111,
-    pages = {327},
-      doi = {10.1086/117785},
-   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111..327R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002AJ....124.2490L,
-   author = {{Leonard}, D.~C. and {Filippenko}, A.~V. and {Li}, W. and {Matheson}, T. and 
-	{Kirshner}, R.~P. and {Chornock}, R. and {Van Dyk}, S.~D. and 
-	{Berlind}, P. and {Calkins}, M.~L. and {Challis}, P.~M. and 
-	{Garnavich}, P.~M. and {Jha}, S. and {Mahdavi}, A.},
-    title = "{A Study of the Type II-Plateau Supernova 1999gi and the Distance to its Host Galaxy, NGC 3184}",
-  journal = {\aj},
-   eprint = {astro-ph/0207601},
- keywords = {Cosmology: Distance Scale, Galaxies: Individual: NGC Number: NGC 3184, Stars: Supernovae: Individual: Alphanumeric: SN 1999gi},
-     year = 2002,
-    month = nov,
-   volume = 124,
-    pages = {2490-2505},
-      doi = {10.1086/343771},
-   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....124.2490L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000PASP..112.1532V,
-   author = {{Van Dyk}, S.~D. and {Peng}, C.~Y. and {King}, J.~Y. and {Filippenko}, A.~V. and 
-	{Treffers}, R.~R. and {Li}, W. and {Richmond}, M.~W.},
-    title = "{SN 1997bs in M66: Another Extragalactic {$\eta$} Carinae Analog?}",
-  journal = {\pasp},
-   eprint = {astro-ph/0009027},
- keywords = {Galaxies: Individual: NGC Number: NGC 3627, Galaxies: Stellar Content, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, supernovae: individual (SN 1997bs)},
-     year = 2000,
-    month = dec,
-   volume = 112,
-    pages = {1532-1541},
-      doi = {10.1086/317727},
-   adsurl = {http://adsabs.harvard.edu/abs/2000PASP..112.1532V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572..932P,
-   author = {{Pooley}, D. and {Lewin}, W.~H.~G. and {Fox}, D.~W. and {Miller}, J.~M. and 
-	{Lacey}, C.~K. and {Van Dyk}, S.~D. and {Weiler}, K.~W. and 
-	{Sramek}, R.~A. and {Filippenko}, A.~V. and {Leonard}, D.~C. and 
-	{Immler}, S. and {Chevalier}, R.~A. and {Fabian}, A.~C. and 
-	{Fransson}, C. and {Nomoto}, K.},
-    title = "{X-Ray, Optical, and Radio Observations of the Type II Supernovae 1999em and 1998S}",
-  journal = {\apj},
-   eprint = {astro-ph/0103196},
- keywords = {Radio Continuum: ISM, Stars: Mass Loss, Stars: Supernovae: Individual: Alphanumeric: SN 1998S, Stars: Supernovae: Individual: Alphanumeric: SN 1999em, X-Rays: Individual: Alphanumeric: SN 1998S, X-Rays: Individual: Alphanumeric: SN 1999em, X-Rays: ISM},
-     year = 2002,
-    month = jun,
-   volume = 572,
-    pages = {932-943},
-      doi = {10.1086/340346},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572..932P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...641.1060L,
-   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
-	{Jha}, S. and {Bloom}, J.~S. and {Riess}, A.~G. and {Livio}, M.
-	},
-    title = "{Identification of the Red Supergiant Progenitor of Supernova 2005cs: Do the Progenitors of Type II-P Supernovae Have Low Mass?}",
-  journal = {\apj},
-   eprint = {astro-ph/0507394},
- keywords = {Galaxies: Individual: Messier Number: M51, Stars: Evolution, Stars: Supernovae: General, supernovae: individual (SN 2005cs)},
-     year = 2006,
-    month = apr,
-   volume = 641,
-    pages = {1060-1070},
-      doi = {10.1086/499916},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...641.1060L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...665..608M,
-   author = {{Meikle}, W.~P.~S. and {Mattila}, S. and {Pastorello}, A. and 
-	{Gerardy}, C.~L. and {Kotak}, R. and {Sollerman}, J. and {Van Dyk}, S.~D. and 
-	{Farrah}, D. and {Filippenko}, A.~V. and {H{\"o}flich}, P. and 
-	{Lundqvist}, P. and {Pozzo}, M. and {Wheeler}, J.~C.},
-    title = "{A Spitzer Space Telescope Study of SN 2003gd: Still No Direct Evidence that Core-Collapse Supernovae are Major Dust Factories}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0705.1439},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd)},
-     year = 2007,
-    month = aug,
-   volume = 665,
-    pages = {608-617},
-      doi = {10.1086/519733},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...665..608M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1995AJ....109.2121R,
-   author = {{Richmond}, M.~W. and {Treffers}, R.~R. and {Filippenko}, A.~V. and 
-	{van Dyk}, S.~D. and {Paik}, Y. and {Peng}, C. and {Marschall}, L.~A. and 
-	{Laaksonen}, B.~D. and {Macintosh}, B. and {McLean}, I.~S.},
-    title = "{UBVRI Photometry of the Type IA SN 1994D in NGC 4526}",
-  journal = {\aj},
- keywords = {SUPERNOVAE: INDIVIDUAL: SN 1994D},
-     year = 1995,
-    month = may,
-   volume = 109,
-    pages = {2121},
-      doi = {10.1086/117437},
-   adsurl = {http://adsabs.harvard.edu/abs/1995AJ....109.2121R},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ApJ...704..306K,
-   author = {{Kotak}, R. and {Meikle}, W.~P.~S. and {Farrah}, D. and {Gerardy}, C.~L. and 
-	{Foley}, R.~J. and {Van Dyk}, S.~D. and {Fransson}, C. and {Lundqvist}, P. and 
-	{Sollerman}, J. and {Fesen}, R. and {Filippenko}, A.~V. and 
-	{Mattila}, S. and {Silverman}, J.~M. and {Andersen}, A.~C. and 
-	{H{\"o}flich}, P.~A. and {Pozzo}, M. and {Wheeler}, J.~C.},
-    title = "{Dust and The Type II-Plateau Supernova 2004et}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0904.3737},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, dust, extinction, supernovae: general, supernovae: individual: SN 2004et},
-     year = 2009,
-    month = oct,
-   volume = 704,
-    pages = {306-323},
-      doi = {10.1088/0004-637X/704/1/306},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...704..306K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996AJ....111.2017V,
-   author = {{van Dyk}, S.~D. and {Hamuy}, M. and {Filippenko}, A.~V.},
-    title = "{Supernovae and Massive Star Formation Regions}",
-  journal = {\aj},
- keywords = {GALAXY: EVOLUTION, SUPERNOVAE: GENERAL, HII REGIONS, STARS: FORMATION},
-     year = 1996,
-    month = may,
-   volume = 111,
-    pages = {2017},
-      doi = {10.1086/117937},
-   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.2017V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115.1289V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{On the Progenitor of the Type II-Plateau Supernova 2003gd in M74}",
-  journal = {\pasp},
-   eprint = {astro-ph/0307226},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd), supernovae: individual (1999em), Stars: Evolution, Stars: Variables: Other, galaxies: individual (M74), Galaxies: Individual: NGC Number: NGC 628},
-     year = 2003,
-    month = nov,
-   volume = 115,
-    pages = {1289-1295},
-      doi = {10.1086/378308},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115.1289V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJ...572..350F,
-   author = {{Fransson}, C. and {Chevalier}, R.~A. and {Filippenko}, A.~V. and 
-	{Leibundgut}, B. and {Barth}, A.~J. and {Fesen}, R.~A. and {Kirshner}, R.~P. and 
-	{Leonard}, D.~C. and {Li}, W. and {Lundqvist}, P. and {Sollerman}, J. and 
-	{Van Dyk}, S.~D.},
-    title = "{Optical and Ultraviolet Spectroscopy of SN 1995N: Evidence for Strong Circumstellar Interaction}",
-  journal = {\apj},
-   eprint = {astro-ph/0108149},
- keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: Individual: Alphanumeric: SN 1995N},
-     year = 2002,
-    month = jun,
-   volume = 572,
-    pages = {350-370},
-      doi = {10.1086/340295},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJ...572..350F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...661.1013L,
-   author = {{Li}, W. and {Wang}, X. and {Van Dyk}, S.~D. and {Cuillandre}, J.-C. and 
-	{Foley}, R.~J. and {Filippenko}, A.~V.},
-    title = "{On the Progenitors of Two Type II-P Supernovae in the Virgo Cluster}",
-  journal = {\apj},
-   eprint = {astro-ph/0701049},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2006my), supernovae: individual (SN 2006ov), Stars: Evolution},
-     year = 2007,
-    month = jun,
-   volume = 661,
-    pages = {1013-1024},
-      doi = {10.1086/516747},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...661.1013L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005PASP..117..121L,
-   author = {{Li}, W. and {Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Cuillandre}, J.-C.
-	},
-    title = "{On the Progenitor of the Type II Supernova 2004et in NGC 6946}",
-  journal = {\pasp},
-   eprint = {astro-ph/0412487},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2004et), Stars: Evolution, Galaxies: Individual: NGC Number: NGC 6946},
-     year = 2005,
-    month = feb,
-   volume = 117,
-    pages = {121-131},
-      doi = {10.1086/428278},
-   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..121L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012MNRAS.425.1789S,
-   author = {{Silverman}, J.~M. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
-	{Ganeshalingam}, M. and {Barth}, A.~J. and {Chornock}, R. and 
-	{Griffith}, C.~V. and {Kong}, J.~J. and {Lee}, N. and {Leonard}, D.~C. and 
-	{Matheson}, T. and {Miller}, E.~G. and {Steele}, T.~N. and {Barris}, B.~J. and 
-	{Bloom}, J.~S. and {Cobb}, B.~E. and {Coil}, A.~L. and {Desroches}, L.-B. and 
-	{Gates}, E.~L. and {Ho}, L.~C. and {Jha}, S.~W. and {Kandrashoff}, M.~T. and 
-	{Li}, W. and {Mandel}, K.~S. and {Modjaz}, M. and {Moore}, M.~R. and 
-	{Mostardi}, R.~E. and {Papenkova}, M.~S. and {Park}, S. and 
-	{Perley}, D.~A. and {Poznanski}, D. and {Reuter}, C.~A. and 
-	{Scala}, J. and {Serduke}, F.~J.~D. and {Shields}, J.~C. and 
-	{Swift}, B.~J. and {Tonry}, J.~L. and {Van Dyk}, S.~D. and {Wang}, X. and 
-	{Wong}, D.~S.},
-    title = "{Berkeley Supernova Ia Program - I. Observations, data reduction and spectroscopic sample of 582 low-redshift Type Ia supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1202.2128},
- primaryClass = "astro-ph.CO",
- keywords = {surveys, supernovae: general, cosmology: observations, distance scale },
-     year = 2012,
-    month = sep,
-   volume = 425,
-    pages = {1789-1818},
-      doi = {10.1111/j.1365-2966.2012.21270.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.425.1789S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115....1V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images}",
-  journal = {\pasp},
-   eprint = {astro-ph/0210347},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 1998Y), supernovae: individual (SN 1999an), supernovae: individual (SN 1999br), supernovae: individual (SN 1999bu), supernovae: individual (SN 1999bx), supernovae: individual (SN 1999dn), supernovae: individual (SN 1999ec), supernovae: individual (SN 1999ev), supernovae: individual (SN 2000C), supernovae: individual (SN 2000ds), supernovae: individual (SN 2000ew), supernovae: individual (SN 2001B), supernovae: individual (SN 2001ai), supernovae: individual (SN 2001ci), supernovae: individual (SN 2001du), supernovae: individual (SN 2001is), Stars: Evolution, Stars: Variables: Other, galaxies: individual (IC 755), Galaxies: Individual: NGC Number: NGC 1961, Galaxies: Individual: NGC Number: NGC 1365, Galaxies: Individual: NGC Number: NGC 2207, galaxies: individual (NGC 2415), galaxies: individual (NGC 2768), Galaxies: Individual: NGC Number: NGC 3079, galaxies: individual (NGC 3786), Galaxies: Individual: NGC Number: NGC 3810, galaxies: individual (NGC 4274), galaxies: individual (NGC 4900), galaxies: individual (NGC 5278), galaxies: individual (NGC 6745), Galaxies: Individual: NGC Number: NGC 7714, galaxies: individual (IC 391)},
-     year = 2003,
-    month = jan,
-   volume = 115,
-    pages = {1-20},
-      doi = {10.1086/345748},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115....1V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2007ApJ...656..372G,
-   author = {{Gal-Yam}, A. and {Leonard}, D.~C. and {Fox}, D.~B. and {Cenko}, S.~B. and 
-	{Soderberg}, A.~M. and {Moon}, D.-S. and {Sand}, D.~J. and {Caltech Core Collapse Program} and 
-	{Li}, W. and {Filippenko}, A.~V. and {Aldering}, G. and {Copin}, Y.
-	},
-    title = "{On the Progenitor of SN 2005gl and the Nature of Type IIn Supernovae}",
-  journal = {\apj},
-   eprint = {astro-ph/0608029},
- keywords = {Instrumentation: Adaptive Optics, Stars: Supernovae: General, supernovae: individual (SN 2005gl)},
-     year = 2007,
-    month = feb,
-   volume = 656,
-    pages = {372-381},
-      doi = {10.1086/510523},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...656..372G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1999AJ....118.2331V,
-   author = {{Van Dyk}, S.~D. and {Peng}, C.~Y. and {Barth}, A.~J. and {Filippenko}, A.~V.
-	},
-    title = "{The Environments of Supernovae in Post-Refurbishment Hubble Space Telescope Images}",
-  journal = {\aj},
-   eprint = {astro-ph/9907252},
- keywords = {STARS: COLOR-MAGNITUDE DIAGRAMS, GALAXIES: GENERAL, GALAXIES: STAR CLUSTERS, GALAXIES: STELLAR CONTENT, STARS: SUPERNOVAE: GENERAL},
-     year = 1999,
-    month = nov,
-   volume = 118,
-    pages = {2331-2349},
-      doi = {10.1086/301068},
-   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....118.2331V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...757...69U,
-   author = {{Ugliano}, M. and {Janka}, H.-T. and {Marek}, A. and {Arcones}, A.
-	},
-    title = "{Progenitor-explosion Connection and Remnant Birth Masses for Neutrino-driven Supernovae of Iron-core Progenitors}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1205.3657},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: massive, stars: neutron, supernovae: general},
-     year = 2012,
-    month = sep,
-   volume = 757,
-      eid = {69},
-    pages = {69},
-      doi = {10.1088/0004-637X/757/1/69},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...757...69U},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...730...70O,
-   author = {{O'Connor}, E. and {Ott}, C.~D.},
-    title = "{Black Hole Formation in Failing Core-Collapse Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1010.5550},
- primaryClass = "astro-ph.HE",
- keywords = {black hole physics, equation of state, hydrodynamics, neutrinos, stars: evolution, stars: mass-loss, stars: neutron, supernovae: general},
-     year = 2011,
-    month = apr,
-   volume = 730,
-      eid = {70},
-    pages = {70},
-      doi = {10.1088/0004-637X/730/2/70},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...730...70O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...747...23S,
-   author = {{Szczygie{\l}}, D.~M. and {Gerke}, J.~R. and {Kochanek}, C.~S. and 
-	{Stanek}, K.~Z.},
-    title = "{Discovery of Variability of the Progenitor of SN 2011dh in M 51 Using the Large Binocular Telescope}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1110.2783},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, supernovae: individual: SN 2011dh},
-     year = 2012,
-    month = mar,
-   volume = 747,
-      eid = {23},
-    pages = {23},
-      doi = {10.1088/0004-637X/747/1/23},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...747...23S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...741L..28V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
-	{Horesh}, A. and {Ofek}, E.~O. and {Kraus}, A.~L. and {Silverman}, J.~M. and 
-	{Arcavi}, I. and {Filippenko}, A.~V. and {Gal-Yam}, A. and {Quimby}, R.~M. and 
-	{Kulkarni}, S.~R. and {Yaron}, O. and {Polishook}, D.},
-    title = "{The Progenitor of Supernova 2011dh/PTF11eon in Messier 51}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1106.2897},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: individual: NGC 5194, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh},
-     year = 2011,
-    month = nov,
-   volume = 741,
-      eid = {L28},
-    pages = {L28},
-      doi = {10.1088/2041-8205/741/2/L28},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741L..28V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014arXiv1411.1761G,
-   author = {{Gerke}, J.~R. and {Kochanek}, C.~S. and {Stanek}, K.~Z.},
-    title = "{The Search for Failed Supernovae with The Large Binocular Telescope: First Candidates}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1411.1761},
- primaryClass = "astro-ph.SR",
- keywords = {Astrophysics - Solar and Stellar Astrophysics},
-     year = 2014,
-    month = nov,
-   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1411.1761G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2007ApJ...661..995G,
-   author = {{Gerardy}, C.~L. and {Meikle}, W.~P.~S. and {Kotak}, R. and 
-	{H{\"o}flich}, P. and {Farrah}, D. and {Filippenko}, A.~V. and 
-	{Foley}, R.~J. and {Lundqvist}, P. and {Mattila}, S. and {Pozzo}, M. and 
-	{Sollerman}, J. and {Van Dyk}, S.~D. and {Wheeler}, J.~C.},
-    title = "{Signatures of Delayed Detonation, Asymmetry, and Electron Capture in the Mid-Infrared Spectra of Supernovae 2003hv and 2005df}",
-  journal = {\apj},
-   eprint = {astro-ph/0702117},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003hv), supernovae: individual (SN 2005df)},
-     year = 2007,
-    month = jun,
-   volume = 661,
-    pages = {995-1012},
-      doi = {10.1086/516728},
-   adsurl = {http://adsabs.harvard.edu/abs/2007ApJ...661..995G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.446.2689E,
-   author = {{Eldridge}, J.~J. and {Fraser}, M. and {Maund}, J.~R. and {Smartt}, S.~J.
-	},
-    title = "{Possible binary progenitors for the Type Ib supernova iPTF13bvn}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1408.4142},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, binaries: general, supernovae: general, supernovae: individual: iPTF13bvn},
-     year = 2015,
-    month = jan,
-   volume = 446,
-    pages = {2689-2695},
-      doi = {10.1093/mnras/stu2197},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.446.2689E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-
-@ARTICLE{2013ApJ...775L...7C,
-   author = {{Cao}, Y. and {Kasliwal}, M.~M. and {Arcavi}, I. and {Horesh}, A. and 
-	{Hancock}, P. and {Valenti}, S. and {Cenko}, S.~B. and {Kulkarni}, S.~R. and 
-	{Gal-Yam}, A. and {Gorbikov}, E. and {Ofek}, E.~O. and {Sand}, D. and 
-	{Yaron}, O. and {Graham}, M. and {Silverman}, J.~M. and {Wheeler}, J.~C. and 
-	{Marion}, G.~H. and {Walker}, E.~S. and {Mazzali}, P. and {Howell}, D.~A. and 
-	{Li}, K.~L. and {Kong}, A.~K.~H. and {Bloom}, J.~S. and {Nugent}, P.~E. and 
-	{Surace}, J. and {Masci}, F. and {Carpenter}, J. and {Degenaar}, N. and 
-	{Gelino}, C.~R.},
-    title = "{Discovery, Progenitor and Early Evolution of a Stripped Envelope Supernova iPTF13bvn}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1307.1470},
- primaryClass = "astro-ph.SR",
- keywords = {instrumentation: adaptive optics, shock waves, stars: Wolf-Rayet, supernovae: individual: iPTF13bvn, surveys},
-     year = 2013,
-    month = sep,
-   volume = 775,
-      eid = {L7},
-    pages = {L7},
-      doi = {10.1088/2041-8205/775/1/L7},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...775L...7C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014AJ....148...68B,
-   author = {{Bersten}, M.~C. and {Benvenuto}, O.~G. and {Folatelli}, G. and 
-	{Nomoto}, K. and {Kuncarayakti}, H. and {Srivastav}, S. and 
-	{Anupama}, G.~C. and {Quimby}, R. and {Sahu}, D.~K.},
-    title = "{iPTF13bvn: The First Evidence of a Binary Progenitor for a Type Ib Supernova}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1403.7288},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supernovae: general, supernovae: individual: iPTF13bvn},
-     year = 2014,
-    month = oct,
-   volume = 148,
-      eid = {68},
-    pages = {68},
-      doi = {10.1088/0004-6256/148/4/68},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....148...68B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014A&A...565A.114F,
-   author = {{Fremling}, C. and {Sollerman}, J. and {Taddia}, F. and {Ergon}, M. and 
-	{Valenti}, S. and {Arcavi}, I. and {Ben-Ami}, S. and {Cao}, Y. and 
-	{Cenko}, S.~B. and {Filippenko}, A.~V. and {Gal-Yam}, A. and 
-	{Howell}, D.~A.},
-    title = "{The rise and fall of the Type Ib supernova iPTF13bvn. Not a massive Wolf-Rayet star}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1403.6708},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: iPTF13bvn},
-     year = 2014,
-    month = may,
-   volume = 565,
-      eid = {A114},
-    pages = {A114},
-      doi = {10.1051/0004-6361/201423884},
-   adsurl = {http://adsabs.harvard.edu/abs/2014A&A...565A.114F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2013A&A...550L...7G,
-   author = {{Groh}, J.~H. and {Meynet}, G. and {Ekstr{\"o}m}, S.},
-    title = "{Massive star evolution: luminous blue variables as unexpected supernova progenitors}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1301.1519},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supernovae: general, stars: massive, stars: winds, outflows, stars: fundamental parameters, stars: rotation},
-     year = 2013,
-    month = feb,
-   volume = 550,
-      eid = {L7},
-    pages = {L7},
-      doi = {10.1051/0004-6361/201220741},
-   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...550L...7G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015MNRAS.449.1876S,
-   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Cenko}, S.~B. and {Kasliwal}, M.~M. and 
-	{Silverman}, J.~M. and {Filippenko}, A.~V. and {Gal-Yam}, A. and 
-	{Clubb}, K.~I. and {Graham}, M.~L. and {Leonard}, D.~C. and 
-	{Horst}, J.~C. and {Williams}, G.~G. and {Andrews}, J.~E. and 
-	{Kulkarni}, S.~R. and {Nugent}, P. and {Sullivan}, M. and {Maguire}, K. and 
-	{Xu}, D. and {Ben-Ami}, S.},
-    title = "{PTF11iqb: cool supergiant mass-loss that bridges the gap between Type IIn and normal supernovae}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1501.02820},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: PTF11iqb, stars: winds, outflows},
-     year = 2015,
-    month = may,
-   volume = 449,
-    pages = {1876-1896},
-      doi = {10.1093/mnras/stv354},
-   adsurl = {http://adsabs.harvard.edu/abs/2015MNRAS.449.1876S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2015A&A...573A..12J,
-   author = {{Jerkstrand}, A. and {Ergon}, M. and {Smartt}, S.~J. and {Fransson}, C. and 
-	{Sollerman}, J. and {Taubenberger}, S. and {Bersten}, M. and 
-	{Spyromilio}, J.},
-    title = "{Late-time spectral line formation in Type IIb supernovae, with application to SN 1993J, SN 2008ax, and SN 2011dh}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1408.0732},
- primaryClass = "astro-ph.HE",
- keywords = {line: identification, supernovae: individual: SN 2011dh, supernovae: individual: SN 2008ax, radiative transfer, line: formation, supernovae: individual: SN 1993J},
-     year = 2015,
-    month = jan,
-   volume = 573,
-      eid = {A12},
-    pages = {A12},
-      doi = {10.1051/0004-6361/201423983},
-   adsurl = {http://adsabs.harvard.edu/abs/2015A&A...573A..12J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014arXiv1408.1404S,
-   author = {{Shivvers}, I. and {Mauerhan}, J.~C. and {Leonard}, D.~C. and 
-	{Filippenko}, A.~V. and {Fox}, O.~D.},
-    title = "{Early Emission from the Type IIn Supernova 1998S at High Resolution}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1408.1404},
- primaryClass = "astro-ph.HE",
- keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics},
-     year = 2014,
-    month = aug,
-   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1408.1404S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013A&A...558A.131G,
-   author = {{Groh}, J.~H. and {Meynet}, G. and {Georgy}, C. and {Ekstr{\"o}m}, S.
-	},
-    title = "{Fundamental properties of core-collapse supernova and GRB progenitors: predicting the look of massive stars before death}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1308.4681},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, supernovae: general, stars: massive, stars: winds, outflows, gamma-ray burst: general, stars: rotation},
-     year = 2013,
-    month = oct,
-   volume = 558,
-      eid = {A131},
-    pages = {A131},
-      doi = {10.1051/0004-6361/201321906},
-   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...558A.131G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013A&A...558L...1G,
-   author = {{Groh}, J.~H. and {Georgy}, C. and {Ekstr{\"o}m}, S.},
-    title = "{Progenitors of supernova Ibc: a single Wolf-Rayet star as the possible progenitor of the SN Ib iPTF13bvn}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1307.8434},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: Ib iPTF13bvn, stars: evolution, stars: Wolf-Rayet, stars: winds, outflows, stars: massive},
-     year = 2013,
-    month = oct,
-   volume = 558,
-      eid = {L1},
-    pages = {L1},
-      doi = {10.1051/0004-6361/201322369},
-   adsurl = {http://adsabs.harvard.edu/abs/2013A&A...558L...1G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.445.1932S,
-   author = {{Srivastav}, S. and {Anupama}, G.~C. and {Sahu}, D.~K.},
-    title = "{Optical observations of the fast declining Type Ib supernova iPTF13bvn}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1409.2739},
- primaryClass = "astro-ph.SR",
- keywords = {supernovae: general, supernovae: individual: iPTF13bvn, galaxies: individual: NGC 5806},
-     year = 2014,
-    month = dec,
-   volume = 445,
-    pages = {1932-1941},
-      doi = {10.1093/mnras/stu1878},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445.1932S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...741...97D,
-   author = {{Drout}, M.~R. and {Soderberg}, A.~M. and {Gal-Yam}, A. and 
-	{Cenko}, S.~B. and {Fox}, D.~B. and {Leonard}, D.~C. and {Sand}, D.~J. and 
-	{Moon}, D.-S. and {Arcavi}, I. and {Green}, Y.},
-    title = "{The First Systematic Study of Type Ibc Supernova Multi-band Light Curves}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1011.4959},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: general, gamma-ray burst: general},
-     year = 2011,
-    month = nov,
-   volume = 741,
-      eid = {97},
-    pages = {97},
-      doi = {10.1088/0004-637X/741/2/97},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...741...97D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2008MNRAS.383.1485V,
-   author = {{Valenti}, S. and {Benetti}, S. and {Cappellaro}, E. and {Patat}, F. and 
-	{Mazzali}, P. and {Turatto}, M. and {Hurley}, K. and {Maeda}, K. and 
-	{Gal-Yam}, A. and {Foley}, R.~J. and {Filippenko}, A.~V. and 
-	{Pastorello}, A. and {Challis}, P. and {Frontera}, F. and {Harutyunyan}, A. and 
-	{Iye}, M. and {Kawabata}, K. and {Kirshner}, R.~P. and {Li}, W. and 
-	{Lipkin}, Y.~M. and {Matheson}, T. and {Nomoto}, K. and {Ofek}, E.~O. and 
-	{Ohyama}, Y. and {Pian}, E. and {Poznanski}, D. and {Salvo}, M. and 
-	{Sauer}, D.~N. and {Schmidt}, B.~P. and {Soderberg}, A. and 
-	{Zampieri}, L.},
-    title = "{The broad-lined Type Ic supernova 2003jd}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {0710.5173},
- keywords = {supernovae: general , supernovae: individual: 2003jd , supernovae: individual: 1996aq},
-     year = 2008,
-    month = feb,
-   volume = 383,
-    pages = {1485-1500},
-      doi = {10.1111/j.1365-2966.2007.12647.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2008MNRAS.383.1485V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012Sci...337..444S,
-   author = {{Sana}, H. and {de Mink}, S.~E. and {de Koter}, A. and {Langer}, N. and 
-	{Evans}, C.~J. and {Gieles}, M. and {Gosset}, E. and {Izzard}, R.~G. and 
-	{Le Bouquin}, J.-B. and {Schneider}, F.~R.~N.},
-    title = "{Binary Interaction Dominates the Evolution of Massive Stars}",
-  journal = {Science},
-archivePrefix = "arXiv",
-   eprint = {1207.6397},
- primaryClass = "astro-ph.SR",
-     year = 2012,
-    month = jul,
-   volume = 337,
-    pages = {444-},
-      doi = {10.1126/science.1223344},
-   adsurl = {http://adsabs.harvard.edu/abs/2012Sci...337..444S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011MNRAS.412.1522S,
-   author = {{Smith}, N. and {Li}, W. and {Filippenko}, A.~V. and {Chornock}, R.
-	},
-    title = "{Observed fractions of core-collapse supernova types and initial masses of their single and binary progenitor stars}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1006.3899},
- primaryClass = "astro-ph.HE",
- keywords = {binaries: general, stars: evolution, stars: mass-loss, supernovae: general},
-     year = 2011,
-    month = apr,
-   volume = 412,
-    pages = {1522-1538},
-      doi = {10.1111/j.1365-2966.2011.17229.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2011MNRAS.412.1522S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...738..154H,
-   author = {{Horiuchi}, S. and {Beacom}, J.~F. and {Kochanek}, C.~S. and 
-	{Prieto}, J.~L. and {Stanek}, K.~Z. and {Thompson}, T.~A.},
-    title = "{The Cosmic Core-collapse Supernova Rate Does Not Match the Massive-star Formation Rate}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1102.1977},
- primaryClass = "astro-ph.CO",
- keywords = {galaxies: evolution, galaxies: starburst, stars: formation, supernovae: general},
-     year = 2011,
-    month = sep,
-   volume = 738,
-      eid = {154},
-    pages = {154},
-      doi = {10.1088/0004-637X/738/2/154},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...738..154H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014MNRAS.445L..99H,
-   author = {{Horiuchi}, S. and {Nakamura}, K. and {Takiwaki}, T. and {Kotake}, K. and 
-	{Tanaka}, M.},
-    title = "{The red supergiant and supernova rate problems: implications for core-collapse supernova physics}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1409.0006},
- primaryClass = "astro-ph.HE",
- keywords = {stars: interiors, stars: massive, supernovae: general},
-     year = 2014,
-    month = nov,
-   volume = 445,
-    pages = {L99-L103},
-      doi = {10.1093/mnrasl/slu146},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.445L..99H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...732...63S,
-   author = {{Smith}, N. and {Li}, W. and {Miller}, A.~A. and {Silverman}, J.~M. and 
-	{Filippenko}, A.~V. and {Cuillandre}, J.-C. and {Cooper}, M.~C. and 
-	{Matheson}, T. and {Van Dyk}, S.~D.},
-    title = "{A Massive Progenitor of the Luminous Type IIn Supernova 2010jl}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1011.4150},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, stars: mass-loss, stars: winds, outflows, supernovae: general},
-     year = 2011,
-    month = may,
-   volume = 732,
-      eid = {63},
-    pages = {63},
-      doi = {10.1088/0004-637X/732/2/63},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732...63S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...791..105W,
-   author = {{Williams}, B.~F. and {Peterson}, S. and {Murphy}, J. and {Gilbert}, K. and 
-	{Dalcanton}, J.~J. and {Dolphin}, A.~E. and {Jennings}, Z.~G.
-	},
-    title = "{Constraints for the Progenitor Masses of 17 Historic Core-collapse Supernovae}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1405.6626},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: massive, supernovae: general},
-     year = 2014,
-    month = aug,
-   volume = 791,
-      eid = {105},
-    pages = {105},
-      doi = {10.1088/0004-637X/791/2/105},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...791..105W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...795..170J,
-   author = {{Jennings}, Z.~G. and {Williams}, B.~F. and {Murphy}, J.~W. and 
-	{Dalcanton}, J.~J. and {Gilbert}, K.~M. and {Dolphin}, A.~E. and 
-	{Weisz}, D.~R. and {Fouesneau}, M.},
-    title = "{The Supernova Progenitor Mass Distributions of M31 and M33: Further Evidence for an Upper Mass Limit}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1410.0018},
- keywords = {galaxies: individual: M31 M33, supernovae: general},
-     year = 2014,
-    month = nov,
-   volume = 795,
-      eid = {170},
-    pages = {170},
-      doi = {10.1088/0004-637X/795/2/170},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...795..170J},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014arXiv1406.3667L,
-   author = {{Lyman}, J. and {Bersier}, D. and {James}, P. and {Mazzali}, P. and 
-	{Eldridge}, J. and {Fraser}, M. and {Pian}, E.},
-    title = "{Bolometric light curves and explosion parameters of 38 stripped-envelope core-collapse supernovae}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1406.3667},
- primaryClass = "astro-ph.SR",
- keywords = {Astrophysics - Solar and Stellar Astrophysics, Astrophysics - High Energy Astrophysical Phenomena},
-     year = 2014,
-    month = jun,
-   adsurl = {http://adsabs.harvard.edu/abs/2014arXiv1406.3667L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2002PASP..114..403L,
-   author = {{Li}, W. and {Filippenko}, A.~V. and {Van Dyk}, S.~D. and {Hu}, J. and 
-	{Qiu}, Y. and {Modjaz}, M. and {Leonard}, D.~C.},
-    title = "{A Hubble Space Telescope Snapshot Survey of Nearby Supernovae}",
-  journal = {\pasp},
-   eprint = {astro-ph/0201228},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 1995N), Stars: Supernovae: Individual: Alphanumeric: SN 1996cb, supernovae: individual (SN 1997bs), supernovae: individual (SN 1997ef), Stars: Supernovae: Individual: Alphanumeric: SN 1998S, supernovae: individual (SN 1999bw), supernovae: individual (SN 1999eb), supernovae: individual (SN 1999el), supernovae: individual (SN 1999gi), supernovae: individual (SN 1999gq), supernovae: individual (SN 2000P), supernovae: individual (SN 2000cx)},
-     year = 2002,
-    month = apr,
-   volume = 114,
-    pages = {403-415},
-      doi = {10.1086/342493},
-   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..403L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006A&A...460L...5K,
-   author = {{Kotak}, R. and {Vink}, J.~S.},
-    title = "{Luminous blue variables as the progenitors of supernovae with quasi-periodic radio modulations}",
-  journal = {\aap},
-   eprint = {astro-ph/0610095},
- keywords = {stars: mass-loss, stars: winds, outflows, stars: supernovae: individual: SN 2001ig, stars: supernovae: individual: SN 2003bg, stars: supernovae: individual: SN 1979C, stars: supernovae: individual: SN 1998bw},
-     year = 2006,
-    month = dec,
-   volume = 460,
-    pages = {L5-L8},
-      doi = {10.1051/0004-6361:20065800},
-   adsurl = {http://adsabs.harvard.edu/abs/2006A&A...460L...5K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2006ApJ...651L.117K,
-   author = {{Kotak}, R. and {Meikle}, P. and {Pozzo}, M. and {van Dyk}, S.~D. and 
-	{Farrah}, D. and {Fesen}, R. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
-	{Fransson}, C. and {Gerardy}, C.~L. and {H{\"o}flich}, P.~A. and 
-	{Lundqvist}, P. and {Mattila}, S. and {Sollerman}, J. and {Wheeler}, J.~C.
-	},
-    title = "{Spitzer Measurements of Atomic and Molecular Abundances in the Type IIP SN 2005af}",
-  journal = {\apjl},
-   eprint = {astro-ph/0609706},
- keywords = {Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1987A, Stars: Supernovae: Individual: Alphanumeric: SN 2004dj, supernovae: individual (SN 2005af)},
-     year = 2006,
-    month = nov,
-   volume = 651,
-    pages = {L117-L120},
-      doi = {10.1086/509655},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...651L.117K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002PASP..114.1322V,
-   author = {{Van Dyk}, S.~D. and {Garnavich}, P.~M. and {Filippenko}, A.~V. and 
-	{H{\"o}flich}, P. and {Kirshner}, R.~P. and {Kurucz}, R.~L. and 
-	{Challis}, P.},
-    title = "{The Progenitor of Supernova 1993J Revisited}",
-  journal = {\pasp},
-   eprint = {astro-ph/0208382},
- keywords = {Galaxies: Individual: Messier Number: M81, Galaxies: Individual: NGC Number: NGC 3031, Stars: Evolution, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1993J},
-     year = 2002,
-    month = dec,
-   volume = 114,
-    pages = {1322-1332},
-      doi = {10.1086/344382},
-   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114.1322V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999AJ....117..725F,
-   author = {{Fesen}, R.~A. and {Gerardy}, C.~L. and {Filippenko}, A.~V. and 
-	{Matheson}, T. and {Chevalier}, R.~A. and {Kirshner}, R.~P. and 
-	{Schmidt}, B.~P. and {Challis}, P. and {Fransson}, C. and {Leibundgut}, B. and 
-	{van Dyk}, S.~D.},
-    title = "{Late-Time Optical and Ultraviolet Spectra of SN 1979C and SN 1980K}",
-  journal = {\aj},
-   eprint = {astro-ph/9810407},
- keywords = {GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 4321, GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 6946, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1979C, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1980K},
-     year = 1999,
-    month = feb,
-   volume = 117,
-    pages = {725-735},
-      doi = {10.1086/300751},
-   adsurl = {http://adsabs.harvard.edu/abs/1999AJ....117..725F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...756..131V,
-   author = {{Van Dyk}, S.~D. and {Cenko}, S.~B. and {Poznanski}, D. and 
-	{Arcavi}, I. and {Gal-Yam}, A. and {Filippenko}, A.~V. and {Silverio}, K. and 
-	{Stockton}, A. and {Cuillandre}, J.-C. and {Marcy}, G.~W. and 
-	{Howard}, A.~W. and {Isaacson}, H.},
-    title = "{The Red Supergiant Progenitor of Supernova 2012aw (PTF12bvh) in Messier 95}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1207.2811},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: Messier 95 NGC 3351, stars: evolution, stars: fundamental parameters, stars: late-type, supernovae: general, supernovae: individual: SN 2012aw},
-     year = 2012,
-    month = sep,
-   volume = 756,
-      eid = {131},
-    pages = {131},
-      doi = {10.1088/0004-637X/756/2/131},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...756..131V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002PASP..114..700V,
-   author = {{Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Li}, W.},
-    title = "{Possible Recovery of SN 1961V in Hubble Space Telescope Archival Images}",
-  journal = {\pasp},
-   eprint = {astro-ph/0203508},
- keywords = {Galaxies: Individual: NGC Number: NGC 1058, Galaxies: Stellar Content, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, Stars: Supernovae: Individual: Alphanumeric: SN 1961V},
-     year = 2002,
-    month = jul,
-   volume = 114,
-    pages = {700-707},
-      doi = {10.1086/341695},
-   adsurl = {http://adsabs.harvard.edu/abs/2002PASP..114..700V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...714L.280F,
-   author = {{Fraser}, M. and {Tak{\'a}ts}, K. and {Pastorello}, A. and {Smartt}, S.~J. and 
-	{Mattila}, S. and {Botticella}, M.-T. and {Valenti}, S. and 
-	{Ergon}, M. and {Sollerman}, J. and {Arcavi}, I. and {Benetti}, S. and 
-	{Bufano}, F. and {Crockett}, R.~M. and {Danziger}, I.~J. and 
-	{Gal-Yam}, A. and {Maund}, J.~R. and {Taubenberger}, S. and 
-	{Turatto}, M.},
-    title = "{On the Progenitor and Early Evolution of the Type II Supernova 2009kr}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0912.2071},
- keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
-     year = 2010,
-    month = may,
-   volume = 714,
-    pages = {L280-L284},
-      doi = {10.1088/2041-8205/714/2/L280},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.280F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2010ApJ...714L.254E,
-   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Miller}, A.~A. and 
-	{Silverman}, J.~M. and {Ganeshalingam}, M. and {Boden}, A.~F. and 
-	{Kasliwal}, M.~M. and {Vink{\'o}}, J. and {Cuillandre}, J.-C. and 
-	{Filippenko}, A.~V. and {Steele}, T.~N. and {Bloom}, J.~S. and 
-	{Griffith}, C.~V. and {Kleiser}, I.~K.~W. and {Foley}, R.~J.
-	},
-    title = "{The Massive Progenitor of the Type II-linear Supernova 2009kr}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0912.2880},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 1832, stars: evolution, supernovae: general, supernovae: individual: SN 2009kr},
-     year = 2010,
-    month = may,
-   volume = 714,
-    pages = {L254-L259},
-      doi = {10.1088/2041-8205/714/2/L254},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...714L.254E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...649..332M,
-   author = {{Meikle}, W.~P.~S. and {Mattila}, S. and {Gerardy}, C.~L. and 
-	{Kotak}, R. and {Pozzo}, M. and {van Dyk}, S.~D. and {Farrah}, D. and 
-	{Fesen}, R.~A. and {Filippenko}, A.~V. and {Fransson}, C. and 
-	{Lundqvist}, P. and {Sollerman}, J. and {Wheeler}, J.~C.},
-    title = "{A Spitzer Space Telescope Study of SN 2002hh: An Infrared Echo from a Type IIP Supernova}",
-  journal = {\apj},
-   eprint = {astro-ph/0605584},
- keywords = {Stars: Supernovae: General, supernovae: individual (NGC 6946), Stars: Supernovae: Individual: Alphanumeric: SN 2002hh},
-     year = 2006,
-    month = sep,
-   volume = 649,
-    pages = {332-344},
-      doi = {10.1086/506143},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...649..332M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2009ApJ...706.1174E,
-   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Morrell}, N. and 
-	{Gonzalez}, S. and {Hamuy}, M. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
-	{Foley}, R.~J. and {Smith}, N.},
-    title = "{On the Progenitor of the Type II-Plateau SN 2008cn in NGC 4603}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {0910.2275},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 4603, stars: evolution, supernovae: general, supernovae: individual: SN 2008cn},
-     year = 2009,
-    month = dec,
-   volume = 706,
-    pages = {1174-1183},
-      doi = {10.1088/0004-637X/706/2/1174},
-   adsurl = {http://adsabs.harvard.edu/abs/2009ApJ...706.1174E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1999PASP..111..313V,
-   author = {{van Dyk}, S.~D. and {Peng}, C.~Y. and {Barth}, A.~J. and {Filippenko}, A.~V. and 
-	{Chevalier}, R.~A. and {Fesen}, R.~A. and {Fransson}, C. and 
-	{Kirshner}, R.~P. and {Leibundgut}, B.},
-    title = "{Hubble Space Telescope WFPC2 Imaging of SN 1979C and Its Environment}",
-  journal = {\pasp},
-   eprint = {astro-ph/9810375},
- keywords = {GALAXIES: INDIVIDUAL: NGC NUMBER: NGC 4321, GALAXIES: INDIVIDUAL: MESSIER NUMBER: M100, GALAXIES: STELLAR CONTENT, STARS: EVOLUTION, STARS: SUPERNOVAE: INDIVIDUAL: ALPHANUMERIC: SN 1979C},
-     year = 1999,
-    month = mar,
-   volume = 111,
-    pages = {313-320},
-      doi = {10.1086/316331},
-   adsurl = {http://adsabs.harvard.edu/abs/1999PASP..111..313V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014AJ....147...37V,
-   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Fox}, O.~D. and {Cenko}, S.~B. and 
-	{Clubb}, K.~I. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
-	{Miller}, A.~A. and {Smith}, N. and {Kelly}, P.~L. and {Lee}, W.~H. and 
-	{Ben-Ami}, S. and {Gal-Yam}, A.},
-    title = "{The Type IIb Supernova 2013df and its Cool Supergiant Progenitor}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1312.3984},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 4414, stars: evolution, supernovae: general, supernovae: individual: SN 2013df},
-     year = 2014,
-    month = feb,
-   volume = 147,
-      eid = {37},
-    pages = {37},
-      doi = {10.1088/0004-6256/147/2/37},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...37V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2012AJ....143...19V,
-   author = {{Van Dyk}, S.~D. and {Davidge}, T.~J. and {Elias-Rosa}, N. and 
-	{Taubenberger}, S. and {Li}, W. and {Levesque}, E.~M. and {Howerton}, S. and 
-	{Pignata}, G. and {Morrell}, N. and {Hamuy}, M. and {Filippenko}, A.~V.
-	},
-    title = "{Supernova 2008bk and Its Red Supergiant Progenitor}",
-  journal = {\aj},
- keywords = {galaxies: individual: NGC 7793, stars: evolution, stars: fundamental parameters, stars: late-type, supernovae: general, supernovae: individual: SN 2008bk},
-     year = 2012,
-    month = jan,
-   volume = 143,
-      eid = {19},
-    pages = {19},
-      doi = {10.1088/0004-6256/143/1/19},
-   adsurl = {http://adsabs.harvard.edu/abs/2012AJ....143...19V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997PASP..109..461F,
-   author = {{Filippenko}, A.~V. and {Matheson}, T. and {Leonard}, D.~C. and 
-	{Barth}, A.~J. and {van Dyk}, S.~D.},
-    title = "{A Black Hole in the X-Ray Nova Ophiuchi 1997}",
-  journal = {\pasp},
- keywords = {STARS: INDIVIDUAL: OPHIUCHI 1977, NOVAE},
-     year = 1997,
-    month = apr,
-   volume = 109,
-    pages = {461-467},
-      doi = {10.1086/133902},
-   adsurl = {http://adsabs.harvard.edu/abs/1997PASP..109..461F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996AJ....111.2047B,
-   author = {{Barth}, A.~J. and {van Dyk}, S.~D. and {Filippenko}, A.~V. and 
-	{Leibundgut}, B. and {Richmond}, M.~W.},
-    title = "{The Environments of Supernovae in Archival Hubble Space Telescope Images}",
-  journal = {\aj},
- keywords = {SUPERNOVAE: GENERAL},
-     year = 1996,
-    month = may,
-   volume = 111,
-    pages = {2047},
-      doi = {10.1086/117940},
-   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.2047B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1997MNRAS.287..799I,
-   author = {{Ivezic}, Z. and {Elitzur}, M.},
-    title = "{Self-similarity and scaling behaviour of infrared emission from radiatively heated dust - I. Theory}",
-  journal = {\mnras},
-   eprint = {astro-ph/9612164},
- keywords = {RADIATIVE TRANSFER, STARS: FORMATION, STARS: LATE-TYPE, DUST, EXTINCTION, INFRARED: ISM: CONTINUUM, INFRARED: ISM: LINES AND BANDS},
-     year = 1997,
-    month = jun,
-   volume = 287,
-    pages = {799-811},
-   adsurl = {http://adsabs.harvard.edu/abs/1997MNRAS.287..799I},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2013MNRAS.433.1871B,
-   author = {{Bose}, S. and {Kumar}, B. and {Sutaria}, F. and {Kumar}, B. and 
-	{Roy}, R. and {Bhatt}, V.~K. and {Pandey}, S.~B. and {Chandola}, H.~C. and 
-	{Sagar}, R. and {Misra}, K. and {Chakraborti}, S.},
-    title = "{Supernova 2012aw - a high-energy clone of archetypal Type IIP SN 1999em}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1305.3152},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: general, supernovae: individual: SN 2012aw, supernovae: individual: SN 1999em, supernovae: individual: SN 1999gi, supernovae: individual: SN 2004et, galaxies: individual: NGC 3551},
-     year = 2013,
-    month = aug,
-   volume = 433,
-    pages = {1871-1891},
-      doi = {10.1093/mnras/stt864},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1871B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...787..139D,
-   author = {{Dall'Ora}, M. and {Botticella}, M.~T. and {Pumo}, M.~L. and 
-	{Zampieri}, L. and {Tomasella}, L. and {Pignata}, G. and {Bayless}, A.~J. and 
-	{Pritchard}, T.~A. and {Taubenberger}, S. and {Kotak}, R. and 
-	{Inserra}, C. and {Della Valle}, M. and {Cappellaro}, E. and 
-	{Benetti}, S. and {Benitez}, S. and {Bufano}, F. and {Elias-Rosa}, N. and 
-	{Fraser}, M. and {Haislip}, J.~B. and {Harutyunyan}, A. and 
-	{Howell}, D.~A. and {Hsiao}, E.~Y. and {Iijima}, T. and {Kankare}, E. and 
-	{Kuin}, P. and {Maund}, J.~R. and {Morales-Garoffolo}, A. and 
-	{Morrell}, N. and {Munari}, U. and {Ochner}, P. and {Pastorello}, A. and 
-	{Patat}, F. and {Phillips}, M.~M. and {Reichart}, D. and {Roming}, P.~W.~A. and 
-	{Siviero}, A. and {Smartt}, S.~J. and {Sollerman}, J. and {Taddia}, F. and 
-	{Valenti}, S. and {Wright}, D.},
-    title = "{The Type IIP Supernova 2012aw in M95: Hydrodynamical Modeling of the Photospheric Phase from Accurate Spectrophotometric Monitoring}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1404.1294},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: M95, supernovae: general, supernovae: individual: 2012aw},
-     year = 2014,
-    month = jun,
-   volume = 787,
-      eid = {139},
-    pages = {139},
-      doi = {10.1088/0004-637X/787/2/139},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..139D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2003PASP..115..928K,
-   author = {{Kennicutt}, Jr., R.~C. and {Armus}, L. and {Bendo}, G. and 
-	{Calzetti}, D. and {Dale}, D.~A. and {Draine}, B.~T. and {Engelbracht}, C.~W. and 
-	{Gordon}, K.~D. and {Grauer}, A.~D. and {Helou}, G. and {Hollenbach}, D.~J. and 
-	{Jarrett}, T.~H. and {Kewley}, L.~J. and {Leitherer}, C. and 
-	{Li}, A. and {Malhotra}, S. and {Regan}, M.~W. and {Rieke}, G.~H. and 
-	{Rieke}, M.~J. and {Roussel}, H. and {Smith}, J.-D.~T. and {Thornley}, M.~D. and 
-	{Walter}, F.},
-    title = "{SINGS: The SIRTF Nearby Galaxies Survey}",
-  journal = {\pasp},
-   eprint = {astro-ph/0305437},
- keywords = {ISM: Dust, Extinction, Galaxies: Evolution, Galaxies: ISM, infrared: galaxies, Stars: Formation, Surveys},
-     year = 2003,
-    month = aug,
-   volume = 115,
-    pages = {928-952},
-      doi = {10.1086/376941},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115..928K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...762...74B,
-   author = {{Benvenuto}, O.~G. and {Bersten}, M.~C. and {Nomoto}, K.},
-    title = "{A Binary Progenitor for the Type IIb Supernova 2011dh in M51}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1207.5807},
- primaryClass = "astro-ph.SR",
- keywords = {binaries: close, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh},
-     year = 2013,
-    month = jan,
-   volume = 762,
-      eid = {74},
-    pages = {74},
-      doi = {10.1088/0004-637X/762/2/74},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...762...74B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2013ApJ...772L..32V,
-   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Clubb}, K.~I. and {Filippenko}, A.~V. and 
-	{Cenko}, S.~B. and {Smith}, N. and {Fox}, O.~D. and {Kelly}, P.~L. and 
-	{Shivvers}, I. and {Ganeshalingam}, M.},
-    title = "{The Progenitor of Supernova 2011dh has Vanished}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1305.3436},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 5194, stars: evolution, supernovae: general, supernovae: individual: SN 2011dh },
-     year = 2013,
-    month = aug,
-   volume = 772,
-      eid = {L32},
-    pages = {L32},
-      doi = {10.1088/2041-8205/772/2/L32},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...772L..32V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005PASP..117..553V,
-   author = {{Van Dyk}, S.~D. and {Filippenko}, A.~V. and {Chornock}, R. and 
-	{Li}, W. and {Challis}, P.~M.},
-    title = "{Supernova 1954J (Variable 12) in NGC 2403 Unmasked}",
-  journal = {\pasp},
-   eprint = {astro-ph/0503324},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 1954J), Stars: Evolution, Stars: Early-Type, Stars: Variables: Other, Galaxies: Individual: NGC Number: NGC 2403, Stars: Supergiants},
-     year = 2005,
-    month = jun,
-   volume = 117,
-    pages = {553-562},
-      doi = {10.1086/430238},
-   adsurl = {http://adsabs.harvard.edu/abs/2005PASP..117..553V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1996AJ....111.1271V,
-   author = {{van Dyk}, S.~D. and {Weiler}, K.~W. and {Sramek}, R.~A. and 
-	{Schlegel}, E.~M. and {Filippenko}, A.~V. and {Panagia}, N. and 
-	{Leibundgut}, B.},
-    title = "{Type ''IIn'' Supernovae: A Search for Radio Emission}",
-  journal = {\aj},
- keywords = {RADIO LINES: STARS, SUPERNOVAE: GENERAL},
-     year = 1996,
-    month = mar,
-   volume = 111,
-    pages = {1271},
-      doi = {10.1086/117872},
-   adsurl = {http://adsabs.harvard.edu/abs/1996AJ....111.1271V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006PASP..118..351V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{The Light Echo around Supernova 2003gd in Messier 74}",
-  journal = {\pasp},
-   eprint = {astro-ph/0508684},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 2003gd), ISM: Reflection Nebulae, ISM: Dust, Extinction, galaxies: individual (Messier 74), Galaxies: Individual: NGC Number: NGC 628},
-     year = 2006,
-    month = mar,
-   volume = 118,
-    pages = {351-357},
-      doi = {10.1086/500225},
-   adsurl = {http://adsabs.harvard.edu/abs/2006PASP..118..351V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012ApJ...749..126W,
-   author = {{Wang}, X. and {Wang}, L. and {Filippenko}, A.~V. and {Baron}, E. and 
-	{Kromer}, M. and {Jack}, D. and {Zhang}, T. and {Aldering}, G. and 
-	{Antilogus}, P. and {Arnett}, W.~D. and {Baade}, D. and {Barris}, B.~J. and 
-	{Benetti}, S. and {Bouchet}, P. and {Burrows}, A.~S. and {Canal}, R. and 
-	{Cappellaro}, E. and {Carlberg}, R.~G. and {di Carlo}, E. and 
-	{Challis}, P.~J. and {Crotts}, A.~P.~S. and {Danziger}, J.~I. and 
-	{Della Valle}, M. and {Fink}, M. and {Foley}, R.~J. and {Fransson}, C. and 
-	{Gal-Yam}, A. and {Garnavich}, P.~M. and {Gerardy}, C.~L. and 
-	{Goldhaber}, G. and {Hamuy}, M. and {Hillebrandt}, W. and {H{\"o}flich}, P. and 
-	{Holland}, S.~T. and {Holz}, D.~E. and {Hughes}, J.~P. and {Jeffery}, D.~J. and 
-	{Jha}, S.~W. and {Kasen}, D. and {Khokhlov}, A.~M. and {Kirshner}, R.~P. and 
-	{Knop}, R.~A. and {Kozma}, C. and {Krisciunas}, K. and {Lee}, B.~C. and 
-	{Leibundgut}, B. and {Lentz}, E.~J. and {Leonard}, D.~C. and 
-	{Lewin}, W.~H.~G. and {Li}, W. and {Livio}, M. and {Lundqvist}, P. and 
-	{Maoz}, D. and {Matheson}, T. and {Mazzali}, P.~A. and {Meikle}, P. and 
-	{Miknaitis}, G. and {Milne}, P.~A. and {Mochnacki}, S.~W. and 
-	{Nomoto}, K. and {Nugent}, P.~E. and {Oran}, E.~S. and {Panagia}, N. and 
-	{Perlmutter}, S. and {Phillips}, M.~M. and {Pinto}, P. and {Poznanski}, D. and 
-	{Pritchet}, C.~J. and {Reinecke}, M. and {Riess}, A.~G. and 
-	{Ruiz-Lapuente}, P. and {Scalzo}, R.~A. and {Schlegel}, E.~M. and 
-	{Schmidt}, B.~P. and {Siegrist}, J. and {Soderberg}, A.~M. and 
-	{Sollerman}, J. and {Sonneborn}, G. and {Spadafora}, A. and 
-	{Spyromilio}, J. and {Sramek}, R.~A. and {Starrfield}, S.~G. and 
-	{Strolger}, L.~G. and {Suntzeff}, N.~B. and {Thomas}, R.~C. and 
-	{Tonry}, J.~L. and {Tornambe}, A. and {Truran}, J.~W. and {Turatto}, M. and 
-	{Turner}, M. and {Van Dyk}, S.~D. and {Weiler}, K.~W. and {Wheeler}, J.~C. and 
-	{Wood-Vasey}, M. and {Woosley}, S.~E. and {Yamaoka}, H.},
-    title = "{Evidence for Type Ia Supernova Diversity from Ultraviolet Observations with the Hubble Space Telescope}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1110.5809},
- primaryClass = "astro-ph.HE",
- keywords = {cosmology: observations, distance scale, dust, extinction, supernovae: general, ultraviolet: general},
-     year = 2012,
-    month = apr,
-   volume = 749,
-      eid = {126},
-    pages = {126},
-      doi = {10.1088/0004-637X/749/2/126},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...749..126W},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...732..109M,
-   author = {{Meikle}, W.~P.~S. and {Kotak}, R. and {Farrah}, D. and {Mattila}, S. and 
-	{Van Dyk}, S.~D. and {Andersen}, A.~C. and {Fesen}, R. and {Filippenko}, A.~V. and 
-	{Foley}, R.~J. and {Fransson}, C. and {Gerardy}, C.~L. and {H{\"o}flich}, P.~A. and 
-	{Lundqvist}, P. and {Pozzo}, M. and {Sollerman}, J. and {Wheeler}, J.~C.
-	},
-    title = "{Dust and the Type II-plateau Supernova 2004dj}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1103.2885},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, dust, extinction, supernovae: general, supernovae: individual: SN 2004dj},
-     year = 2011,
-    month = may,
-   volume = 732,
-      eid = {109},
-    pages = {109},
-      doi = {10.1088/0004-637X/732/2/109},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732..109M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115..448V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{On the Progenitor of Supernova 2001du in NGC 1365}",
-  journal = {\pasp},
-   eprint = {astro-ph/0301346},
- keywords = {Galaxies: Individual: NGC Number: NGC 1365, Stars: Evolution, Stars: Variables: Other, Stars: Supernovae: General, supernovae: individual (SN 2001du)},
-     year = 2003,
-    month = apr,
-   volume = 115,
-    pages = {448-452},
-      doi = {10.1086/374299},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115..448V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2011ApJ...742....6E,
-   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Silverman}, J.~M. and 
-	{Foley}, R.~J. and {Ganeshalingam}, M. and {Mauerhan}, J.~C. and 
-	{Kankare}, E. and {Jha}, S. and {Filippenko}, A.~V. and {Beckman}, J.~E. and 
-	{Berger}, E. and {Cuillandre}, J.-C. and {Smith}, N.},
-    title = "{The Massive Progenitor of the Possible Type II-Linear Supernova 2009hd in Messier 66}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1108.2645},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 3627, stars: evolution, supernovae: general, supernovae: individual: SN 2009hd},
-     year = 2011,
-    month = nov,
-   volume = 742,
-      eid = {6},
-    pages = {6},
-      doi = {10.1088/0004-637X/742/1/6},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...742....6E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2008ApJ...685L.117G,
-   author = {{Gal-Yam}, A. and {Bufano}, F. and {Barlow}, T.~A. and {Baron}, E. and 
-	{Benetti}, S. and {Cappellaro}, E. and {Challis}, P.~J. and 
-	{Ellis}, R.~S. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
-	{Fox}, D.~B. and {Hicken}, M. and {Kirshner}, R.~P. and {Leonard}, D.~C. and 
-	{Li}, W. and {Maoz}, D. and {Matheson}, T. and {Mazzali}, P.~A. and 
-	{Modjaz}, M. and {Nomoto}, K. and {Ofek}, E.~O. and {Simon}, J.~D. and 
-	{Small}, T.~A. and {Smith}, G.~P. and {Turatto}, M. and {Van Dyk}, S.~D. and 
-	{Zampieri}, L.},
-    title = "{GALEX Spectroscopy of SN 2005ay Suggests Ultraviolet Spectral Uniformity among Type II-P Supernovae}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {0806.3276},
- keywords = {supernovae: individual (SN 2005ay), Ultraviolet: General},
-     year = 2008,
-    month = oct,
-   volume = 685,
-    pages = {L117-L120},
-      doi = {10.1086/592744},
-   adsurl = {http://adsabs.harvard.edu/abs/2008ApJ...685L.117G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2001PASP..113.1349H,
-   author = {{Ho}, W.~C.~G. and {Van Dyk}, S.~D. and {Peng}, C.~Y. and {Filippenko}, A.~V. and 
-	{Leonard}, D.~C. and {Matheson}, T. and {Treffers}, R.~R. and 
-	{Richmond}, M.~W.},
-    title = "{BVRI Photometry of Supernovae}",
-  journal = {\pasp},
-   eprint = {astro-ph/0108299},
- keywords = {Stars: Supernovae: General, supernovae: individual (SN 1993Y), supernovae: individual (SN 1993Z), supernovae: individual (SN 1993ae), supernovae: individual (SN 1994B), supernovae: individual (SN 1994C), supernovae: individual (SN 1994M), supernovae: individual (SN 1994Q), supernovae: individual (SN 1994Y), supernovae: individual (SN 1994ae), supernovae: individual (SN 1995D)},
-     year = 2001,
-    month = nov,
-   volume = 113,
-    pages = {1349-1364},
-      doi = {10.1086/323970},
-   adsurl = {http://adsabs.harvard.edu/abs/2001PASP..113.1349H},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014AJ....147...37V,
-   author = {{Van Dyk}, S.~D. and {Zheng}, W. and {Fox}, O.~D. and {Cenko}, S.~B. and 
-	{Clubb}, K.~I. and {Filippenko}, A.~V. and {Foley}, R.~J. and 
-	{Miller}, A.~A. and {Smith}, N. and {Kelly}, P.~L. and {Lee}, W.~H. and 
-	{Ben-Ami}, S. and {Gal-Yam}, A.},
-    title = "{The Type IIb Supernova 2013df and its Cool Supergiant Progenitor}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1312.3984},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 4414, stars: evolution, supernovae: general, supernovae: individual: SN 2013df},
-     year = 2014,
-    month = feb,
-   volume = 147,
-      eid = {37},
-    pages = {37},
-      doi = {10.1088/0004-6256/147/2/37},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...37V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436.3614S,
-   author = {{Shivvers}, I. and {Mazzali}, P. and {Silverman}, J.~M. and 
-	{Boty{\'a}nszki}, J. and {Cenko}, S.~B. and {Filippenko}, A.~V. and 
-	{Kasen}, D. and {Van Dyk}, S.~D. and {Clubb}, K.~I.},
-    title = "{Nebular spectroscopy of the nearby Type IIb supernova 2011dh}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1307.2246},
- primaryClass = "astro-ph.HE",
- keywords = {techniques: spectroscopic, supernovae: general, supernovae: individual: SN 2011dh},
-     year = 2013,
-    month = dec,
-   volume = 436,
-    pages = {3614-3625},
-      doi = {10.1093/mnras/stt1839},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.3614S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2000ARA&A..38..613K,
-   author = {{Kudritzki}, R.-P. and {Puls}, J.},
-    title = "{Winds from Hot Stars}",
-  journal = {\araa},
- keywords = {MASS LOSS, STELLAR WINDS, MASSIVE STARS, CENTRAL STARS OF PLANETARY NEBULAE, STELLAR EVOLUTION},
-     year = 2000,
-   volume = 38,
-    pages = {613-666},
-      doi = {10.1146/annurev.astro.38.1.613},
-   adsurl = {http://adsabs.harvard.edu/abs/2000ARA&A..38..613K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2005A&A...443..643Y,
-   author = {{Yoon}, S.-C. and {Langer}, N.},
-    title = "{Evolution of rapidly rotating metal-poor massive stars towards gamma-ray bursts}",
-  journal = {\aap},
-   eprint = {astro-ph/0508242},
- keywords = {stars: rotation, stars: evolution, stars: Wolf-Rayet, supernovae: general, gamma rays: bursts},
-     year = 2005,
-    month = nov,
-   volume = 443,
-    pages = {643-648},
-      doi = {10.1051/0004-6361:20054030},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...443..643Y},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005A&A...442..587V,
-   author = {{Vink}, J.~S. and {de Koter}, A.},
-    title = "{On the metallicity dependence of Wolf-Rayet winds}",
-  journal = {\aap},
-   eprint = {astro-ph/0507352},
- keywords = {stars: Wolf-Rayet, stars: early-type, stars: mass-loss, stars: winds, outflows, stars: evolution},
-     year = 2005,
-    month = nov,
-   volume = 442,
-    pages = {587-596},
-      doi = {10.1051/0004-6361:20052862},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...442..587V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...645L..45S,
-   author = {{Smith}, N. and {Owocki}, S.~P.},
-    title = "{On the Role of Continuum-driven Eruptions in the Evolution of Very Massive Stars and Population III Stars}",
-  journal = {\apjl},
-   eprint = {astro-ph/0606174},
- keywords = {Instabilities, Stars: Evolution, Stars: Mass Loss, Stars: Winds, Outflows},
-     year = 2006,
-    month = jul,
-   volume = 645,
-    pages = {L45-L48},
-      doi = {10.1086/506523},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...645L..45S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2012ApJ...752...78S,
-   author = {{Soderberg}, A.~M. and {Margutti}, R. and {Zauderer}, B.~A. and 
-	{Krauss}, M. and {Katz}, B. and {Chomiuk}, L. and {Dittmann}, J.~A. and 
-	{Nakar}, E. and {Sakamoto}, T. and {Kawai}, N. and {Hurley}, K. and 
-	{Barthelmy}, S. and {Toizumi}, T. and {Morii}, M. and {Chevalier}, R.~A. and 
-	{Gurwell}, M. and {Petitpas}, G. and {Rupen}, M. and {Alexander}, K.~D. and 
-	{Levesque}, E.~M. and {Fransson}, C. and {Brunthaler}, A. and 
-	{Bietenholz}, M.~F. and {Chugai}, N. and {Grindlay}, J. and 
-	{Copete}, A. and {Connaughton}, V. and {Briggs}, M. and {Meegan}, C. and 
-	{von Kienlin}, A. and {Zhang}, X. and {Rau}, A. and {Golenetskii}, S. and 
-	{Mazets}, E. and {Cline}, T.},
-    title = "{Panchromatic Observations of SN 2011dh Point to a Compact Progenitor Star}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1107.1876},
- primaryClass = "astro-ph.HE",
- keywords = {supernovae: individual: SN 2011dh},
-     year = 2012,
-    month = jun,
-   volume = 752,
-      eid = {78},
-    pages = {78},
-      doi = {10.1088/0004-637X/752/2/78},
-   adsurl = {http://adsabs.harvard.edu/abs/2012ApJ...752...78S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014ApJ...790...17F,
-   author = {{Fox}, O.~D. and {Azalee Bostroem}, K. and {Van Dyk}, S.~D. and 
-	{Filippenko}, A.~V. and {Fransson}, C. and {Matheson}, T. and 
-	{Cenko}, S.~B. and {Chandra}, P. and {Dwarkadas}, V. and {Li}, W. and 
-	{Parker}, A.~H. and {Smith}, N.},
-    title = "{Uncovering the Putative B-star Binary Companion of the SN 1993J Progenitor}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1405.4863},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, supernovae: general, supernovae: individual: SN 1993J},
-     year = 2014,
-    month = jul,
-   volume = 790,
-      eid = {17},
-    pages = {17},
-      doi = {10.1088/0004-637X/790/1/17},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...790...17F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2003PASP..115...21V,
-   author = {{Van Dyk}, S.~D. and {Li}, W. and {Filippenko}, A.~V.},
-    title = "{``A Search for Core-Collapse Supernova Progenitors in Hubble Space Telescope Images'' (<A href=''/abs/2003PASP.115....1V''>PASP, 115, 1 [2003]</A>)}",
-  journal = {\pasp},
- keywords = {Errata, Addenda},
-     year = 2003,
-    month = jan,
-   volume = 115,
-    pages = {21-21},
-      doi = {10.1086/374188},
-   adsurl = {http://adsabs.harvard.edu/abs/2003PASP..115...21V},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@INPROCEEDINGS{2003LNP...598..171C,
-   author = {{Chevalier}, R.~A. and {Fransson}, C.},
-    title = "{Supernova Interaction with a Circumstellar Medium}",
-booktitle = {Supernovae and Gamma-Ray Bursters},
-     year = 2003,
-   series = {Lecture Notes in Physics, Berlin Springer Verlag},
-   volume = 598,
-   editor = {{Weiler}, K.},
-    pages = {171-194},
-   adsurl = {http://adsabs.harvard.edu/abs/2003LNP...598..171C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2012MNRAS.419.1515D,
-   author = {{Dwarkadas}, V.~V. and {Gruszko}, J.},
-    title = "{What are published X-ray light curves telling us about young supernova expansion?}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1109.2616},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, stars: massive, stars: mass-loss, supernovae: general, stars: winds, outflows, X-rays: ISM},
-     year = 2012,
-    month = jan,
-   volume = 419,
-    pages = {1515-1524},
-      doi = {10.1111/j.1365-2966.2011.19808.x},
-   adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.419.1515D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011A&A...526A.156M,
-   author = {{Mauron}, N. and {Josselin}, E.},
-    title = "{The mass-loss rates of red supergiants and the de Jager prescription}",
-  journal = {\aap},
-archivePrefix = "arXiv",
-   eprint = {1010.5369},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, stars: mass-loss, supergiants},
-     year = 2011,
-    month = feb,
-   volume = 526,
-      eid = {A156},
-    pages = {A156},
-      doi = {10.1051/0004-6361/201013993},
-   adsurl = {http://adsabs.harvard.edu/abs/2011A&A...526A.156M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...641.1029C,
-   author = {{Chevalier}, R.~A. and {Fransson}, C. and {Nymark}, T.~K.},
-    title = "{Radio and X-Ray Emission as Probes of Type IIP Supernovae and Red Supergiant Mass Loss}",
-  journal = {\apj},
-   eprint = {astro-ph/0509468},
- keywords = {Stars: Circumstellar Matter, Stars: Mass Loss, Stars: Supernovae: General},
-     year = 2006,
-    month = apr,
-   volume = 641,
-    pages = {1029-1038},
-      doi = {10.1086/500528},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...641.1029C},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2010ApJ...711.1343E,
-   author = {{Elias-Rosa}, N. and {Van Dyk}, S.~D. and {Li}, W. and {Morrell}, N. and 
-	{Gonzalez}, S. and {Hamuy}, M. and {Filippenko}, A.~V. and {Cuillandre}, J.-C. and 
-	{Foley}, R.~J. and {Smith}, N.},
-    title = "{Erratum: ''On the Progenitor of the Type II-Plateau SN 2008CN in NGC 4603'' <A href=''/abs/2009ApJ...706.1174E''>(2009, ApJ, 706, 1174)</A>}",
-  journal = {\apj},
-     year = 2010,
-    month = mar,
-   volume = 711,
-    pages = {1343},
-      doi = {10.1088/0004-637X/711/2/1343},
-   adsurl = {http://adsabs.harvard.edu/abs/2010ApJ...711.1343E},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.430.1801M,
-   author = {{Mauerhan}, J.~C. and {Smith}, N. and {Filippenko}, A.~V. and 
-	{Blanchard}, K.~B. and {Blanchard}, P.~K. and {Casper}, C.~F.~E. and 
-	{Cenko}, S.~B. and {Clubb}, K.~I. and {Cohen}, D.~P. and {Fuller}, K.~L. and 
-	{Li}, G.~Z. and {Silverman}, J.~M.},
-    title = "{The unprecedented 2012 outburst of SN 2009ip: a luminous blue variable star becomes a true supernova}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1209.6320},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, stars: winds, outflows},
-     year = 2013,
-    month = apr,
-   volume = 430,
-    pages = {1801-1810},
-      doi = {10.1093/mnras/stt009},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.430.1801M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2004CBET...74....1N,
-   author = {{Nakano}, S. and {Itagaki}, K.},
-    title = "{Supernova 2004dj in NGC 2403}",
-  journal = {Central Bureau Electronic Telegrams},
-     year = 2004,
-    month = aug,
-   volume = 74,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2004CBET...74....1N},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2004IAUC.8297....2S,
-   author = {{Singer}, D. and {Pugh}, H. and {Li}, W.},
-    title = "{Supernovae 2004ak, 2004al, and 2004am}",
-  journal = {\iaucirc},
-     year = 2004,
-    month = mar,
-   volume = 8297,
-    pages = {2},
-   adsurl = {http://adsabs.harvard.edu/abs/2004IAUC.8297....2S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009CBET.1928....1M,
-   author = {{Maza}, J. and {Hamuy}, M. and {Antezana}, R. and {Gonzalez}, L. and 
-	{Lopez}, P. and {Silva}, S. and {Folatelli}, G. and {Iturra}, D. and 
-	{Cartier}, R. and {Forster}, F. and {Marchi}, S. and {Rojas}, A. and 
-	{Pignata}, G. and {Conuel}, B. and {Reichart}, D. and {Ivarsen}, K. and 
-	{Haislip}, J. and {Crain}, A. and {Foster}, D. and {Nysewander}, M. and 
-	{Lacluyze}, A.},
-    title = "{Supernova 2009ip in NGC 7259}",
-  journal = {Central Bureau Electronic Telegrams},
-     year = 2009,
-    month = aug,
-   volume = 1928,
-    pages = {1},
-   adsurl = {http://adsabs.harvard.edu/abs/2009CBET.1928....1M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2011ApJ...732...32F,
-   author = {{Foley}, R.~J. and {Berger}, E. and {Fox}, O. and {Levesque}, E.~M. and 
-	{Challis}, P.~J. and {Ivans}, I.~I. and {Rhoads}, J.~E. and 
-	{Soderberg}, A.~M.},
-    title = "{The Diversity of Massive Star Outbursts. I. Observations of SN2009ip, UGC 2773 OT2009-1, and Their Progenitors}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1002.0635},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, dust, extinction, stars: evolution, stars: individual: SN 2009ip UGC 2773 OT2009-1, stars: massive, stars: mass-loss, stars: variables: general, stars: variables: S Doradus, stars: winds, outflows},
-     year = 2011,
-    month = may,
-   volume = 732,
-      eid = {32},
-    pages = {32},
-      doi = {10.1088/0004-637X/732/1/32},
-   adsurl = {http://adsabs.harvard.edu/abs/2011ApJ...732...32F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-
-@ARTICLE{2010AJ....139.1451S,
-   author = {{Smith}, N. and {Miller}, A. and {Li}, W. and {Filippenko}, A.~V. and 
-	{Silverman}, J.~M. and {Howard}, A.~W. and {Nugent}, P. and 
-	{Marcy}, G.~W. and {Bloom}, J.~S. and {Ghez}, A.~M. and {Lu}, J. and 
-	{Yelda}, S. and {Bernstein}, R.~A. and {Colucci}, J.~E.},
-    title = "{Discovery of Precursor Luminous Blue Variable Outbursts in Two Recent Optical Transients: The Fitfully Variable Missing Links UGC 2773-OT and SN 2009ip}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {0909.4792},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, stars: mass-loss, stars: variables: general, stars: winds, outflows, supernovae: general},
-     year = 2010,
-    month = apr,
-   volume = 139,
-    pages = {1451-1467},
-      doi = {10.1088/0004-6256/139/4/1451},
-   adsurl = {http://adsabs.harvard.edu/abs/2010AJ....139.1451S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...767....1P,
-   author = {{Pastorello}, A. and {Cappellaro}, E. and {Inserra}, C. and 
-	{Smartt}, S.~J. and {Pignata}, G. and {Benetti}, S. and {Valenti}, S. and 
-	{Fraser}, M. and {Tak{\'a}ts}, K. and {Benitez}, S. and {Botticella}, M.~T. and 
-	{Brimacombe}, J. and {Bufano}, F. and {Cellier-Holzem}, F. and 
-	{Costado}, M.~T. and {Cupani}, G. and {Curtis}, I. and {Elias-Rosa}, N. and 
-	{Ergon}, M. and {Fynbo}, J.~P.~U. and {Hambsch}, F.-J. and {Hamuy}, M. and 
-	{Harutyunyan}, A. and {Ivarson}, K.~M. and {Kankare}, E. and 
-	{Martin}, J.~C. and {Kotak}, R. and {LaCluyze}, A.~P. and {Maguire}, K. and 
-	{Mattila}, S. and {Maza}, J. and {McCrum}, M. and {Miluzio}, M. and 
-	{Norgaard-Nielsen}, H.~U. and {Nysewander}, M.~C. and {Ochner}, P. and 
-	{Pan}, Y.-C. and {Pumo}, M.~L. and {Reichart}, D.~E. and {Tan}, T.~G. and 
-	{Taubenberger}, S. and {Tomasella}, L. and {Turatto}, M. and 
-	{Wright}, D.},
-    title = "{Interacting Supernovae and Supernova Impostors: SN 2009ip, is this the End?}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1210.3568},
- primaryClass = "astro-ph.SR",
- keywords = {galaxies: individual: NGC 7259, supernovae: general, supernovae: individual: SN 2009ip SN 2000ch},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {1},
-    pages = {1},
-      doi = {10.1088/0004-637X/767/1/1},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...780...21M,
-   author = {{Margutti}, R. and {Milisavljevic}, D. and {Soderberg}, A.~M. and 
-	{Chornock}, R. and {Zauderer}, B.~A. and {Murase}, K. and {Guidorzi}, C. and 
-	{Sanders}, N.~E. and {Kuin}, P. and {Fransson}, C. and {Levesque}, E.~M. and 
-	{Chandra}, P. and {Berger}, E. and {Bianco}, F.~B. and {Brown}, P.~J. and 
-	{Challis}, P. and {Chatzopoulos}, E. and {Cheung}, C.~C. and 
-	{Choi}, C. and {Chomiuk}, L. and {Chugai}, N. and {Contreras}, C. and 
-	{Drout}, M.~R. and {Fesen}, R. and {Foley}, R.~J. and {Fong}, W. and 
-	{Friedman}, A.~S. and {Gall}, C. and {Gehrels}, N. and {Hjorth}, J. and 
-	{Hsiao}, E. and {Kirshner}, R. and {Im}, M. and {Leloudas}, G. and 
-	{Lunnan}, R. and {Marion}, G.~H. and {Martin}, J. and {Morrell}, N. and 
-	{Neugent}, K.~F. and {Omodei}, N. and {Phillips}, M.~M. and 
-	{Rest}, A. and {Silverman}, J.~M. and {Strader}, J. and {Stritzinger}, M.~D. and 
-	{Szalai}, T. and {Utterback}, N.~B. and {Vinko}, J. and {Wheeler}, J.~C. and 
-	{Arnett}, D. and {Campana}, S. and {Chevalier}, R. and {Ginsburg}, A. and 
-	{Kamble}, A. and {Roming}, P.~W.~A. and {Pritchard}, T. and 
-	{Stringfellow}, G.},
-    title = "{A Panchromatic View of the Restless SN 2009ip Reveals the Explosive Ejection of a Massive Star Envelope}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1306.0038},
- primaryClass = "astro-ph.HE",
- keywords = {stars: mass-loss, supernovae: individual: SN2009ip},
-     year = 2014,
-    month = jan,
-   volume = 780,
-      eid = {21},
-    pages = {21},
-      doi = {10.1088/0004-637X/780/1/21},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...21M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...763L..27P,
-   author = {{Prieto}, J.~L. and {Brimacombe}, J. and {Drake}, A.~J. and 
-	{Howerton}, S.},
-    title = "{The 2012 Rise of the Remarkable Type IIn SN 2009ip}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1210.3347},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, stars: mass-loss, supernovae: individual: SN 2009ip},
-     year = 2013,
-    month = feb,
-   volume = 763,
-      eid = {L27},
-    pages = {L27},
-      doi = {10.1088/2041-8205/763/2/L27},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...763L..27P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.433.1312F,
-   author = {{Fraser}, M. and {Inserra}, C. and {Jerkstrand}, A. and {Kotak}, R. and 
-	{Pignata}, G. and {Benetti}, S. and {Botticella}, M.-T. and 
-	{Bufano}, F. and {Childress}, M. and {Mattila}, S. and {Pastorello}, A. and 
-	{Smartt}, S.~J. and {Turatto}, M. and {Yuan}, F. and {Anderson}, J.~P. and 
-	{Bayliss}, D.~D.~R. and {Bauer}, F.~E. and {Chen}, T.-W. and 
-	{F{\"o}rster Bur{\'o}n}, F. and {Gal-Yam}, A. and {Haislip}, J.~B. and 
-	{Knapic}, C. and {Le Guillou}, L. and {Marchi}, S. and {Mazzali}, P. and 
-	{Molinaro}, M. and {Moore}, J.~P. and {Reichart}, D. and {Smareglia}, R. and 
-	{Smith}, K.~W. and {Sternberg}, A. and {Sullivan}, M. and {Tak{\'a}ts}, K. and 
-	{Tucker}, B.~E. and {Valenti}, S. and {Yaron}, O. and {Young}, D.~R. and 
-	{Zhou}, G.},
-    title = "{SN 2009ip {\`a} la PESSTO: no evidence for core collapse yet}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1303.3453},
- primaryClass = "astro-ph.SR",
- keywords = {stars: massive, stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
-     year = 2013,
-    month = aug,
-   volume = 433,
-    pages = {1312-1337},
-      doi = {10.1093/mnras/stt813},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.433.1312F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...769..109L,
-   author = {{Lovegrove}, E. and {Woosley}, S.~E.},
-    title = "{Very Low Energy Supernovae from Neutrino Mass Loss}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.5055},
- primaryClass = "astro-ph.HE",
- keywords = {black hole physics, shock waves, stars: massive, stars: neutron, supernovae: general},
-     year = 2013,
-    month = jun,
-   volume = 769,
-      eid = {109},
-    pages = {109},
-      doi = {10.1088/0004-637X/769/2/109},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...769..109L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002NewAR..46..487F,
-   author = {{Fransson}, C. and {Kozma}, C.},
-    title = "{Radioactivities and nucleosynthesis in SN 1987A}",
-  journal = {\nar},
-   eprint = {astro-ph/0112405},
-     year = 2002,
-    month = jul,
-   volume = 46,
-    pages = {487-492},
-      doi = {10.1016/S1387-6473(02)00188-4},
-   adsurl = {http://adsabs.harvard.edu/abs/2002NewAR..46..487F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2005A&A...437..983K,
-   author = {{Kozma}, C. and {Fransson}, C. and {Hillebrandt}, W. and {Travaglio}, C. and 
-	{Sollerman}, J. and {Reinecke}, M. and {R{\"o}pke}, F.~K. and 
-	{Spyromilio}, J.},
-    title = "{Three-dimensional modeling of type Ia supernovae - The power of late time spectra}",
-  journal = {\aap},
-   eprint = {astro-ph/0504317},
- keywords = {stars: supernovae: general, nuclear reactions, nucleosynthesis, abundances, hydrodynamics, line: formation, line: identification},
-     year = 2005,
-    month = jul,
-   volume = 437,
-    pages = {983-995},
-      doi = {10.1051/0004-6361:20053044},
-   adsurl = {http://adsabs.harvard.edu/abs/2005A&A...437..983K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1998ApJ...497..431K,
-   author = {{Kozma}, C. and {Fransson}, C.},
-    title = "{Late Spectral Evolution of SN 1987A. II. Line Emission}",
-  journal = {\apj},
-   eprint = {astro-ph/9712224},
- keywords = {LINE FORMATION, STARS: ABUNDANCES, STARS: EVOLUTION, STARS: INTERIORS, STARS: SUPERNOVAE: INDIVIDUAL ALPHANUMERIC: SN 1987A, Line: Formation, Nuclear Reactions, Nucleosynthesis, Abundances, Stars: Abundances, Stars: Evolution, Stars: Interiors, Stars: Supernovae: Individual: Alphanumeric: SN 1987A},
-     year = 1998,
-    month = apr,
-   volume = 497,
-    pages = {431-457},
-      doi = {10.1086/305452},
-   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...497..431K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{1999ApJ...522..413F,
-   author = {{Fryer}, C.~L.},
-    title = "{Mass Limits For Black Hole Formation}",
-  journal = {\apj},
-   eprint = {astro-ph/9902315},
- keywords = {BLACK HOLE PHYSICS, STARS: EVOLUTION, STARS: INTERIORS, STARS: SUPERNOVAE: GENERAL, Black Hole Physics, Stars: Evolution, Stars: Interiors, Stars: Supernovae: General},
-     year = 1999,
-    month = sep,
-   volume = 522,
-    pages = {413-418},
-      doi = {10.1086/307647},
-   adsurl = {http://adsabs.harvard.edu/abs/1999ApJ...522..413F},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...767....3D,
-   author = {{Davies}, B. and {Kudritzki}, R.-P. and {Plez}, B. and {Trager}, S. and 
-	{Lan{\c c}on}, A. and {Gazak}, Z. and {Bergemann}, M. and {Evans}, C. and 
-	{Chiavassa}, A.},
-    title = "{The Temperatures of Red Supergiants}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1302.2674},
- primaryClass = "astro-ph.SR",
- keywords = {stars: atmospheres, stars: evolution, stars: fundamental parameters, stars: late-type, stars: massive, supergiants},
-     year = 2013,
-    month = apr,
-   volume = 767,
-      eid = {3},
-    pages = {3},
-      doi = {10.1088/0004-637X/767/1/3},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...767....3D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2009AJ....137.4744L,
-   author = {{Levesque}, E.~M. and {Massey}, P. and {Plez}, B. and {Olsen}, K.~A.~G.
-	},
-    title = "{The Physical Properties of the Red Supergiant WOH G64: The Largest Star Known?}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {0903.2260},
- primaryClass = "astro-ph.SR",
- keywords = {stars: evolution, stars: late-type, stars: mass loss, supergiants},
-     year = 2009,
-    month = jun,
-   volume = 137,
-    pages = {4744-4752},
-      doi = {10.1088/0004-6256/137/6/4744},
-   adsurl = {http://adsabs.harvard.edu/abs/2009AJ....137.4744L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
-@ARTICLE{2014AJ....147...23L,
-   author = {{Levesque}, E.~M. and {Stringfellow}, G.~S. and {Ginsburg}, A.~G. and 
-	{Bally}, J. and {Keeney}, B.~A.},
-    title = "{The Peculiar Balmer Decrement of SN 2009ip: Constraints on Circumstellar Geometry}",
-  journal = {\aj},
-archivePrefix = "arXiv",
-   eprint = {1211.4577},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: massive, stars: variables: general, supernovae: general},
-     year = 2014,
-    month = jan,
-   volume = 147,
-      eid = {23},
-    pages = {23},
-      doi = {10.1088/0004-6256/147/1/23},
-   adsurl = {http://adsabs.harvard.edu/abs/2014AJ....147...23L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...764L...6S,
-   author = {{Soker}, N. and {Kashi}, A.},
-    title = "{Explaining the Supernova Impostor SN 2009ip as Mergerburst}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1211.5388},
- primaryClass = "astro-ph.HE",
- keywords = {stars: individual: SN 2009ip, stars: massive, stars: variables: general, stars: winds, outflows},
-     year = 2013,
-    month = feb,
-   volume = 764,
-      eid = {L6},
-    pages = {L6},
-      doi = {10.1088/2041-8205/764/1/L6},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...764L...6S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.438.1191S,
-   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Prieto}, J.~L.},
-    title = "{SN 2009ip and SN 2010mc: core-collapse Type IIn supernovae arising from blue supergiants}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1308.0112},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, supernovae: individual: SN 2010mc, stars: winds, outflows},
-     year = 2014,
-    month = feb,
-   volume = 438,
-    pages = {1191-1207},
-      doi = {10.1093/mnras/stt2269},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.438.1191S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...768...47O,
-   author = {{Ofek}, E.~O. and {Lin}, L. and {Kouveliotou}, C. and {Younes}, G. and 
-	{G{\"o}{\v g}{\"u}{\c s}}, E. and {Kasliwal}, M.~M. and {Cao}, Y.
-	},
-    title = "{SN 2009ip: Constraints on the Progenitor Mass-loss Rate}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1303.3894},
- primaryClass = "astro-ph.HE",
- keywords = {stars: mass-loss, supernovae: general, supernovae: individual: SN 2009ip},
-     year = 2013,
-    month = may,
-   volume = 768,
-      eid = {47},
-    pages = {47},
-      doi = {10.1088/0004-637X/768/1/47},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...768...47O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.434.2721S,
-   author = {{Smith}, N. and {Mauerhan}, J.~C. and {Kasliwal}, M.~M. and 
-	{Burgasser}, A.~J.},
-    title = "{Near-infrared spectroscopy of SN 2009ip's 2012 brightening reveals a dusty pre-supernova environment}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1303.0304},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, stars: massive, supernovae: general, supernovae: individual: SN 2009ip, stars: variables: S Doradus, stars: winds, outflows},
-     year = 2013,
-    month = oct,
-   volume = 434,
-    pages = {2721-2726},
-      doi = {10.1093/mnras/stt944},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.434.2721S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014MNRAS.442.1166M,
-   author = {{Mauerhan}, J. and {Williams}, G.~G. and {Smith}, N. and {Smith}, P.~S. and 
-	{Filippenko}, A.~V. and {Hoffman}, J.~L. and {Milne}, P. and 
-	{Leonard}, D.~C. and {Clubb}, K.~I. and {Fox}, O.~D. and {Kelly}, P.~L.
-	},
-    title = "{Multi-epoch spectropolarimetry of SN 2009ip: direct evidence for aspherical circumstellar material}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1403.4240},
- primaryClass = "astro-ph.SR",
- keywords = {circumstellar matter, stars: evolution, supernovae: general, supernovae: individual: SN 2009ip, stars: winds, outflows},
-     year = 2014,
-    month = aug,
-   volume = 442,
-    pages = {1166-1180},
-      doi = {10.1093/mnras/stu730},
-   adsurl = {http://adsabs.harvard.edu/abs/2014MNRAS.442.1166M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2014ApJ...787..163G,
-   author = {{Graham}, M.~L. and {Sand}, D.~J. and {Valenti}, S. and {Howell}, D.~A. and 
-	{Parrent}, J. and {Halford}, M. and {Zaritsky}, D. and {Bianco}, F. and 
-	{Rest}, A. and {Dilday}, B.},
-    title = "{Clues to the Nature of SN 2009ip from Photometric and Spectroscopic Evolution to Late Times}",
-  journal = {\apj},
-archivePrefix = "arXiv",
-   eprint = {1402.1765},
- primaryClass = "astro-ph.HE",
- keywords = {circumstellar matter, stars: mass-loss, stars: variables: general, supernovae: individual: 2009ip},
-     year = 2014,
-    month = jun,
-   volume = 787,
-      eid = {163},
-    pages = {163},
-      doi = {10.1088/0004-637X/787/2/163},
-   adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...787..163G},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.436.2484K,
-   author = {{Kashi}, A. and {Soker}, N. and {Moskovitz}, N.},
-    title = "{Powering the second 2012 outburst of SN 2009ip by repeating binary interaction}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1307.7681},
- primaryClass = "astro-ph.SR",
- keywords = {stars: individual: SN 2009ip, stars: winds, outflows},
-     year = 2013,
-    month = dec,
-   volume = 436,
-    pages = {2484-2491},
-      doi = {10.1093/mnras/stt1742},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.436.2484K},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013RAA....13.1463O,
-   author = {{Ouyed}, R. and {Koning}, N. and {Leahy}, D.},
-    title = "{SN 2009ip and SN 2010mc as dual-shock Quark-Novae}",
-  journal = {Research in Astronomy and Astrophysics},
-archivePrefix = "arXiv",
-   eprint = {1308.3927},
- primaryClass = "astro-ph.HE",
-     year = 2013,
-    month = dec,
-   volume = 13,
-      eid = {1463},
-    pages = {1463-1470},
-      doi = {10.1088/1674-4527/13/12/007},
-   adsurl = {http://adsabs.harvard.edu/abs/2013RAA....13.1463O},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013MNRAS.431L..98P,
-   author = {{Potashov}, M. and {Blinnikov}, S. and {Baklanov}, P. and {Dolgov}, A.
-	},
-    title = "{Direct distance measurements to SN 2009ip}",
-  journal = {\mnras},
-archivePrefix = "arXiv",
-   eprint = {1212.6893},
- primaryClass = "astro-ph.CO",
- keywords = {supernovae: individual: SN 2009ip, distance scale},
-     year = 2013,
-    month = apr,
-   volume = 431,
-    pages = {L98-L101},
-      doi = {10.1093/mnrasl/slt016},
-   adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.431L..98P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013ApJ...777L..35T,
-   author = {{Tsebrenko}, D. and {Soker}, N.},
-    title = "{Accelerating Very Fast Gas in the Supernova Impostor SN 2009ip with Jets from a Stellar Companion}",
-  journal = {\apjl},
-archivePrefix = "arXiv",
-   eprint = {1308.4555},
- primaryClass = "astro-ph.SR",
- keywords = {stars: individual: SN 2009ip, stars: massive, stars: variables: general, stars: winds, outflows},
-     year = 2013,
-    month = nov,
-   volume = 777,
-      eid = {L35},
-    pages = {L35},
-      doi = {10.1088/2041-8205/777/2/L35},
-   adsurl = {http://adsabs.harvard.edu/abs/2013ApJ...777L..35T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2013JAVSO..41..391M,
-   author = {{Martin}, J.},
-    title = "{Periodic Brightness Fluctuatons in the 2012 Outburst of SN 2009ip (Abstract)}",
-  journal = {Journal of the American Association of Variable Star Observers (JAAVSO)},
-     year = 2013,
-    month = dec,
-   volume = 41,
-    pages = {391},
-   adsurl = {http://adsabs.harvard.edu/abs/2013JAVSO..41..391M},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2015arXiv150402404T,
-   author = {{Takats}, K. and {Pignata}, G. and {Pumo}, M.~L. and {Paillas}, E. and 
-	{Zampieri}, L. and {Elias-Rosa}, N. and {Benetti}, S. and {Bufano}, F. and 
-	{Cappellaro}, E. and {Ergon}, M. and {Fraser}, M. and {Hamuy}, M. and 
-	{Inserra}, C. and {Kankare}, E. and {Smartt}, S.~J. and {Stritzinger}, M.~D. and 
-	{Van Dyk}, S.~D. and {Haislip}, J.~B. and {LaCluyze}, A.~P. and 
-	{Moore}, J.~P. and {Reichart}, D.},
-    title = "{SN 2009ib: A Type II-P Supernova with an Unusually Long Plateau}",
-  journal = {ArXiv e-prints},
-archivePrefix = "arXiv",
-   eprint = {1504.02404},
- primaryClass = "astro-ph.SR",
- keywords = {Astrophysics - Solar and Stellar Astrophysics},
-     year = 2015,
-    month = apr,
-   adsurl = {http://adsabs.harvard.edu/abs/2015arXiv150402404T},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1998ApJ...503..325A,
-   author = {{Alard}, C. and {Lupton}, R.~H.},
-    title = "{A Method for Optimal Image Subtraction}",
-  journal = {\apj},
-   eprint = {astro-ph/9712287},
- keywords = {METHODS: DATA ANALYSIS, METHODS: STATISTICAL, TECHNIQUES: IMAGE PROCESSING, Methods: Data Analysis, Methods: Statistical, Techniques: Image Processing},
-     year = 1998,
-    month = aug,
-   volume = 503,
-    pages = {325-331},
-      doi = {10.1086/305984},
-   adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...503..325A},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1993PASP..105.1342S,
-   author = {{Schechter}, P.~L. and {Mateo}, M. and {Saha}, A.},
-    title = "{DOPHOT, a CCD photometry program: Description and tests}",
-  journal = {\pasp},
- keywords = {Astronomical Photometry, Charge Coupled Devices, Computer Programs, Computerized Simulation, Data Reduction, Image Processing, Point Spread Functions, Comparison, Globular Clusters, Stellar Color, Stellar Magnitude},
-     year = 1993,
-    month = nov,
-   volume = 105,
-    pages = {1342-1353},
-      doi = {10.1086/133316},
-   adsurl = {http://adsabs.harvard.edu/abs/1993PASP..105.1342S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-% galfit
-@ARTICLE{2002AJ....124..266P,
-   author = {{Peng}, C.~Y. and {Ho}, L.~C. and {Impey}, C.~D. and {Rix}, H.-W.},
-    title = "{Detailed Structural Decomposition of Galaxy Images}",
-  journal = {\aj},
-   eprint = {astro-ph/0204182},
- keywords = {Galaxies: Bulges, Galaxies: Fundamental Parameters, Galaxies: Nuclei, Galaxies: Structure, Techniques: Image Processing, Techniques: Photometric},
-     year = 2002,
-    month = jul,
-   volume = 124,
-    pages = {266-293},
-      doi = {10.1086/340952},
-   adsurl = {http://adsabs.harvard.edu/abs/2002AJ....124..266P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-%I believe this is sdss phot
-@INPROCEEDINGS{2001ASPC..238..269L,
-   author = {{Lupton}, R. and {Gunn}, J.~E. and {Ivezi{\'c}}, Z. and {Knapp}, G.~R. and {Kent}, S.},
-    title = "{The SDSS Imaging Pipelines}",
-booktitle = {Astronomical Data Analysis Software and Systems X},
-     year = 2001,
-   series = {Astronomical Society of the Pacific Conference Series},
-   volume = 238,
-   eprint = {astro-ph/0101420},
-   editor = {{Harnden}, Jr., F.~R. and {Primini}, F.~A. and {Payne}, H.~E.},
-    pages = {269},
-   adsurl = {http://adsabs.harvard.edu/abs/2001ASPC..238..269L},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1963BAAA....6...41S,
-   author = {{S{\'e}rsic}, J.~L.},
-    title = "{Influence of the atmospheric and instrumental dispersion on the brightness distribution in a galaxy}",
-  journal = {Boletin de la Asociacion Argentina de Astronomia La Plata Argentina},
-     year = 1963,
-   volume = 6,
-    pages = {41},
-   adsurl = {http://adsabs.harvard.edu/abs/1963BAAA....6...41S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1976ApJ...209L...1P,
-   author = {{Petrosian}, V.},
-    title = "{Surface brightness and evolution of galaxies}",
-  journal = {\apjl},
- keywords = {Astronomical Models, Galactic Evolution, Luminous Intensity, Red Shift, Surface Properties, Big Bang Cosmology, Cosmology, Hubble Diagram, Iterative Solution, Point Sources},
-     year = 1976,
-    month = oct,
-   volume = 209,
-    pages = {L1-L5},
-      doi = {10.1086/182253},
-   adsurl = {http://adsabs.harvard.edu/abs/1976ApJ...209L...1P},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2006ApJ...644...30B,
-   author = {{Blakeslee}, J.~P. and {Holden}, B.~P. and {Franx}, M. and {Rosati}, P. and {Bouwens}, R.~J. and {Demarco}, R. and {Ford}, H.~C. and {Homeier}, N.~L. and {Illingworth}, G.~D. and {Jee}, M.~J. and {Mei}, S. and {Menanteau}, F. and {Meurer}, G.~R. and {Postman}, M. and {Tran}, K.-V.~H.},
-    title = "{Clusters at Half Hubble Time: Galaxy Structure and Colors in RX J0152.7-1357 and MS 1054-03}",
-  journal = {\apj},
-   eprint = {astro-ph/0603058},
- keywords = {Cosmology: Observations, Galaxies: Clusters: Individual: Alphanumeric: MS 1054-0321, galaxies: clusters: individual (RX J0152.7-1357), Galaxies: Elliptical and Lenticular, cD, Galaxies: Evolution},
-     year = 2006,
-    month = jun,
-   volume = 644,
-    pages = {30-53},
-      doi = {10.1086/503539},
-   adsurl = {http://adsabs.harvard.edu/abs/2006ApJ...644...30B},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1995ApJ...451L...1S,
-   author = {{Schade}, D. and {Lilly}, S.~J. and {Crampton}, D. and {Hammer}, F. and {Le Fevre}, O. and {Tresse}, L.},
-    title = "{Canada-France Redshift Survey: Hubble Space Telescope Imaging of High-Redshift Field Galaxies}",
-  journal = {\apjl},
-   eprint = {astro-ph/9507028},
- keywords = {GALAXIES: EVOLUTION, GALAXIES: FUNDAMENTAL PARAMETERS},
-     year = 1995,
-    month = sep,
-   volume = 451,
-    pages = {L1},
-      doi = {10.1086/309677},
-   adsurl = {http://adsabs.harvard.edu/abs/1995ApJ...451L...1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{2002ApJS..142....1S,
-   author = {{Simard}, L. and {Willmer}, C.~N.~A. and {Vogt}, N.~P. and {Sarajedini}, V.~L. and {Phillips}, A.~C. and {Weiner}, B.~J. and {Koo}, D.~C. and {Im}, M. and {Illingworth}, G.~D. and {Faber}, S.~M.},
-    title = "{The DEEP Groth Strip Survey. II. Hubble Space Telescope Structural Parameters of Galaxies in the Groth Strip}",
-  journal = {\apjs},
-   eprint = {astro-ph/0205025},
- keywords = {Galaxies: Evolution, Galaxies: Fundamental Parameters, Galaxies: High-Redshift},
-     year = 2002,
-    month = sep,
-   volume = 142,
-    pages = {1-33},
-      doi = {10.1086/341399},
-   adsurl = {http://adsabs.harvard.edu/abs/2002ApJS..142....1S},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-@ARTICLE{1948AnAp...11..247D,
-   author = {{de Vaucouleurs}, G.},
-    title = "{Recherches sur les Nebuleuses Extragalactiques}",
-  journal = {Annales d'Astrophysique},
-     year = 1948,
-    month = jan,
-   volume = 11,
-    pages = {247},
-   adsurl = {http://adsabs.harvard.edu/abs/1948AnAp...11..247D},
-  adsnote = {Provided by the SAO/NASA Astrophysics Data System}
-}
-
-
