John MacFarlane
e0984a43a9
Add built-in citation support using new citeproc library.
...
This deprecates the use of the external pandoc-citeproc
filter; citation processing is now built in to pandoc.
* Add dependency on citeproc library.
* Add Text.Pandoc.Citeproc module (and some associated unexported
modules under Text.Pandoc.Citeproc). Exports `processCitations`.
[API change]
* Add data files needed for Text.Pandoc.Citeproc: default.csl
in the data directory, and a citeproc directory that is just
used at compile-time. Note that we've added file-embed as a mandatory
rather than a conditional depedency, because of the biblatex
localization files. We might eventually want to use readDataFile
for this, but it would take some code reorganization.
* Text.Pandoc.Loging: Add `CiteprocWarning` to `LogMessage` and use it
in `processCitations`. [API change]
* Add tests from the pandoc-citeproc package as command tests (including
some tests pandoc-citeproc did not pass).
* Remove instructions for building pandoc-citeproc from CI and
release binary build instructions. We will no longer distribute
pandoc-citeproc.
* Markdown reader: tweak abbreviation support. Don't insert a
nonbreaking space after a potential abbreviation if it comes right before
a note or citation. This messes up several things, including citeproc's
moving of note citations.
* Add `csljson` as and input and output format. This allows pandoc
to convert between `csljson` and other bibliography formats,
and to generate formatted versions of CSL JSON bibliographies.
* Add module Text.Pandoc.Writers.CslJson, exporting `writeCslJson`. [API
change]
* Add module Text.Pandoc.Readers.CslJson, exporting `readCslJson`. [API
change]
* Added `bibtex`, `biblatex` as input formats. This allows pandoc
to convert between BibLaTeX and BibTeX and other bibliography formats,
and to generated formatted versions of BibTeX/BibLaTeX bibliographies.
* Add module Text.Pandoc.Readers.BibTeX, exporting `readBibTeX` and
`readBibLaTeX`. [API change]
* Make "standalone" implicit if output format is a bibliography format.
This is needed because pandoc readers for bibliography formats put
the bibliographic information in the `references` field of metadata;
and unless standalone is specified, metadata gets ignored.
(TODO: This needs improvement. We should trigger standalone for the
reader when the input format is bibliographic, and for the writer
when the output format is markdown.)
* Carry over `citationNoteNum` to `citationNoteNumber`. This was just
ignored in pandoc-citeproc.
* Text.Pandoc.Filter: Add `CiteprocFilter` constructor to Filter.
[API change] This runs the processCitations transformation.
We need to treat it like a filter so it can be placed
in the sequence of filter runs (after some, before others).
In FromYAML, this is parsed from `citeproc` or `{type: citeproc}`,
so this special filter may be specified either way in a defaults file
(or by `citeproc: true`, though this gives no control of positioning
relative to other filters). TODO: we need to add something to the
manual section on defaults files for this.
* Add deprecation warning if `upandoc-citeproc` filter is used.
* Add `--citeproc/-C` option to trigger citation processing.
This behaves like a filter and will be positioned
relative to filters as they appear on the command line.
* Rewrote the manual on citatations, adding a dedicated Citations
section which also includes some information formerly found in
the pandoc-citeproc man page.
* Look for CSL styles in the `csl` subdirectory of the pandoc user data
directory. This changes the old pandoc-citeproc behavior, which looked
in `~/.csl`. Users can simply symlink `~/.csl` to the `csl`
subdirectory of their pandoc user data directory if they want
the old behavior.
* Add support for CSL bibliography entry formatting to LaTeX, HTML,
Ms writers. Added CSL-related CSS to styles.html.
2020-09-21 10:15:50 -07:00
..
2020-07-21 10:20:15 -07:00
2017-10-24 09:53:29 -07:00
2017-06-27 15:03:16 +02:00
2017-10-23 23:01:37 -07:00
2017-07-07 12:36:00 +02:00
2017-07-07 12:36:00 +02:00
2019-02-01 21:17:46 -08:00
2017-07-07 12:36:00 +02:00
2020-04-11 09:57:59 -07:00
2020-07-23 11:11:28 -07:00
2019-09-08 22:20:19 -07:00
2017-10-23 23:01:37 -07:00
2019-10-10 09:15:40 -07:00
2020-04-15 23:03:22 -04:00
2020-02-12 17:43:55 -08:00
2017-05-24 23:23:08 +02:00
2017-06-20 11:21:32 +02:00
2017-08-19 15:45:01 -07:00
2017-08-25 22:04:57 -07:00
2017-09-17 13:01:27 -07:00
2017-05-25 12:57:31 +02:00
2018-03-28 08:59:34 -07:00
2019-05-29 09:43:50 +02:00
2017-08-16 09:47:25 -07:00
2017-07-07 12:36:00 +02:00
2018-10-11 09:58:25 -07:00
2017-07-07 12:36:00 +02:00
2019-07-20 17:12:53 -07:00
2020-04-15 23:03:22 -04:00
2018-08-05 09:56:43 -07:00
2018-07-02 19:07:28 +03:00
2019-05-29 09:43:50 +02:00
2018-10-07 12:21:43 -07:00
2017-09-07 22:10:13 -07:00
2017-08-19 15:45:01 -07:00
2020-04-15 23:03:22 -04:00
2019-06-21 18:27:26 +02:00
2019-09-02 21:03:05 -07:00
2019-08-25 14:24:31 -07:00
2017-08-10 15:01:14 -07:00
2020-04-15 23:03:22 -04:00
2018-08-17 20:57:36 -07:00
2017-06-23 00:37:13 +02:00
2017-08-16 10:24:46 -07:00
2018-08-15 10:25:12 -07:00
2018-10-17 17:26:37 -07:00
2020-07-01 14:54:52 +02:00
2017-05-25 09:35:25 +02:00
2020-09-02 11:06:26 -07:00
2017-10-31 10:57:20 -07:00
2017-05-18 13:20:32 +02:00
2018-04-19 13:47:16 -07:00
2017-07-13 20:56:59 +02:00
2017-05-24 22:41:47 +02:00
2017-05-27 23:18:45 +02:00
2020-04-15 23:03:22 -04:00
2020-04-15 23:03:22 -04:00
2017-06-01 12:30:58 +02:00
2018-09-19 14:53:29 -07:00
2017-06-11 22:24:20 +02:00
2017-08-18 21:46:55 -07:00
2020-07-19 22:51:59 -07:00
2017-06-12 09:23:30 +02:00
2017-06-23 22:31:08 +02:00
2017-09-01 00:08:12 +02:00
2017-06-30 17:41:25 +02:00
2017-07-07 12:36:00 +02:00
2017-08-12 20:27:42 -07:00
2017-07-11 15:52:38 +02:00
2017-07-19 17:30:22 +02:00
2018-08-15 10:25:12 -07:00
2017-07-26 12:55:15 +02:00
2019-08-25 14:24:31 -07:00
2017-08-07 21:00:57 -07:00
2017-08-18 10:13:41 -07:00
2017-08-27 17:09:55 -07:00
2017-08-27 17:09:55 -07:00
2017-09-12 08:58:47 -07:00
2017-12-22 10:36:37 -08:00
2018-08-15 10:25:12 -07:00
2017-10-08 21:57:26 -07:00
2018-01-25 11:56:28 -08:00
2017-10-16 22:51:25 -07:00
2017-10-16 22:05:34 -07:00
2017-10-16 20:54:43 -07:00
2017-10-16 20:39:19 -07:00
2018-10-07 12:21:43 -07:00
2017-11-01 09:27:51 -07:00
2017-10-30 11:04:40 -07:00
2019-05-29 09:43:50 +02:00
2019-09-08 22:20:19 -07:00
2017-10-31 21:14:38 -07:00
2020-07-19 22:51:59 -07:00
2017-11-08 21:54:23 -08:00
2020-04-15 23:03:22 -04:00
2017-11-13 21:12:04 -08:00
2017-11-13 21:19:38 -08:00
2017-11-14 22:08:14 -08:00
2017-11-29 21:30:13 -08:00
2017-12-03 20:15:40 -08:00
2020-04-15 23:03:22 -04:00
2017-12-06 16:05:50 -08:00
2017-12-08 16:34:15 -08:00
2017-12-14 12:48:43 -08:00
2018-08-15 10:25:12 -07:00
2017-12-27 12:26:15 -08:00
2019-07-18 22:31:03 -07:00
2017-12-21 16:36:29 +03:00
2017-12-19 13:30:48 +03:00
2017-12-23 09:42:04 +01:00
2019-09-08 22:34:10 -07:00
2017-12-24 13:02:18 -08:00
2017-12-26 10:57:57 -08:00
2017-12-28 08:41:53 -08:00
2019-04-30 22:32:52 -07:00
2018-01-10 12:07:33 -08:00
2018-01-13 12:22:25 -08:00
2018-01-14 15:11:11 -08:00
2018-01-20 11:10:09 -08:00
2018-01-20 14:44:08 -08:00
2018-10-05 22:21:20 -07:00
2018-10-22 23:36:44 -07:00
2020-04-15 23:03:22 -04:00
2018-02-17 23:06:54 -08:00
2018-10-07 12:37:08 -07:00
2019-10-09 15:05:22 -07:00
2018-03-02 09:33:18 -08:00
2019-07-19 10:32:59 -07:00
2018-03-14 17:33:00 -07:00
2019-07-13 16:55:41 -07:00
2020-04-15 23:03:22 -04:00
2018-10-07 12:21:43 -07:00
2020-07-19 22:51:59 -07:00
2019-09-22 11:33:09 -07:00
2018-07-12 19:37:37 +02:00
2018-10-23 21:44:07 -07:00
2018-06-01 09:25:10 -07:00
2018-05-08 09:14:58 -07:00
2018-04-21 13:06:57 -07:00
2020-04-15 23:03:22 -04:00
2018-04-25 23:04:08 -07:00
2018-04-25 23:04:08 -07:00
2018-04-26 12:23:25 -07:00
2018-09-29 10:57:11 -07:00
2018-11-25 22:29:54 -08:00
2018-05-09 10:00:34 -07:00
2018-05-09 10:37:04 -07:00
2018-05-15 09:19:13 -07:00
2018-05-30 12:49:01 -07:00
2019-07-22 15:32:49 -07:00
2020-07-01 14:54:52 +02:00
2019-09-08 22:20:19 -07:00
2018-10-07 11:44:11 -07:00
2018-06-28 13:35:54 +02:00
2018-11-11 20:45:38 -08:00
2018-07-15 15:14:40 -07:00
2018-06-30 11:45:49 +02:00
2018-08-14 00:03:55 -07:00
2018-08-15 10:25:12 -07:00
2019-08-25 14:24:31 -07:00
2020-05-02 17:08:16 -07:00
2019-01-08 11:36:33 -08:00
2018-08-06 12:32:04 -07:00
2018-08-07 09:26:58 -07:00
2018-08-12 16:46:48 -07:00
2019-09-19 16:09:38 -07:00
2018-08-17 15:22:47 -07:00
2018-08-22 12:43:15 +03:00
2018-08-21 21:03:43 -07:00
2018-08-29 14:40:04 -07:00
2018-09-07 09:41:17 -07:00
2018-10-31 21:51:20 -07:00
2018-09-26 08:49:13 +02:00
2018-09-16 20:40:32 -07:00
2018-09-19 14:53:29 -07:00
2018-09-20 11:15:03 -07:00
2018-09-25 20:49:13 -07:00
2019-07-20 10:17:49 -07:00
2018-10-08 20:47:09 -07:00
2018-10-29 22:20:14 -07:00
2020-04-15 23:03:22 -04:00
2018-11-02 21:35:49 -07:00
2018-11-06 22:57:11 -08:00
2018-11-25 22:50:16 -08:00
2018-11-12 09:43:12 -08:00
2020-04-15 23:03:22 -04:00
2018-11-15 22:36:01 -08:00
2020-09-21 10:10:37 -07:00
2019-08-25 14:24:31 -07:00
2018-12-04 09:24:15 -08:00
2020-07-01 14:54:52 +02:00
2019-11-15 23:09:53 -08:00
2018-12-31 21:20:56 -08:00
2019-05-12 14:49:52 +02:00
2019-01-09 22:19:26 -08:00
2019-01-09 22:19:26 -08:00
2019-01-02 10:31:13 -08:00
2019-01-22 21:39:26 -08:00
2019-01-21 20:54:12 -08:00
2019-02-04 10:22:02 -08:00
2019-02-25 17:33:54 -08:00
2019-02-15 22:34:32 -08:00
2019-02-23 15:40:06 -07:00
2019-03-18 16:53:36 -07:00
2019-12-27 13:08:22 -08:00
2019-03-22 11:55:41 -07:00
2019-03-17 18:02:59 -07:00
2019-03-17 18:15:47 -07:00
2019-03-29 10:04:22 -07:00
2019-09-04 09:24:42 -07:00
2019-04-02 17:59:47 -07:00
2019-06-07 10:03:10 -07:00
2019-06-04 21:20:11 -07:00
2019-04-15 09:48:11 -07:00
2019-09-24 15:23:59 -07:00
2019-11-03 07:17:05 -08:00
2019-05-01 16:56:37 -07:00
2019-05-21 12:19:59 -04:00
2019-05-22 15:21:15 -07:00
2019-06-10 15:02:48 -07:00
2019-06-08 12:25:34 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2019-06-03 09:51:19 -07:00
2019-06-04 08:39:54 -07:00
2019-06-10 14:42:08 -07:00
2019-06-10 14:47:04 -07:00
2019-06-11 20:47:29 -07:00
2019-07-10 18:35:01 -07:00
2019-07-13 16:41:43 -07:00
2020-08-31 21:22:03 +02:00
2019-07-13 15:51:33 -07:00
2020-07-01 14:54:52 +02:00
2020-08-31 21:22:03 +02:00
2019-07-22 15:29:07 -07:00
2020-05-18 22:45:44 -07:00
2019-09-02 18:48:37 -07:00
2019-08-14 11:13:18 -07:00
2019-08-14 14:34:44 -07:00
2019-08-23 10:15:42 -07:00
2019-10-10 10:00:45 -07:00
2019-10-10 10:00:45 -07:00
2019-08-24 09:41:25 -07:00
2019-08-23 09:16:54 -07:00
2020-04-15 23:03:22 -04:00
2020-04-15 23:03:22 -04:00
2019-08-27 10:15:00 -07:00
2019-09-09 21:33:16 -07:00
2019-09-22 22:00:20 -07:00
2019-11-11 08:55:58 -08:00
2019-10-16 09:08:12 -07:00
2019-10-15 09:49:09 -07:00
2019-10-11 10:00:33 -07:00
2020-02-08 09:38:07 -08:00
2019-11-02 12:44:48 -07:00
2019-11-02 09:40:08 -07:00
2019-10-29 21:24:58 -07:00
2020-09-21 10:15:50 -07:00
2019-10-28 21:14:01 -07:00
2019-11-11 09:08:52 -08:00
2019-11-14 06:21:00 -08:00
2019-11-07 23:08:05 -08:00
2019-11-13 10:10:55 -08:00
2019-11-15 23:09:53 -08:00
2019-11-14 07:48:19 -08:00
2019-11-19 22:33:14 -08:00
2019-11-25 07:31:28 -08:00
2019-12-07 14:20:41 -08:00
2019-12-17 14:13:05 -08:00
2019-12-27 13:08:22 -08:00
2020-01-07 10:11:46 -08:00
2020-01-07 11:11:23 -08:00
2020-01-08 08:43:51 -08:00
2020-01-10 08:26:33 -08:00
2020-01-12 15:18:37 -08:00
2020-02-03 08:52:07 -08:00
2020-02-05 09:48:42 -08:00
2020-02-05 10:08:18 -08:00
2020-02-10 09:00:21 -08:00
2020-06-23 11:12:40 -07:00
2020-04-24 16:54:52 -07:00
2020-04-11 10:40:59 -07:00
2020-04-15 09:23:04 -07:00
2020-04-17 22:42:21 -07:00
2020-04-22 23:04:43 -07:00
2020-05-12 14:37:07 -07:00
2020-05-20 07:45:14 -07:00
2020-06-23 08:27:19 -07:00
2020-07-21 10:20:15 -07:00
2020-09-10 14:48:35 -07:00
2020-09-21 10:15:50 -07:00
2019-11-14 06:21:00 -08:00
2018-08-15 10:25:12 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2019-09-03 11:28:20 -07:00
2019-11-14 06:21:00 -08:00
2018-06-01 09:25:10 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2019-11-14 06:21:00 -08:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:10:37 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2017-05-20 23:09:08 +02:00
2020-04-15 23:03:22 -04:00
2017-07-25 13:13:24 +02:00
2019-11-14 06:21:00 -08:00
2019-11-14 06:21:00 -08:00
2019-11-14 06:21:00 -08:00
2020-09-21 10:15:50 -07:00
2018-07-15 16:02:46 -07:00
2019-09-08 22:20:19 -07:00
2018-06-13 11:12:10 -07:00
2020-07-19 22:51:59 -07:00
2020-09-21 10:15:50 -07:00
2018-08-15 10:25:12 -07:00
2017-07-22 19:22:56 +02:00
2019-05-25 18:36:56 +03:00
2020-09-21 10:15:50 -07:00
2018-10-15 11:46:31 -07:00
2017-11-09 23:22:44 -05:00
2017-05-20 23:09:08 +02:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2017-06-01 09:50:51 +02:00
2017-10-31 11:31:35 -07:00
2017-06-11 07:47:42 +02:00
2020-04-15 23:03:22 -04:00
2020-09-21 10:15:50 -07:00
2020-04-07 09:25:52 -07:00
2020-09-15 17:59:03 -07:00
2020-09-21 10:15:50 -07:00
2018-10-25 22:12:14 -07:00
2019-11-14 18:42:55 -08:00
2019-11-02 11:08:26 -07:00
2019-07-18 22:31:03 -07:00
2019-12-05 09:17:28 -08:00
2018-11-25 22:29:54 -08:00
2020-09-21 10:15:50 -07:00
2019-11-07 10:48:38 -08:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2019-07-18 22:31:03 -07:00
2020-02-12 17:43:55 -08:00
2017-12-14 12:48:43 -08:00
2020-09-21 10:15:50 -07:00
2020-09-21 10:15:50 -07:00
2019-12-17 11:59:52 -08:00
2019-03-28 17:39:22 -07:00
2019-12-05 09:59:50 -08:00
2018-04-02 09:33:29 -07:00
2020-09-21 10:15:50 -07:00
2017-05-20 23:09:08 +02:00
2017-05-20 23:09:08 +02:00
2017-10-23 23:01:37 -07:00
2020-09-10 09:11:52 -07:00
2020-04-15 23:03:22 -04:00
2019-12-05 09:32:40 -08:00
2019-01-31 22:50:51 -08:00
2019-12-17 11:59:52 -08:00
2017-08-12 13:40:28 -07:00
2020-09-21 10:15:50 -07:00
2019-05-29 09:43:50 +02:00
2018-08-15 10:25:12 -07:00
2018-09-15 17:06:10 +02:00
2018-09-15 17:06:10 +02:00
2017-11-11 10:17:53 -05:00
2020-09-21 10:15:50 -07:00