diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..db41603 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,11 @@ +{ + "permissions": { + "allow": [ + "Bash(awk *)", + "Bash(cat *)", + "Bash(grep *)", + "Bash(uv sync)", + "Bash(uv run pelican *)" + ] + } +} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..aa4ddd0 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + + - name: Install uv + uses: astral-sh/setup-uv@v7 + with: + enable-cache: true + + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: "3.10" + + - name: Install dependencies + run: uv sync + + - name: Build site + run: uv run pelican content -s publishconf.py -o output -v diff --git a/.gitignore b/.gitignore index b7faf40..d4252d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,207 +1,10 @@ -# Byte-compiled / optimized / DLL files +# Python __pycache__/ *.py[codz] -*$py.class -# C extensions -*.so +# uv +.venv/ -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py.cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock -#poetry.toml - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. -# https://pdm-project.org/en/latest/usage/project/#working-with-version-control -#pdm.lock -#pdm.toml -.pdm-python -.pdm-build/ - -# pixi -# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. -#pixi.lock -# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one -# in the .venv directory. It is recommended not to include this directory in version control. -.pixi - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.envrc -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# Abstra -# Abstra is an AI-powered process automation framework. -# Ignore directories containing user credentials, local state, and settings. -# Learn more at https://abstra.io/docs -.abstra/ - -# Visual Studio Code -# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore -# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore -# and can be added to the global gitignore or merged into this file. However, if you prefer, -# you could uncomment the following to ignore the entire vscode folder -# .vscode/ - -# Ruff stuff: -.ruff_cache/ - -# PyPI configuration file -.pypirc - -# Cursor -# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to -# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data -# refer to https://docs.cursor.com/context/ignore-files -.cursorignore -.cursorindexingignore - -# Marimo -marimo/_static/ -marimo/_lsp/ -__marimo__/ +# Pelican +output/ +.cache/ diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..886e2b0 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,28 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Commands + +| Task | Command | +|---|---| +| Install dependencies | `uv sync` | +| Build (dev) | `uv run pelican content` | +| Build, serve, and watch | `uv run pelican --listen` | +| Production build | `uv run pelican content -s publishconf.py` | + +There is no Makefile or tasks.py — all tasks run via `uv run`. + +## Configuration split + +`pelicanconf.py` is the development config: `SITEURL = ""` and `RELATIVE_URLS = True`. `publishconf.py` imports from it and overrides for production: absolute `SITEURL`, Atom feeds enabled, and `DELETE_OUTPUT_DIRECTORY = True`. + +When editing site-wide settings, be careful which config file needs to change — production-only settings (feeds, absolute URLs) belong in `publishconf.py`; everything else in `pelicanconf.py`. + +## Theme + +The [Attila](https://github.com/arulrajnet/attila) theme is installed as a Python package via `pyproject.toml` (pinned to a specific git commit). Its path is resolved at runtime with `attila.get_path()` in `pelicanconf.py`. To update the theme, change the commit SHA in `pyproject.toml` and run `uv sync`. + +## CI + +The GitHub Actions workflow (`.github/workflows/build.yml`) only verifies the build succeeds — it does not deploy the site. diff --git a/README.md b/README.md index 0cd0516..7b472dc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,21 @@ # diffraction -immersed in the electromagnetic waves + +*immersed in the electromagnetic waves* + +A static site built with [Pelican](https://getpelican.com) and the [Attila](https://github.com/arulrajnet/attila) theme. + +## Setup + +Install dependencies into a local virtual environment: + +```bash +uv sync +``` + +## Usage + +| Task | Command | +|---|---| +| Build | `uv run pelican content` | +| Build, serve, and watch for changes | `uv run pelican --listen` | +| Production build | `uv run pelican content -s publishconf.py` | diff --git a/content/.gitkeep b/content/.gitkeep new file mode 100644 index 0000000..c6c4dac --- /dev/null +++ b/content/.gitkeep @@ -0,0 +1 @@ +This file exists to force git to track the empty content directory. diff --git a/content/blog.md b/content/blog.md new file mode 100644 index 0000000..29cb64d --- /dev/null +++ b/content/blog.md @@ -0,0 +1,7 @@ +Title: Blog +Date: 2024-09-16 17:51 +Author: +Slug: blog +Status: published + +[diffraction.pt/blog/](https://diffraction.pt/blog/) diff --git a/content/camera-phone/a-dog-barking-in-the-distance.md b/content/camera-phone/a-dog-barking-in-the-distance.md new file mode 100644 index 0000000..734695c --- /dev/null +++ b/content/camera-phone/a-dog-barking-in-the-distance.md @@ -0,0 +1,10 @@ +Title: a dog barking in the distance +Date: 2012-04-25 23:42 +Author: paulo.ribeiro +Category: camera phone +Slug: a-dog-barking-in-the-distance +Status: published + +![a dog barking in the distance](https://diffraction.pt/blog/images/photos/12/a_dog_barking_in_the_distance_i.jpg) + +![a dog barking in the distance](https://diffraction.pt/blog/images/photos/12/a_dog_barking_in_the_distance_ii.jpg) diff --git a/content/camera-phone/a-little-lie.md b/content/camera-phone/a-little-lie.md new file mode 100644 index 0000000..7a25634 --- /dev/null +++ b/content/camera-phone/a-little-lie.md @@ -0,0 +1,8 @@ +Title: a little lie +Date: 2014-07-05 00:08 +Author: paulo.ribeiro +Category: camera phone +Slug: a-little-lie +Status: published + +![a little lie](https://diffraction.pt/blog/images/photos/14/a_little_lie.jpg) diff --git a/content/camera-phone/a-world-apart.md b/content/camera-phone/a-world-apart.md new file mode 100644 index 0000000..98d0735 --- /dev/null +++ b/content/camera-phone/a-world-apart.md @@ -0,0 +1,12 @@ +Title: a world apart +Date: 2018-08-04 08:41 +Author: paulo.ribeiro +Category: camera phone +Slug: a-world-apart +Status: published + +![a world apart](https://diffraction.pt/blog/images/photos/18/a_world_apart_i.jpg) + +![a world apart](https://diffraction.pt/blog/images/photos/18/a_world_apart_ii.jpg) + +![a world apart](https://diffraction.pt/blog/images/photos/18/a_world_apart_iii.jpg) diff --git a/content/camera-phone/at-rest-still.md b/content/camera-phone/at-rest-still.md new file mode 100644 index 0000000..fab3718 --- /dev/null +++ b/content/camera-phone/at-rest-still.md @@ -0,0 +1,10 @@ +Title: at rest, still +Date: 2013-04-20 21:07 +Author: paulo.ribeiro +Category: camera phone +Slug: at-rest-still +Status: published + +![at rest, still](https://diffraction.pt/blog/images/photos/13/at_rest_still_i.jpg) + +![at rest, still](https://diffraction.pt/blog/images/photos/13/at_rest_still_ii.jpg) diff --git a/content/camera-phone/cutoff.md b/content/camera-phone/cutoff.md new file mode 100644 index 0000000..156f4c6 --- /dev/null +++ b/content/camera-phone/cutoff.md @@ -0,0 +1,10 @@ +Title: cutoff +Date: 2015-11-26 20:43 +Author: paulo.ribeiro +Category: camera phone +Slug: cutoff +Status: published + +![cutoff](https://diffraction.pt/blog/images/photos/15/cutoff_i.jpg) + +![cutoff](https://diffraction.pt/blog/images/photos/15/cutoff_ii.jpg) diff --git a/content/camera-phone/das-horas-crescentes.md b/content/camera-phone/das-horas-crescentes.md new file mode 100644 index 0000000..bd598eb --- /dev/null +++ b/content/camera-phone/das-horas-crescentes.md @@ -0,0 +1,16 @@ +Title: das horas crescentes +Date: 2023-09-08 16:19 +Author: paulo.ribeiro +Category: camera phone +Slug: das-horas-crescentes +Status: published + +![das horas crescentes](https://diffraction.pt/blog/images/photos/23/das_horas_crescentes_i.jpg) + +![das horas crescentes](https://diffraction.pt/blog/images/photos/23/das_horas_crescentes_ii.jpg) + +![das horas crescentes](https://diffraction.pt/blog/images/photos/23/das_horas_crescentes_iii.jpg) + +![das horas crescentes](https://diffraction.pt/blog/images/photos/23/das_horas_crescentes_iv.jpg) + +[+](/blog/2023/08/25/das-tardes-passadas/) diff --git a/content/camera-phone/desde-o-fim.md b/content/camera-phone/desde-o-fim.md new file mode 100644 index 0000000..23b2a6e --- /dev/null +++ b/content/camera-phone/desde-o-fim.md @@ -0,0 +1,12 @@ +Title: desde o fim +Date: 2018-07-01 19:38 +Author: paulo.ribeiro +Category: camera phone +Slug: desde-o-fim +Status: published + +![desde o fim](https://diffraction.pt/blog/images/photos/18/desde_o_fim_i.jpg) + +![desde o fim](https://diffraction.pt/blog/images/photos/18/desde_o_fim_ii.jpg) + +![desde o fim](https://diffraction.pt/blog/images/photos/18/desde_o_fim_iii.jpg) diff --git a/content/camera-phone/dry-land.md b/content/camera-phone/dry-land.md new file mode 100644 index 0000000..e8e7100 --- /dev/null +++ b/content/camera-phone/dry-land.md @@ -0,0 +1,8 @@ +Title: dry land +Date: 2015-06-21 20:50 +Author: paulo.ribeiro +Category: camera phone +Slug: dry-land +Status: published + +![dry land](https://diffraction.pt/blog/images/photos/15/dry_land.jpg) diff --git a/content/camera-phone/elsewhere.md b/content/camera-phone/elsewhere.md new file mode 100644 index 0000000..0f61c4a --- /dev/null +++ b/content/camera-phone/elsewhere.md @@ -0,0 +1,10 @@ +Title: elsewhere +Date: 2015-12-19 22:55 +Author: paulo.ribeiro +Category: camera phone +Slug: elsewhere +Status: published + +![elsewhere](https://diffraction.pt/blog/images/photos/15/elsewhere_i.jpg) + +![elsewhere](https://diffraction.pt/blog/images/photos/15/elsewhere_ii.jpg) diff --git a/content/camera-phone/freezing-air-through-our-throats.md b/content/camera-phone/freezing-air-through-our-throats.md new file mode 100644 index 0000000..0a55400 --- /dev/null +++ b/content/camera-phone/freezing-air-through-our-throats.md @@ -0,0 +1,12 @@ +Title: freezing air through our throats +Date: 2012-01-09 23:27 +Author: paulo.ribeiro +Category: camera phone +Slug: freezing-air-through-our-throats +Status: published + +![freezing air through our throats](https://diffraction.pt/blog/images/photos/12/freezing_air_through_our_throats_i.jpg) + +![freezing air through our throats](https://diffraction.pt/blog/images/photos/12/freezing_air_through_our_throats_ii.jpg) + +![freezing air through our throats](https://diffraction.pt/blog/images/photos/12/freezing_air_through_our_throats_iii.jpg) diff --git a/content/camera-phone/further.md b/content/camera-phone/further.md new file mode 100644 index 0000000..ffa657d --- /dev/null +++ b/content/camera-phone/further.md @@ -0,0 +1,8 @@ +Title: further +Date: 2012-04-06 00:36 +Author: paulo.ribeiro +Category: camera phone +Slug: further +Status: published + +![further](https://diffraction.pt/blog/images/photos/12/further.jpg) diff --git a/content/camera-phone/of-wavering-claviculae.md b/content/camera-phone/of-wavering-claviculae.md new file mode 100644 index 0000000..9734e08 --- /dev/null +++ b/content/camera-phone/of-wavering-claviculae.md @@ -0,0 +1,10 @@ +Title: of wavering claviculae +Date: 2017-09-23 16:01 +Author: paulo.ribeiro +Category: camera phone +Slug: of-wavering-claviculae +Status: published + +![of wavering claviculae](https://diffraction.pt/blog/images/photos/17/of_wavering_claviculae_i.jpg) + +![of wavering claviculae](https://diffraction.pt/blog/images/photos/17/of_wavering_claviculae_ii.jpg) diff --git a/content/camera-phone/on-my-own.md b/content/camera-phone/on-my-own.md new file mode 100644 index 0000000..45d621f --- /dev/null +++ b/content/camera-phone/on-my-own.md @@ -0,0 +1,10 @@ +Title: on my own +Date: 2013-08-03 20:32 +Author: paulo.ribeiro +Category: camera phone +Slug: on-my-own +Status: published + +![on my own](https://diffraction.pt/blog/images/photos/13/on_my_own_i.jpg) + +![on my own](https://diffraction.pt/blog/images/photos/13/on_my_own_ii.jpg) diff --git a/content/camera-phone/rabbit-in-your-headlights.md b/content/camera-phone/rabbit-in-your-headlights.md new file mode 100644 index 0000000..577ec79 --- /dev/null +++ b/content/camera-phone/rabbit-in-your-headlights.md @@ -0,0 +1,8 @@ +Title: rabbit in your headlights +Date: 2016-11-19 19:53 +Author: paulo.ribeiro +Category: camera phone +Slug: rabbit-in-your-headlights +Status: published + +![rabbit in your headlights](https://diffraction.pt/blog/images/photos/16/rabbit_in_your_headlights.jpg) diff --git a/content/camera-phone/soaring.md b/content/camera-phone/soaring.md new file mode 100644 index 0000000..d63b514 --- /dev/null +++ b/content/camera-phone/soaring.md @@ -0,0 +1,8 @@ +Title: soaring +Date: 2012-01-09 23:01 +Author: paulo.ribeiro +Category: camera phone +Slug: soaring +Status: published + +![soaring](https://diffraction.pt/blog/images/photos/12/soaring.jpg) diff --git a/content/camera-phone/sos.md b/content/camera-phone/sos.md new file mode 100644 index 0000000..4792a1c --- /dev/null +++ b/content/camera-phone/sos.md @@ -0,0 +1,14 @@ +Title: sós +Date: 2013-11-14 23:59 +Author: paulo.ribeiro +Category: camera phone +Slug: sos +Status: published + +![sós](https://diffraction.pt/blog/images/photos/13/sos_i.jpg) + +![sós](https://diffraction.pt/blog/images/photos/13/sos_ii.jpg) + +![sós](https://diffraction.pt/blog/images/photos/13/sos_iii.jpg) + +![sós](https://diffraction.pt/blog/images/photos/13/sos_iv.jpg) diff --git a/content/camera-phone/sound-of-the-wind.md b/content/camera-phone/sound-of-the-wind.md new file mode 100644 index 0000000..1064208 --- /dev/null +++ b/content/camera-phone/sound-of-the-wind.md @@ -0,0 +1,8 @@ +Title: sound of the wind +Date: 2019-11-15 16:43 +Author: paulo.ribeiro +Category: camera phone +Slug: sound-of-the-wind +Status: published + +![sound of the wind](https://diffraction.pt/blog/images/photos/19/sound_of_the_wind.jpg) diff --git a/content/camera-phone/the-familiar-traces.md b/content/camera-phone/the-familiar-traces.md new file mode 100644 index 0000000..6ae9915 --- /dev/null +++ b/content/camera-phone/the-familiar-traces.md @@ -0,0 +1,12 @@ +Title: the familiar traces +Date: 2015-08-15 23:50 +Author: paulo.ribeiro +Category: camera phone +Slug: the-familiar-traces +Status: published + +![the familiar traces](https://diffraction.pt/blog/images/photos/15/the_familiar_traces_i.png) + +![the familiar traces](https://diffraction.pt/blog/images/photos/15/the_familiar_traces_ii.png) + +![the familiar traces](https://diffraction.pt/blog/images/photos/15/the_familiar_traces_iii.png) diff --git a/content/camera-phone/the-warmth.md b/content/camera-phone/the-warmth.md new file mode 100644 index 0000000..ef8e653 --- /dev/null +++ b/content/camera-phone/the-warmth.md @@ -0,0 +1,18 @@ +Title: the warmth +Date: 2012-07-15 17:15 +Author: paulo.ribeiro +Category: camera phone +Slug: the-warmth +Status: published + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_i.jpg) + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_ii.jpg) + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_iii.jpg) + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_iv.jpg) + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_v.jpg) + +![the warmth](https://diffraction.pt/blog/images/photos/12/the_warmth_vi.jpg) diff --git a/content/camera-phone/through-perseverance.md b/content/camera-phone/through-perseverance.md new file mode 100644 index 0000000..a6a567e --- /dev/null +++ b/content/camera-phone/through-perseverance.md @@ -0,0 +1,8 @@ +Title: through perseverance +Date: 2017-09-10 22:20 +Author: paulo.ribeiro +Category: camera phone +Slug: through-perseverance +Status: published + +![through perseverance](https://diffraction.pt/blog/images/photos/17/through_perseverance.jpg) diff --git a/content/camera-phone/vale.md b/content/camera-phone/vale.md new file mode 100644 index 0000000..cbe4e53 --- /dev/null +++ b/content/camera-phone/vale.md @@ -0,0 +1,10 @@ +Title: vale +Date: 2021-08-04 13:12 +Author: paulo.ribeiro +Category: camera phone +Slug: vale +Status: published + +![vale](https://diffraction.pt/blog/images/photos/21/vale_i.jpg) + +![vale](https://diffraction.pt/blog/images/photos/21/vale_ii.jpg) diff --git a/content/camera-phone/voltar-a-respirar.md b/content/camera-phone/voltar-a-respirar.md new file mode 100644 index 0000000..4432d03 --- /dev/null +++ b/content/camera-phone/voltar-a-respirar.md @@ -0,0 +1,8 @@ +Title: voltar a respirar +Date: 2018-11-18 19:37 +Author: paulo.ribeiro +Category: camera phone +Slug: voltar-a-respirar +Status: published + +![voltar a respirar](https://diffraction.pt/blog/images/photos/18/voltar_a_respirar.jpg) diff --git a/content/english/5000-mg.md b/content/english/5000-mg.md new file mode 100644 index 0000000..5e7b616 --- /dev/null +++ b/content/english/5000-mg.md @@ -0,0 +1,14 @@ +Title: 5000 mg +Date: 2005-06-21 06:25 +Author: paulo.ribeiro +Category: english, images +Slug: 5000-mg +Status: published + +![5000 mg](https://diffraction.pt/blog/images/photos/05/5000_mg.jpg) + +
+ +how to cure insomnia in **10 easy steps** + +
diff --git a/content/english/driving-as-slow-as-i-can.md b/content/english/driving-as-slow-as-i-can.md new file mode 100644 index 0000000..1bde647 --- /dev/null +++ b/content/english/driving-as-slow-as-i-can.md @@ -0,0 +1,16 @@ +Title: driving as slow as i can +Date: 2005-04-02 22:56 +Author: paulo.ribeiro +Category: english, images +Slug: driving-as-slow-as-i-can +Status: published + +as if you were at the end of the freeway + +![driving as slow as i can](https://diffraction.pt/blog/images/photos/05/driving_as_slow_as_i_can_i.jpg) + +![driving as slow as i can](https://diffraction.pt/blog/images/photos/05/driving_as_slow_as_i_can_ii.jpg) + +![driving as slow as i can](https://diffraction.pt/blog/images/photos/05/driving_as_slow_as_i_can_iii.jpg) + +as if the rain could cleanse all that shouldn't be. diff --git a/content/english/fourteen.md b/content/english/fourteen.md new file mode 100644 index 0000000..354a225 --- /dev/null +++ b/content/english/fourteen.md @@ -0,0 +1,30 @@ +Title: fourteen +Date: 2005-02-14 08:26 +Author: paulo.ribeiro +Category: english +Slug: fourteen +Status: published + +you're a box of yummy chocolates +i'm a pack of integral biscuits + +you're the fresh winter moonlight +i'm the rain-filled clouds + +your hair is angel wing's feathers +mine is like that of a brush + +you go to parties and celebrate +i stay at home doing my homework + +you're as gentle as a warm breeze +i'm a terrible car crash + +your voice is a forgotten lullaby +mine sounds like the alarm clock buzzing, + +pulling me into another empty day +without you. +  +  +*(2001)* diff --git a/content/english/happy-birthday.md b/content/english/happy-birthday.md new file mode 100644 index 0000000..48dda27 --- /dev/null +++ b/content/english/happy-birthday.md @@ -0,0 +1,8 @@ +Title: happy birthday... +Date: 2004-08-09 20:03 +Author: paulo.ribeiro +Category: english +Slug: happy-birthday +Status: published + +...to myself... diff --git a/content/english/hated-by-many.md b/content/english/hated-by-many.md new file mode 100644 index 0000000..55057ae --- /dev/null +++ b/content/english/hated-by-many.md @@ -0,0 +1,12 @@ +Title: hated by many +Date: 2005-03-28 03:15 +Author: paulo.ribeiro +Category: english, images +Slug: hated-by-many +Status: published + +![hated by many i](https://diffraction.pt/blog/images/photos/05/hated_by_many_i.jpg) + +admired [by](/blog/2004/08/08/today-it-rains/) [a](/blog/2004/11/17/desolacao/) [few](/blog/2005/01/13/the-box/) + +![hated by many ii](https://diffraction.pt/blog/images/photos/05/hated_by_many_ii.jpg) diff --git a/content/english/high-speed.md b/content/english/high-speed.md new file mode 100644 index 0000000..fb07af0 --- /dev/null +++ b/content/english/high-speed.md @@ -0,0 +1,10 @@ +Title: high speed +Date: 2005-01-04 15:05 +Author: paulo.ribeiro +Category: english, images +Slug: high-speed +Status: published + +![high speed](https://diffraction.pt/blog/images/photos/05/high_speed.jpg) + +letting the pain slip off the rearview mirror diff --git a/content/english/how-i-feel.md b/content/english/how-i-feel.md new file mode 100644 index 0000000..97cd951 --- /dev/null +++ b/content/english/how-i-feel.md @@ -0,0 +1,8 @@ +Title: how i feel. +Date: 2005-06-06 00:42 +Author: paulo.ribeiro +Category: english, scanner +Slug: how-i-feel +Status: published + +![how i feel.](https://diffraction.pt/blog/images/photos/05/how_i_feel.png) diff --git a/content/english/ignition.md b/content/english/ignition.md new file mode 100644 index 0000000..68dd915 --- /dev/null +++ b/content/english/ignition.md @@ -0,0 +1,15 @@ +Title: ignition +Date: 2005-02-19 02:44 +Author: paulo.ribeiro +Category: english, images +Slug: ignition +Status: published + +![ignition](https://diffraction.pt/blog/images/photos/05/ignition.jpg) + +nothing +can +stop +me +now +. diff --git a/content/english/ill-meet-you.md b/content/english/ill-meet-you.md new file mode 100644 index 0000000..41f110a --- /dev/null +++ b/content/english/ill-meet-you.md @@ -0,0 +1,10 @@ +Title: i'll meet you +Date: 2006-03-15 23:34 +Author: paulo.ribeiro +Category: english, images +Slug: ill-meet-you +Status: published + +![i'll meet you](https://diffraction.pt/blog/images/photos/06/ill_meet_you.jpg) + +...there. diff --git a/content/english/indifference.md b/content/english/indifference.md new file mode 100644 index 0000000..389a244 --- /dev/null +++ b/content/english/indifference.md @@ -0,0 +1,20 @@ +Title: indifference +Date: 2005-01-31 17:33 +Author: paulo.ribeiro +Category: english, images +Slug: indifference +Status: published + +![indifference](https://diffraction.pt/blog/images/photos/05/indifference.jpg) + +d  i  f  f  u  s  e +dust we are +adrift in heavy waters + +...serenity +floods the lungs; +the horizon slowly dims + +s     t    a   t  i c +fades in +at the back of my head\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_. diff --git a/content/english/krane.md b/content/english/krane.md new file mode 100644 index 0000000..21e1232 --- /dev/null +++ b/content/english/krane.md @@ -0,0 +1,12 @@ +Title: kräne +Date: 2005-07-03 01:14 +Author: paulo.ribeiro +Category: english, holga +Slug: krane +Status: published + +*"you've got two things against you: one is desire the second is memory"* + +![kräne](https://diffraction.pt/blog/images/photos/05/krane.jpg) + +i fill my head with noise leaving no space for thoughts of her diff --git a/content/english/la-mer.md b/content/english/la-mer.md new file mode 100644 index 0000000..6ec80d4 --- /dev/null +++ b/content/english/la-mer.md @@ -0,0 +1,21 @@ +Title: la mer +Date: 2004-11-28 01:48 +Author: paulo.ribeiro +Category: english, images +Slug: la-mer +Status: published + +and when the day arrives +i'll become the sky +and i'll become the sea + +and the sea will come to kiss me +for i am going +home + +![la mer](https://diffraction.pt/blog/images/photos/04/la_mer.jpg) + +nothing can stop me now +  +  +*nine inch nails* diff --git a/content/english/murmurs-of-the-sky.md b/content/english/murmurs-of-the-sky.md new file mode 100644 index 0000000..1fb9dca --- /dev/null +++ b/content/english/murmurs-of-the-sky.md @@ -0,0 +1,10 @@ +Title: murmurs of the sky +Date: 2004-08-28 17:06 +Author: paulo.ribeiro +Category: english, images +Slug: murmurs-of-the-sky +Status: published + +![murmurs of the sky](https://diffraction.pt/blog/images/photos/04/murmurs_of_the_sky.jpg) + +the sound waves left nothing behind. diff --git a/content/english/my-sister.md b/content/english/my-sister.md new file mode 100644 index 0000000..3611756 --- /dev/null +++ b/content/english/my-sister.md @@ -0,0 +1,10 @@ +Title: my sister... +Date: 2004-08-14 22:02 +Author: paulo.ribeiro +Category: english, images +Slug: my-sister +Status: published + +![my sister](https://diffraction.pt/blog/images/photos/04/my_sister.jpg) + +...playing with my palm. diff --git a/content/english/no-alarms-and-no-surprises.md b/content/english/no-alarms-and-no-surprises.md new file mode 100644 index 0000000..a95dac4 --- /dev/null +++ b/content/english/no-alarms-and-no-surprises.md @@ -0,0 +1,10 @@ +Title: no alarms and no surprises +Date: 2004-12-02 14:16 +Author: paulo.ribeiro +Category: english, images +Slug: no-alarms-and-no-surprises +Status: published + +![no alarms and no surprises](https://diffraction.pt/blog/images/photos/04/no_alarms_and_no_surprises.jpg) + +...please diff --git a/content/english/on-a-sad-end-of-afternoon.md b/content/english/on-a-sad-end-of-afternoon.md new file mode 100644 index 0000000..a4e98a1 --- /dev/null +++ b/content/english/on-a-sad-end-of-afternoon.md @@ -0,0 +1,20 @@ +Title: on a sad end of afternoon +Date: 2005-05-17 20:46 +Author: paulo.ribeiro +Category: english, polaroid +Slug: on-a-sad-end-of-afternoon +Status: published + +  + +
+ +the space-time continuum was bent between our fingers + +
+ +
+ +![on a sad end of afternoon](https://diffraction.pt/blog/images/photos/05/on_a_sad_end_of_afternoon.jpg) + +
diff --git a/content/english/reverberation.md b/content/english/reverberation.md new file mode 100644 index 0000000..4ba7967 --- /dev/null +++ b/content/english/reverberation.md @@ -0,0 +1,10 @@ +Title: reverberation +Date: 2005-02-11 02:40 +Author: paulo.ribeiro +Category: english, images +Slug: reverberation +Status: published + +![reverberation](https://diffraction.pt/blog/images/photos/05/reverberation.jpg) + +distant voices fade away as the world becomes yet a darker place diff --git a/content/english/road-to-emptiness.md b/content/english/road-to-emptiness.md new file mode 100644 index 0000000..cd07d2c --- /dev/null +++ b/content/english/road-to-emptiness.md @@ -0,0 +1,10 @@ +Title: road to emptiness +Date: 2004-10-23 23:17 +Author: paulo.ribeiro +Category: english, images +Slug: road-to-emptiness +Status: published + +![road to emptiness](https://diffraction.pt/blog/images/photos/04/road_to_emptiness.jpg) + +the absolute void lies ahead. diff --git a/content/english/saturday-afternoon.md b/content/english/saturday-afternoon.md new file mode 100644 index 0000000..a5bdec9 --- /dev/null +++ b/content/english/saturday-afternoon.md @@ -0,0 +1,10 @@ +Title: saturday afternoon +Date: 2005-03-05 18:13 +Author: paulo.ribeiro +Category: english, images +Slug: saturday-afternoon +Status: published + +![saturday afternoon](https://diffraction.pt/blog/images/photos/05/saturday_afternoon.jpg) + +for a few moments i felt indestructible. diff --git a/content/english/somewhere.md b/content/english/somewhere.md new file mode 100644 index 0000000..a8ae006 --- /dev/null +++ b/content/english/somewhere.md @@ -0,0 +1,18 @@ +Title: somewhere +Date: 2005-07-02 11:26 +Author: paulo.ribeiro +Category: english, polaroid +Slug: somewhere +Status: published + +
+ +![somewhere](https://diffraction.pt/blog/images/photos/05/somewhere.jpg) + +
+ +
+ +there's a dream factory after the woods + +
diff --git a/content/english/stain.md b/content/english/stain.md new file mode 100644 index 0000000..4e151d8 --- /dev/null +++ b/content/english/stain.md @@ -0,0 +1,16 @@ +Title: stain +Date: 2005-06-25 12:35 +Author: paulo.ribeiro +Category: english, images +Slug: stain +Status: published + +![stain](https://diffraction.pt/blog/images/photos/05/stain.jpg) + +| | | | | | +| --------- | ---- | ------ | ----- | ----------------- | +| vanishing | like | an ink | stain | down the plughole | +| | like | an ink | stain | down the plughole | +| | | an ink | stain | down the plughole | +| | | an ink | stain | | +| | | | stain | | diff --git a/content/english/stained.md b/content/english/stained.md new file mode 100644 index 0000000..0d1dbca --- /dev/null +++ b/content/english/stained.md @@ -0,0 +1,18 @@ +Title: stained +Date: 2005-06-28 01:47 +Author: paulo.ribeiro +Category: english, images +Slug: stained +Status: published + +![stained](https://diffraction.pt/blog/images/photos/05/stained.jpg) + +
+ +if only bleach would cleanse what never was + +
+ +  +  +[+](/blog/2005/06/25/stain/) diff --git a/content/english/sweet-honey-from-the-bees.md b/content/english/sweet-honey-from-the-bees.md new file mode 100644 index 0000000..c7a1696 --- /dev/null +++ b/content/english/sweet-honey-from-the-bees.md @@ -0,0 +1,10 @@ +Title: sweet honey from the bees +Date: 2004-12-29 14:09 +Author: paulo.ribeiro +Category: english, images +Slug: sweet-honey-from-the-bees +Status: published + +![sweet honey from the bees](https://diffraction.pt/blog/images/photos/04/sweet_honey_from_the_bees.jpg) + +for a split second there was a line of sight between our retinae diff --git a/content/english/that-which-fails-me.md b/content/english/that-which-fails-me.md new file mode 100644 index 0000000..a4e2208 --- /dev/null +++ b/content/english/that-which-fails-me.md @@ -0,0 +1,10 @@ +Title: that which fails me +Date: 2005-05-30 03:24 +Author: paulo.ribeiro +Category: english, images +Slug: that-which-fails-me +Status: published + +![that which fails me](https://diffraction.pt/blog/images/photos/05/that_which_fails_me.jpg) + +no one taught me the dangers of trying to find happiness on tree tops. diff --git a/content/english/the-celebration.md b/content/english/the-celebration.md new file mode 100644 index 0000000..5545783 --- /dev/null +++ b/content/english/the-celebration.md @@ -0,0 +1,10 @@ +Title: the celebration... +Date: 2004-08-16 00:48 +Author: paulo.ribeiro +Category: english, images +Slug: the-celebration +Status: published + +![the celebration](https://diffraction.pt/blog/images/photos/04/the_celebration.jpg) + +...i didn't attend. diff --git a/content/english/the-day-is-yours.md b/content/english/the-day-is-yours.md new file mode 100644 index 0000000..89e50ed --- /dev/null +++ b/content/english/the-day-is-yours.md @@ -0,0 +1,10 @@ +Title: the day is yours +Date: 2004-11-04 15:56 +Author: paulo.ribeiro +Category: english, images +Slug: the-day-is-yours +Status: published + +![the day is yours](https://diffraction.pt/blog/images/photos/04/the_day_is_yours.jpg) + +...but the night's all mine diff --git a/content/english/the-guy.md b/content/english/the-guy.md new file mode 100644 index 0000000..e228b48 --- /dev/null +++ b/content/english/the-guy.md @@ -0,0 +1,12 @@ +Title: the guy... +Date: 2004-08-16 00:50 +Author: paulo.ribeiro +Category: english, images +Slug: the-guy +Status: published + +![the guy](https://diffraction.pt/blog/images/photos/04/the_guy.jpg) + +...who really +really +wanted to open the green doors. diff --git a/content/english/the-lava-lamp.md b/content/english/the-lava-lamp.md new file mode 100644 index 0000000..122a160 --- /dev/null +++ b/content/english/the-lava-lamp.md @@ -0,0 +1,14 @@ +Title: the lava lamp +Date: 2004-08-10 01:48 +Author: paulo.ribeiro +Category: english, images +Slug: the-lava-lamp +Status: published + +![the lava lamp](https://diffraction.pt/blog/images/photos/04/the_lava_lamp.jpg) + +the quiet, familiar songs +twirl into a kaleidoscope of tranquility + +inviting serenity to permeate the incense +smoke-filled room... diff --git a/content/english/the-lump-in-my-throat.md b/content/english/the-lump-in-my-throat.md new file mode 100644 index 0000000..868820c --- /dev/null +++ b/content/english/the-lump-in-my-throat.md @@ -0,0 +1,8 @@ +Title: the lump in my throat +Date: 2004-08-23 00:20 +Author: paulo.ribeiro +Category: english +Slug: the-lump-in-my-throat +Status: published + +as the night comes it only gets worse diff --git a/content/english/the-wind.md b/content/english/the-wind.md new file mode 100644 index 0000000..b82a1d2 --- /dev/null +++ b/content/english/the-wind.md @@ -0,0 +1,12 @@ +Title: the wind +Date: 2005-01-28 11:54 +Author: paulo.ribeiro +Category: english, images +Slug: the-wind +Status: published + +"i feel like running away. far away." +"alone?" +"you can come. i'll sleep while you drive. i don't want to know where i am when i wake up." + +![the wind](https://diffraction.pt/blog/images/photos/05/the_wind.jpg) diff --git a/content/english/to-be-with-you.md b/content/english/to-be-with-you.md new file mode 100644 index 0000000..3fa6c2d --- /dev/null +++ b/content/english/to-be-with-you.md @@ -0,0 +1,12 @@ +Title: to be with you +Date: 2005-03-15 03:32 +Author: paulo.ribeiro +Category: english, images +Slug: to-be-with-you +Status: published + +is to forget all the rest. + +![to be with you](https://diffraction.pt/blog/images/photos/05/to_be_with_you.jpg) + +floating through end of afternoon traffic jams. diff --git a/content/english/twenty-five.md b/content/english/twenty-five.md new file mode 100644 index 0000000..b279c87 --- /dev/null +++ b/content/english/twenty-five.md @@ -0,0 +1,24 @@ +Title: 25 +Date: 2004-12-25 16:17 +Author: paulo.ribeiro +Category: english +Slug: twenty-five +Status: published + +feel that christmas spirit +covering us all +with calm silence + +the lonely wind fiddles +with the tree's decorations +while, in the distance, +snow flakes reflect lost hymns + +...makes me wish +i could fly away +up to the cold pole +leaving the blinking joy +and color celebrating behind. +  +  +*(1998)* diff --git a/content/english/untitled.md b/content/english/untitled.md new file mode 100644 index 0000000..0a30fdd --- /dev/null +++ b/content/english/untitled.md @@ -0,0 +1,10 @@ +Title: untitled +Date: 2005-01-23 08:29 +Author: paulo.ribeiro +Category: english, images +Slug: untitled +Status: published + +![untitled](https://diffraction.pt/blog/images/photos/05/untitled.jpg) + +longing to be a part... diff --git a/content/english/waiting-for-you.md b/content/english/waiting-for-you.md new file mode 100644 index 0000000..8419f41 --- /dev/null +++ b/content/english/waiting-for-you.md @@ -0,0 +1,14 @@ +Title: waiting for you +Date: 2005-02-06 15:34 +Author: paulo.ribeiro +Category: english, images +Slug: waiting-for-you +Status: published + +![waiting for you](https://diffraction.pt/blog/images/photos/05/waiting_for_you.jpg) + +i am praying for the raging flood +i am waiting for you to come +  +  +*cult of luna* diff --git a/content/english/wandering-thoughts.md b/content/english/wandering-thoughts.md new file mode 100644 index 0000000..2726f3c --- /dev/null +++ b/content/english/wandering-thoughts.md @@ -0,0 +1,16 @@ +Title: wandering thoughts +Date: 2005-03-31 11:04 +Author: paulo.ribeiro +Category: english, images +Slug: wandering-thoughts +Status: published + +alone. secluded. + +![wandering thoughts](https://diffraction.pt/blog/images/photos/05/wandering_thoughts.jpg) + +(another sip of tea.) +  +  +  +absent from this world. diff --git a/content/english/what-am-i-to-do-with-all-this-silence.md b/content/english/what-am-i-to-do-with-all-this-silence.md new file mode 100644 index 0000000..88c65ce --- /dev/null +++ b/content/english/what-am-i-to-do-with-all-this-silence.md @@ -0,0 +1,13 @@ +Title: what am i to do with all this silence? +Date: 2005-03-12 07:02 +Author: paulo.ribeiro +Category: english, images +Slug: what-am-i-to-do-with-all-this-silence +Status: published + +![what am i to do with all this silence?](https://diffraction.pt/blog/images/photos/05/what_am_i_to_do_with_all_this_silence_i.jpg) + +as the sun creeps up the window blinds +dust falls where it's supposed to land. + +![what am i to do with all this silence?](https://diffraction.pt/blog/images/photos/05/what_am_i_to_do_with_all_this_silence_ii.jpg) diff --git a/content/english/what-to-do.md b/content/english/what-to-do.md new file mode 100644 index 0000000..9c79b38 --- /dev/null +++ b/content/english/what-to-do.md @@ -0,0 +1,11 @@ +Title: what to do? +Date: 2004-08-27 17:15 +Author: paulo.ribeiro +Category: english, images +Slug: what-to-do +Status: published + +![what to do](https://diffraction.pt/blog/images/photos/04/what_to_do.jpg) + +when the only one who could pull you out of your misery +is the one who put you in that state in the first place diff --git a/content/english/white-blood.md b/content/english/white-blood.md new file mode 100644 index 0000000..14d655a --- /dev/null +++ b/content/english/white-blood.md @@ -0,0 +1,25 @@ +Title: white blood +Date: 2005-01-25 16:58 +Author: paulo.ribeiro +Category: english +Slug: white-blood +Status: published + +glacial flowing + +pleasure dissolved in pain +bleeding in gu sh  es, +*splat*tering the bathroom sink +sl i  d   i    n     g + +d +o +w +n + +the plughole + +draining guilt away +  +  +*(2001)* diff --git a/content/english/white-noise.md b/content/english/white-noise.md new file mode 100644 index 0000000..1068bd6 --- /dev/null +++ b/content/english/white-noise.md @@ -0,0 +1,10 @@ +Title: white noise +Date: 2004-08-20 18:53 +Author: paulo.ribeiro +Category: english, images +Slug: white-noise +Status: published + +![white noise](https://diffraction.pt/blog/images/photos/04/white_noise.jpg) + +a day without tv. diff --git a/content/english/yet-another-summer-afternoon-this-way-ends.md b/content/english/yet-another-summer-afternoon-this-way-ends.md new file mode 100644 index 0000000..9833f2e --- /dev/null +++ b/content/english/yet-another-summer-afternoon-this-way-ends.md @@ -0,0 +1,11 @@ +Title: yet another summer afternoon this way ends... +Date: 2004-08-13 21:15 +Author: paulo.ribeiro +Category: english, images +Slug: yet-another-summer-afternoon-this-way-ends +Status: published + +![yet another summer afternoon](https://diffraction.pt/blog/images/photos/04/yet_another_summer_afternoon.jpg) + +...without +you... diff --git a/content/holga/a-deafening-distance.md b/content/holga/a-deafening-distance.md new file mode 100644 index 0000000..bad1ff5 --- /dev/null +++ b/content/holga/a-deafening-distance.md @@ -0,0 +1,8 @@ +Title: a deafening distance +Date: 2008-03-26 23:38 +Author: paulo.ribeiro +Category: holga +Slug: a-deafening-distance +Status: published + +![a deafening distance](https://diffraction.pt/blog/images/photos/08/a_deafening_distance.jpg) diff --git a/content/holga/above-the-street.md b/content/holga/above-the-street.md new file mode 100644 index 0000000..7f5f751 --- /dev/null +++ b/content/holga/above-the-street.md @@ -0,0 +1,8 @@ +Title: above the street +Date: 2004-09-25 15:17 +Author: paulo.ribeiro +Category: holga +Slug: above-the-street +Status: published + +![above the street](https://diffraction.pt/blog/images/photos/04/above_the_street.jpg) diff --git a/content/holga/alameda.md b/content/holga/alameda.md new file mode 100644 index 0000000..e52a077 --- /dev/null +++ b/content/holga/alameda.md @@ -0,0 +1,8 @@ +Title: alameda +Date: 2005-01-26 16:13 +Author: paulo.ribeiro +Category: holga +Slug: alameda +Status: published + +![alameda](https://diffraction.pt/blog/images/photos/05/alameda.jpg) diff --git a/content/holga/all-that-never-was.md b/content/holga/all-that-never-was.md new file mode 100644 index 0000000..8498cb9 --- /dev/null +++ b/content/holga/all-that-never-was.md @@ -0,0 +1,8 @@ +Title: all that never was +Date: 2005-10-30 23:36 +Author: paulo.ribeiro +Category: holga +Slug: all-that-never-was +Status: published + +![all that never was](https://diffraction.pt/blog/images/photos/05/all_that_never_was.jpg) diff --git a/content/holga/bright.md b/content/holga/bright.md new file mode 100644 index 0000000..e49fc95 --- /dev/null +++ b/content/holga/bright.md @@ -0,0 +1,8 @@ +Title: bright +Date: 2008-04-12 23:33 +Author: paulo.ribeiro +Category: holga +Slug: bright +Status: published + +![bright](https://diffraction.pt/blog/images/photos/08/bright.jpg) diff --git a/content/holga/charcoal.md b/content/holga/charcoal.md new file mode 100644 index 0000000..6a6486a --- /dev/null +++ b/content/holga/charcoal.md @@ -0,0 +1,8 @@ +Title: charcoal +Date: 2008-02-27 21:33 +Author: paulo.ribeiro +Category: holga +Slug: charcoal +Status: published + +![charcoal](https://diffraction.pt/blog/images/photos/08/charcoal.jpg) diff --git a/content/holga/coimbra.md b/content/holga/coimbra.md new file mode 100644 index 0000000..3b85c0c --- /dev/null +++ b/content/holga/coimbra.md @@ -0,0 +1,10 @@ +Title: coimbra. +Date: 2006-04-25 22:46 +Author: paulo.ribeiro +Category: holga +Slug: coimbra +Status: published + +[![coimbra.](https://diffraction.pt/blog/images/photos/06/coimbra.jpg)](https://diffraction.pt/blog/images/photos/06/panoramas/coimbra.html) + +[full view +](https://diffraction.pt/blog/images/photos/06/panoramas/coimbra.html) diff --git a/content/holga/electromagnetism.md b/content/holga/electromagnetism.md new file mode 100644 index 0000000..973f8cf --- /dev/null +++ b/content/holga/electromagnetism.md @@ -0,0 +1,8 @@ +Title: electromagnetism +Date: 2004-09-17 19:07 +Author: paulo.ribeiro +Category: holga +Slug: electromagnetism +Status: published + +![electromagnetism](https://diffraction.pt/blog/images/photos/04/electromagnetism.jpg) diff --git a/content/holga/exhalo-un-ultimo-y-profundo-suspiro.md b/content/holga/exhalo-un-ultimo-y-profundo-suspiro.md new file mode 100644 index 0000000..27e095f --- /dev/null +++ b/content/holga/exhalo-un-ultimo-y-profundo-suspiro.md @@ -0,0 +1,14 @@ +Title: exhalo un último y profundo suspiro antes del ocaso +Date: 2005-11-19 02:41 +Author: paulo.ribeiro +Category: holga +Slug: exhalo-un-ultimo-y-profundo-suspiro +Status: published + +![exhalo un último y profundo suspiro antes del ocaso](https://diffraction.pt/blog/images/photos/05/exhalo_un_ultimo_y_profundo_suspiro.jpg) + +
+ +. + +
diff --git a/content/holga/ferryboats.md b/content/holga/ferryboats.md new file mode 100644 index 0000000..0b00d69 --- /dev/null +++ b/content/holga/ferryboats.md @@ -0,0 +1,8 @@ +Title: ferryboat(s) +Date: 2005-03-01 00:20 +Author: paulo.ribeiro +Category: holga +Slug: ferryboats +Status: published + +![ferryboat\(s\](https://diffraction.pt/blog/images/photos/05/ferryboat\(s\).jpg) diff --git a/content/holga/gone-out-to-sea.md b/content/holga/gone-out-to-sea.md new file mode 100644 index 0000000..a06940f --- /dev/null +++ b/content/holga/gone-out-to-sea.md @@ -0,0 +1,8 @@ +Title: gone out to sea +Date: 2006-01-01 16:39 +Author: paulo.ribeiro +Category: holga +Slug: gone-out-to-sea +Status: published + +![gone out to sea](https://diffraction.pt/blog/images/photos/06/gone_out_to_sea.jpg) diff --git a/content/holga/hypermarket.md b/content/holga/hypermarket.md new file mode 100644 index 0000000..590ce93 --- /dev/null +++ b/content/holga/hypermarket.md @@ -0,0 +1,8 @@ +Title: hypermarket +Date: 2005-04-10 11:08 +Author: paulo.ribeiro +Category: holga +Slug: hypermarket +Status: published + +![hypermarket](https://diffraction.pt/blog/images/photos/05/hypermarket.jpg) diff --git a/content/holga/into-oblivion.md b/content/holga/into-oblivion.md new file mode 100644 index 0000000..6338817 --- /dev/null +++ b/content/holga/into-oblivion.md @@ -0,0 +1,10 @@ +Title: into oblivion +Date: 2006-06-15 22:49 +Author: paulo.ribeiro +Category: holga +Slug: into-oblivion +Status: published + +![into oblivion](https://diffraction.pt/blog/images/photos/06/into_oblivion_i.jpg) + +![into oblivion](https://diffraction.pt/blog/images/photos/06/into_oblivion_ii.jpg) diff --git a/content/holga/looming.md b/content/holga/looming.md new file mode 100644 index 0000000..44098dd --- /dev/null +++ b/content/holga/looming.md @@ -0,0 +1,12 @@ +Title: looming +Date: 2013-12-03 22:50 +Author: paulo.ribeiro +Category: holga +Slug: looming +Status: published + +![looming](https://diffraction.pt/blog/images/photos/13/looming_i.jpg) + +![looming](https://diffraction.pt/blog/images/photos/13/looming_ii.jpg) + +![looming](https://diffraction.pt/blog/images/photos/13/looming_iii.jpg) diff --git a/content/holga/memories-undone.md b/content/holga/memories-undone.md new file mode 100644 index 0000000..63a7320 --- /dev/null +++ b/content/holga/memories-undone.md @@ -0,0 +1,10 @@ +Title: memories undone +Date: 2007-03-18 09:31 +Author: paulo.ribeiro +Category: holga +Slug: memories-undone +Status: published + +![memories undone](https://diffraction.pt/blog/images/photos/07/memories_undone_i.jpg) + +![memories undone](https://diffraction.pt/blog/images/photos/07/memories_undone_ii.jpg) diff --git a/content/holga/monastery-caravel.md b/content/holga/monastery-caravel.md new file mode 100644 index 0000000..7b575c8 --- /dev/null +++ b/content/holga/monastery-caravel.md @@ -0,0 +1,12 @@ +Title: monastery / caravel +Date: 2005-07-10 08:48 +Author: paulo.ribeiro +Category: holga +Slug: monastery-caravel +Status: published + +![monastery / caravel](https://diffraction.pt/blog/images/photos/05/monastery_caravel_i.jpg) + +![monastery / caravel](https://diffraction.pt/blog/images/photos/05/monastery_caravel_ii.jpg) + +![monastery / caravel](https://diffraction.pt/blog/images/photos/05/monastery_caravel_iii.jpg) diff --git a/content/holga/no-parking.md b/content/holga/no-parking.md new file mode 100644 index 0000000..524a644 --- /dev/null +++ b/content/holga/no-parking.md @@ -0,0 +1,8 @@ +Title: no parking +Date: 2005-05-15 18:12 +Author: paulo.ribeiro +Category: holga +Slug: no-parking +Status: published + +![no parking](https://diffraction.pt/blog/images/photos/05/no_parking.jpg) diff --git a/content/holga/north-tower.md b/content/holga/north-tower.md new file mode 100644 index 0000000..9b991e3 --- /dev/null +++ b/content/holga/north-tower.md @@ -0,0 +1,8 @@ +Title: north tower +Date: 2005-01-25 20:46 +Author: paulo.ribeiro +Category: holga +Slug: north-tower +Status: published + +![north tower](https://diffraction.pt/blog/images/photos/05/north_tower.jpg) diff --git a/content/holga/nutmeg.md b/content/holga/nutmeg.md new file mode 100644 index 0000000..7a83fde --- /dev/null +++ b/content/holga/nutmeg.md @@ -0,0 +1,8 @@ +Title: nutmeg +Date: 2004-09-10 21:17 +Author: paulo.ribeiro +Category: holga +Slug: nutmeg +Status: published + +![nutmeg](https://diffraction.pt/blog/images/photos/04/nutmeg.jpg) diff --git a/content/holga/primera-respiracion.md b/content/holga/primera-respiracion.md new file mode 100644 index 0000000..5338cec --- /dev/null +++ b/content/holga/primera-respiracion.md @@ -0,0 +1,10 @@ +Title: primera respiración después del ahogo +Date: 2005-11-24 07:00 +Author: paulo.ribeiro +Category: holga +Slug: primera-respiracion +Status: published + +![primera respiración después del ahogo](https://diffraction.pt/blog/images/photos/05/primera_respiracion_i.jpg) + +![primera respiración después del ahogo](https://diffraction.pt/blog/images/photos/05/primera_respiracion_ii.jpg) diff --git a/content/holga/rarefaction.md b/content/holga/rarefaction.md new file mode 100644 index 0000000..c6170cc --- /dev/null +++ b/content/holga/rarefaction.md @@ -0,0 +1,10 @@ +Title: rarefaction +Date: 2005-10-29 16:40 +Author: paulo.ribeiro +Category: holga +Slug: rarefaction +Status: published + +![rarefaction](https://diffraction.pt/blog/images/photos/05/rarefaction_i.jpg) + +![rarefaction](https://diffraction.pt/blog/images/photos/05/rarefaction_ii.jpg) diff --git a/content/holga/summer-vacations.md b/content/holga/summer-vacations.md new file mode 100644 index 0000000..7c00667 --- /dev/null +++ b/content/holga/summer-vacations.md @@ -0,0 +1,8 @@ +Title: summer vacations +Date: 2005-01-10 14:03 +Author: paulo.ribeiro +Category: holga +Slug: summer-vacations +Status: published + +![summer vacations](https://diffraction.pt/blog/images/photos/05/summer_vacations.jpg) diff --git a/content/holga/swelling-of-the-lower-limbs.md b/content/holga/swelling-of-the-lower-limbs.md new file mode 100644 index 0000000..2d9c148 --- /dev/null +++ b/content/holga/swelling-of-the-lower-limbs.md @@ -0,0 +1,10 @@ +Title: swelling of the lower limbs +Date: 2008-04-25 16:40 +Author: paulo.ribeiro +Category: holga +Slug: swelling-of-the-lower-limbs +Status: published + +![swelling of the lower limbs](https://diffraction.pt/blog/images/photos/08/swelling_of_the_lower_limbs_i.jpg) + +![swelling of the lower limbs](https://diffraction.pt/blog/images/photos/08/swelling_of_the_lower_limbs_ii.jpg) diff --git a/content/holga/the-wait.md b/content/holga/the-wait.md new file mode 100644 index 0000000..56b705b --- /dev/null +++ b/content/holga/the-wait.md @@ -0,0 +1,8 @@ +Title: the wait. +Date: 2009-02-19 23:39 +Author: paulo.ribeiro +Category: holga +Slug: the-wait +Status: published + +![the wait.](https://diffraction.pt/blog/images/photos/09/the_wait..jpg) diff --git a/content/holga/undertow.md b/content/holga/undertow.md new file mode 100644 index 0000000..50a7b21 --- /dev/null +++ b/content/holga/undertow.md @@ -0,0 +1,17 @@ +Title: undertow +Date: 2006-01-22 12:16 +Author: paulo.ribeiro +Category: holga +Slug: undertow +Status: published + +![undertow](https://diffraction.pt/blog/images/photos/06/undertow_i.jpg) + +![undertow](https://diffraction.pt/blog/images/photos/06/undertow_ii.jpg) + +![undertow](https://diffraction.pt/blog/images/photos/06/undertow_iii.jpg) + +![undertow](https://diffraction.pt/blog/images/photos/06/undertow_iv.jpg) +  +  +[+](/blog/2006/01/01/gone-out-to-sea/) diff --git a/content/images/070423.md b/content/images/070423.md new file mode 100644 index 0000000..805d4dc --- /dev/null +++ b/content/images/070423.md @@ -0,0 +1,8 @@ +Title: 07.04.23 +Date: 2007-08-28 23:03 +Author: paulo.ribeiro +Category: images +Slug: 070423 +Status: published + +![07.04.23](https://diffraction.pt/blog/images/photos/07/07.04.23.jpg) diff --git a/content/images/103.md b/content/images/103.md new file mode 100644 index 0000000..dcdddfb --- /dev/null +++ b/content/images/103.md @@ -0,0 +1,8 @@ +Title: 103 +Date: 2005-10-05 04:30 +Author: paulo.ribeiro +Category: images +Slug: 103 +Status: published + +![103](https://diffraction.pt/blog/images/photos/05/103.jpg) diff --git a/content/images/15-minute-stop.md b/content/images/15-minute-stop.md new file mode 100644 index 0000000..4e53f11 --- /dev/null +++ b/content/images/15-minute-stop.md @@ -0,0 +1,10 @@ +Title: 15 minute stop +Date: 2005-03-07 11:35 +Author: paulo.ribeiro +Category: images +Slug: 15-minute-stop +Status: published + +![15 minute stop](https://diffraction.pt/blog/images/photos/05/15_minute_stop_i.jpg) + +![15 minute stop](https://diffraction.pt/blog/images/photos/05/15_minute_stop_ii.jpg) diff --git a/content/images/3.md b/content/images/3.md new file mode 100644 index 0000000..4047361 --- /dev/null +++ b/content/images/3.md @@ -0,0 +1,10 @@ +Title: -3 +Date: 2005-03-22 22:14 +Author: paulo.ribeiro +Category: images +Slug: 3 +Status: published + +![-3](https://diffraction.pt/blog/images/photos/05/-3_i.jpg) + +![-3](https://diffraction.pt/blog/images/photos/05/-3_ii.jpg) diff --git a/content/images/38-40-n-9-03-w.md b/content/images/38-40-n-9-03-w.md new file mode 100644 index 0000000..47c7484 --- /dev/null +++ b/content/images/38-40-n-9-03-w.md @@ -0,0 +1,12 @@ +Title: 38°40' n, 9°03' w +Date: 2006-04-02 14:02 +Author: paulo.ribeiro +Category: images +Slug: 38-40-n-9-03-w +Status: published + +![38°40' n, 9°03' w](https://diffraction.pt/blog/images/photos/06/38-40_n_9-03_w_i.jpg) + +![38°40' n, 9°03' w](https://diffraction.pt/blog/images/photos/06/38-40_n_9-03_w_ii.jpg) + +![38°40' n, 9°03' w](https://diffraction.pt/blog/images/photos/06/38-40_n_9-03_w_iii.jpg) diff --git a/content/images/_.md b/content/images/_.md new file mode 100644 index 0000000..04b3302 --- /dev/null +++ b/content/images/_.md @@ -0,0 +1,10 @@ +Title: _ +Date: 2007-06-14 07:23 +Author: paulo.ribeiro +Category: images +Slug: _ +Status: published + +![\_](https://diffraction.pt/blog/images/photos/07/__i.jpg) + +![\_](https://diffraction.pt/blog/images/photos/07/__ii.jpg) diff --git a/content/images/a-beleza-dos-objectos-partidos.md b/content/images/a-beleza-dos-objectos-partidos.md new file mode 100644 index 0000000..8e3890b --- /dev/null +++ b/content/images/a-beleza-dos-objectos-partidos.md @@ -0,0 +1,14 @@ +Title: a beleza dos objectos partidos +Date: 2005-08-26 02:23 +Author: paulo.ribeiro +Category: images, portuguese +Slug: a-beleza-dos-objectos-partidos +Status: published + +disse que haveria de lutar por mim + +mas + +![a beleza dos objectos partidos](https://diffraction.pt/blog/images/photos/05/a_beleza_dos_objectos_partidos.jpg) + +tudo se esvanece. diff --git a/content/images/a-cappella.md b/content/images/a-cappella.md new file mode 100644 index 0000000..54cd40a --- /dev/null +++ b/content/images/a-cappella.md @@ -0,0 +1,12 @@ +Title: a cappella +Date: 2006-10-10 21:12 +Author: paulo.ribeiro +Category: images +Slug: a-cappella +Status: published + +*para o pedro.* + +![a cappella](https://diffraction.pt/blog/images/photos/06/a_cappella_i.jpg) + +![a cappella](https://diffraction.pt/blog/images/photos/06/a_cappella_ii.jpg) diff --git a/content/images/a-chuva.md b/content/images/a-chuva.md new file mode 100644 index 0000000..78dffbf --- /dev/null +++ b/content/images/a-chuva.md @@ -0,0 +1,14 @@ +Title: a chuva +Date: 2005-09-10 01:36 +Author: paulo.ribeiro +Category: images, portuguese +Slug: a-chuva +Status: published + +![a chuva](https://diffraction.pt/blog/images/photos/05/a_chuva_i.jpg) + +![a chuva](https://diffraction.pt/blog/images/photos/05/a_chuva_ii.jpg) + +![a chuva](https://diffraction.pt/blog/images/photos/05/a_chuva_iii.jpg) + +coloco as mãos uma sobre a outra e imagino que [uma delas é tua](http://diffraction.com.pt/blog/2005/05/17/on_a_sad_end_of_afternoon/) diff --git a/content/images/a-distancia-do-tempo.md b/content/images/a-distancia-do-tempo.md new file mode 100644 index 0000000..9ac8044 --- /dev/null +++ b/content/images/a-distancia-do-tempo.md @@ -0,0 +1,10 @@ +Title: à distância do tempo +Date: 2007-05-24 22:44 +Author: paulo.ribeiro +Category: images +Slug: a-distancia-do-tempo +Status: published + +![à distância do tempo](https://diffraction.pt/blog/images/photos/07/a_distancia_do_tempo.jpg) + +*para ti.* diff --git a/content/images/a-espera.md b/content/images/a-espera.md new file mode 100644 index 0000000..4174deb --- /dev/null +++ b/content/images/a-espera.md @@ -0,0 +1,12 @@ +Title: a espera +Date: 2005-09-08 09:12 +Author: paulo.ribeiro +Category: images, portuguese +Slug: a-espera +Status: published + +![a espera](https://diffraction.pt/blog/images/photos/05/a_espera_i.jpg) + +![a espera](https://diffraction.pt/blog/images/photos/05/a_espera_ii.jpg) + +surgiste dentre [o silêncio das palavras](http://diffraction.com.pt/blog/2005/04/05/um-primeiro-adeus/) diff --git a/content/images/a-flor-de-odeceixe.md b/content/images/a-flor-de-odeceixe.md new file mode 100644 index 0000000..e6bf6e3 --- /dev/null +++ b/content/images/a-flor-de-odeceixe.md @@ -0,0 +1,8 @@ +Title: a flor de odeceixe +Date: 2008-07-07 22:49 +Author: paulo.ribeiro +Category: images +Slug: a-flor-de-odeceixe +Status: published + +![a flor de odeceixe](https://diffraction.pt/blog/images/photos/08/a_flor_de_odeceixe.jpg) diff --git a/content/images/a-gas-station.md b/content/images/a-gas-station.md new file mode 100644 index 0000000..23ae6f4 --- /dev/null +++ b/content/images/a-gas-station.md @@ -0,0 +1,8 @@ +Title: a gas station +Date: 2004-11-25 14:50 +Author: paulo.ribeiro +Category: images +Slug: a-gas-station +Status: published + +![a gas station](https://diffraction.pt/blog/images/photos/04/a_gas_station.jpg) diff --git a/content/images/a-ramp.md b/content/images/a-ramp.md new file mode 100644 index 0000000..021ee79 --- /dev/null +++ b/content/images/a-ramp.md @@ -0,0 +1,8 @@ +Title: a ramp +Date: 2005-02-16 00:56 +Author: paulo.ribeiro +Category: images +Slug: a-ramp +Status: published + +![a ramp](https://diffraction.pt/blog/images/photos/05/a_ramp.jpg) diff --git a/content/images/a-sofa.md b/content/images/a-sofa.md new file mode 100644 index 0000000..79db9c2 --- /dev/null +++ b/content/images/a-sofa.md @@ -0,0 +1,8 @@ +Title: a sofa +Date: 2005-03-03 17:01 +Author: paulo.ribeiro +Category: images +Slug: a-sofa +Status: published + +![a sofa](https://diffraction.pt/blog/images/photos/05/a_sofa.jpg) diff --git a/content/images/a-vertigem-dos-carros-roubados.md b/content/images/a-vertigem-dos-carros-roubados.md new file mode 100644 index 0000000..15015c4 --- /dev/null +++ b/content/images/a-vertigem-dos-carros-roubados.md @@ -0,0 +1,10 @@ +Title: a vertigem dos carros roubados para irmos até à praia +Date: 2005-12-06 23:30 +Author: paulo.ribeiro +Category: images +Slug: a-vertigem-dos-carros-roubados +Status: published + +*para a marta.* + +![a vertigem dos carros roubados para irmos até à praia](https://diffraction.pt/blog/images/photos/05/a_vertigem_dos_carros_roubados.jpg) diff --git a/content/images/a100.md b/content/images/a100.md new file mode 100644 index 0000000..c20f00b --- /dev/null +++ b/content/images/a100.md @@ -0,0 +1,8 @@ +Title: a100 +Date: 2005-08-24 23:33 +Author: paulo.ribeiro +Category: images +Slug: a100 +Status: published + +![a100](https://diffraction.pt/blog/images/photos/05/a100.jpg) diff --git a/content/images/a320.md b/content/images/a320.md new file mode 100644 index 0000000..041dbd7 --- /dev/null +++ b/content/images/a320.md @@ -0,0 +1,8 @@ +Title: a320 +Date: 2005-08-19 17:40 +Author: paulo.ribeiro +Category: images +Slug: a320 +Status: published + +![a320](https://diffraction.pt/blog/images/photos/05/a320.jpg) diff --git a/content/images/abandoned-shopping-trolley-hotline.md b/content/images/abandoned-shopping-trolley-hotline.md new file mode 100644 index 0000000..e0498d8 --- /dev/null +++ b/content/images/abandoned-shopping-trolley-hotline.md @@ -0,0 +1,10 @@ +Title: abandoned shopping trolley hotline +Date: 2007-07-03 22:14 +Author: paulo.ribeiro +Category: images +Slug: abandoned-shopping-trolley-hotline +Status: published + +![abandoned shopping trolley hotline](https://diffraction.pt/blog/images/photos/07/abandoned_shopping_trolley_hotline_i.jpg) + +![abandoned shopping trolley hotline](https://diffraction.pt/blog/images/photos/07/abandoned_shopping_trolley_hotline_ii.jpg) diff --git a/content/images/acordar-2.md b/content/images/acordar-2.md new file mode 100644 index 0000000..c05c997 --- /dev/null +++ b/content/images/acordar-2.md @@ -0,0 +1,17 @@ +Title: acordar. +Date: 2006-03-20 00:33 +Author: paulo.ribeiro +Category: images, portuguese +Slug: acordar-2 +Status: published + +![acordar.](https://diffraction.pt/blog/images/photos/06/acordar_i.jpg) + +**tu**. +  +  +( p e r d e r  o  c o n t r o l o . ) + +![acordar.](https://diffraction.pt/blog/images/photos/06/acordar_ii.jpg) + +tornar a fechar os olhos. não pensar. diff --git a/content/images/aeon-lapse.md b/content/images/aeon-lapse.md new file mode 100644 index 0000000..72027ff --- /dev/null +++ b/content/images/aeon-lapse.md @@ -0,0 +1,8 @@ +Title: aeon lapse +Date: 2013-06-07 21:36 +Author: paulo.ribeiro +Category: images +Slug: aeon-lapse +Status: published + +![aeon lapse](https://diffraction.pt/blog/images/photos/13/aeon_lapse.jpg) diff --git a/content/images/after-the-thaw.md b/content/images/after-the-thaw.md new file mode 100644 index 0000000..152e2c0 --- /dev/null +++ b/content/images/after-the-thaw.md @@ -0,0 +1,8 @@ +Title: after the thaw +Date: 2009-12-15 09:10 +Author: paulo.ribeiro +Category: images +Slug: after-the-thaw +Status: published + +![after the thaw](https://diffraction.pt/blog/images/photos/09/after_the_thaw.jpg) diff --git a/content/images/all-that-could-have-been.md b/content/images/all-that-could-have-been.md new file mode 100644 index 0000000..1b330ee --- /dev/null +++ b/content/images/all-that-could-have-been.md @@ -0,0 +1,8 @@ +Title: all that could have been +Date: 2004-10-30 12:52 +Author: paulo.ribeiro +Category: images +Slug: all-that-could-have-been +Status: published + +![all that could have been](https://diffraction.pt/blog/images/photos/04/all_that_could_have_been.jpg) diff --git a/content/images/all-was-lost-from-the-start.md b/content/images/all-was-lost-from-the-start.md new file mode 100644 index 0000000..dd121e5 --- /dev/null +++ b/content/images/all-was-lost-from-the-start.md @@ -0,0 +1,8 @@ +Title: all was lost from the start +Date: 2005-12-13 22:20 +Author: paulo.ribeiro +Category: images +Slug: all-was-lost-from-the-start +Status: published + +![all was lost from the start](https://diffraction.pt/blog/images/photos/05/all_was_lost_from_the_start.jpg) diff --git a/content/images/and-the-night-mare-rides-on.md b/content/images/and-the-night-mare-rides-on.md new file mode 100644 index 0000000..da45e1e --- /dev/null +++ b/content/images/and-the-night-mare-rides-on.md @@ -0,0 +1,10 @@ +Title: and the night mare rides on +Date: 2012-04-28 23:13 +Author: paulo.ribeiro +Category: images +Slug: and-the-night-mare-rides-on +Status: published + +![and the night mare rides on](https://diffraction.pt/blog/images/photos/12/and_the_night_mare_rides_on_i.jpg) + +![and the night mare rides on](https://diffraction.pt/blog/images/photos/12/and_the_night_mare_rides_on_ii.jpg) diff --git a/content/images/apos-jantar-ii.md b/content/images/apos-jantar-ii.md new file mode 100644 index 0000000..0368be9 --- /dev/null +++ b/content/images/apos-jantar-ii.md @@ -0,0 +1,13 @@ +Title: após jantar ii +Date: 2005-06-30 01:40 +Author: paulo.ribeiro +Category: images +Slug: apos-jantar-ii +Status: published + +![após jantar](https://diffraction.pt/blog/images/photos/05/apos_jantar_ii_i.jpg) + +![após jantar](https://diffraction.pt/blog/images/photos/05/apos_jantar_ii_ii.jpg) + +*bairro alto. +à marta, ao nuno e ao ricardo.* diff --git a/content/images/aqueduto-dos-pegoes.md b/content/images/aqueduto-dos-pegoes.md new file mode 100644 index 0000000..87846f7 --- /dev/null +++ b/content/images/aqueduto-dos-pegoes.md @@ -0,0 +1,12 @@ +Title: aqueduto dos pegões +Date: 2012-12-18 23:49 +Author: paulo.ribeiro +Category: images +Slug: aqueduto-dos-pegoes +Status: published + +![aqueduto dos pegões](https://diffraction.pt/blog/images/photos/12/aqueduto_dos_pegoes_i.jpg) + +![aqueduto dos pegões](https://diffraction.pt/blog/images/photos/12/aqueduto_dos_pegoes_ii.jpg) + +![aqueduto dos pegões](https://diffraction.pt/blog/images/photos/12/aqueduto_dos_pegoes_iii.jpg) diff --git a/content/images/aqui.md b/content/images/aqui.md new file mode 100644 index 0000000..61b965e --- /dev/null +++ b/content/images/aqui.md @@ -0,0 +1,8 @@ +Title: aqui +Date: 2007-08-01 22:01 +Author: paulo.ribeiro +Category: images +Slug: aqui +Status: published + +![aqui](https://diffraction.pt/blog/images/photos/07/aqui.jpg) diff --git a/content/images/aragem.md b/content/images/aragem.md new file mode 100644 index 0000000..bc3d66b --- /dev/null +++ b/content/images/aragem.md @@ -0,0 +1,8 @@ +Title: aragem +Date: 2008-08-15 14:51 +Author: paulo.ribeiro +Category: images +Slug: aragem +Status: published + +![aragem](https://diffraction.pt/blog/images/photos/08/aragem.jpg) diff --git a/content/images/arco-do-cego.md b/content/images/arco-do-cego.md new file mode 100644 index 0000000..8943c5b --- /dev/null +++ b/content/images/arco-do-cego.md @@ -0,0 +1,12 @@ +Title: arco do cego +Date: 2005-10-22 02:57 +Author: paulo.ribeiro +Category: images +Slug: arco-do-cego +Status: published + +![arco do cego](https://diffraction.pt/blog/images/photos/05/arco_do_cego_i.jpg) + +![arco do cego](https://diffraction.pt/blog/images/photos/05/arco_do_cego_ii.jpg) + +![arco do cego](https://diffraction.pt/blog/images/photos/05/arco_do_cego_iii.jpg) diff --git a/content/images/arrival.md b/content/images/arrival.md new file mode 100644 index 0000000..693ff81 --- /dev/null +++ b/content/images/arrival.md @@ -0,0 +1,10 @@ +Title: arrival +Date: 2005-10-08 19:30 +Author: paulo.ribeiro +Category: images +Slug: arrival +Status: published + +![arrival](https://diffraction.pt/blog/images/photos/05/arrival.jpg) + +there's no arrival without a [departure](http://diffraction.com.pt/blog/2005/09/28/departure/) diff --git a/content/images/as-glaciers-thaw.md b/content/images/as-glaciers-thaw.md new file mode 100644 index 0000000..a479680 --- /dev/null +++ b/content/images/as-glaciers-thaw.md @@ -0,0 +1,8 @@ +Title: as glaciers thaw +Date: 2013-02-17 00:21 +Author: paulo.ribeiro +Category: images +Slug: as-glaciers-thaw +Status: published + +![as glaciers thaw](https://diffraction.pt/blog/images/photos/13/as_glaciers_thaw.jpg) diff --git a/content/images/as-horas-perfeitas.md b/content/images/as-horas-perfeitas.md new file mode 100644 index 0000000..e31f0cf --- /dev/null +++ b/content/images/as-horas-perfeitas.md @@ -0,0 +1,23 @@ +Title: as horas perfeitas +Date: 2005-09-06 08:09 +Author: paulo.ribeiro +Category: images, portuguese +Slug: as-horas-perfeitas +Status: published + +![as horas perfeitas](https://diffraction.pt/blog/images/photos/05/as_horas_perfeitas_i.jpg) + +![as horas perfeitas](https://diffraction.pt/blog/images/photos/05/as_horas_perfeitas_ii.jpg) + +os olhos fechados +são como um livro encapado. +receosos de folhear o que há dentro desse espaço. +as horas apertadas que guardo no peito, +não voltam. +aprisionadas à força, furadas com um cadeado que se fecha do lado de dentro. +as horas apertadas que guardo no peito. +perfeitas. +escondem o que fica por chorar. +  +  +*minês castanheira* diff --git a/content/images/as-pleasant-as-a-saturday-morning.md b/content/images/as-pleasant-as-a-saturday-morning.md new file mode 100644 index 0000000..2cb4076 --- /dev/null +++ b/content/images/as-pleasant-as-a-saturday-morning.md @@ -0,0 +1,8 @@ +Title: as pleasant as a saturday morning +Date: 2006-08-24 00:46 +Author: paulo.ribeiro +Category: images +Slug: as-pleasant-as-a-saturday-morning +Status: published + +![as pleasant as a saturday morning](https://diffraction.pt/blog/images/photos/06/as_pleasant_as_a_saturday_morning.jpg) diff --git a/content/images/as-tuas-palavras-nas-minhas.md b/content/images/as-tuas-palavras-nas-minhas.md new file mode 100644 index 0000000..a5e46ed --- /dev/null +++ b/content/images/as-tuas-palavras-nas-minhas.md @@ -0,0 +1,15 @@ +Title: as tuas palavras nas minhas +Date: 2005-09-07 07:53 +Author: paulo.ribeiro +Category: images, portuguese +Slug: as-tuas-palavras-nas-minhas +Status: published + +mãos. guardo-as como se guarda a +chuva. acarinho-a como se fosse a +salvação. + +![as tuas palavras nas minhas](https://diffraction.pt/blog/images/photos/05/as_tuas_palavras_nas_minhas.jpg) + +...mas não. nunca +é. diff --git a/content/images/ataraxia.md b/content/images/ataraxia.md new file mode 100644 index 0000000..999dc47 --- /dev/null +++ b/content/images/ataraxia.md @@ -0,0 +1,11 @@ +Title: ataraxia +Date: 2005-07-22 02:00 +Author: paulo.ribeiro +Category: images +Slug: ataraxia +Status: published + +![ataraxia](https://diffraction.pt/blog/images/photos/05/ataraxia.jpg) +  +  +[+](http://diffraction.com.pt/blog/2005/03/02/no-soul/) diff --git a/content/images/attention-to-details.md b/content/images/attention-to-details.md new file mode 100644 index 0000000..2fe26cc --- /dev/null +++ b/content/images/attention-to-details.md @@ -0,0 +1,8 @@ +Title: attention to details +Date: 2005-01-22 12:32 +Author: paulo.ribeiro +Category: images +Slug: attention-to-details +Status: published + +![attention to details](https://diffraction.pt/blog/images/photos/05/attention_to_details.jpg) diff --git a/content/images/behind-the-orange-curtains.md b/content/images/behind-the-orange-curtains.md new file mode 100644 index 0000000..5f694dd --- /dev/null +++ b/content/images/behind-the-orange-curtains.md @@ -0,0 +1,8 @@ +Title: behind the orange curtains +Date: 2005-01-01 22:43 +Author: paulo.ribeiro +Category: images +Slug: behind-the-orange-curtains +Status: published + +![behind the orange curtains](https://diffraction.pt/blog/images/photos/05/behind_the_orange_curtains.jpg) diff --git a/content/images/beneath-an-absent-sky.md b/content/images/beneath-an-absent-sky.md new file mode 100644 index 0000000..a15ce66 --- /dev/null +++ b/content/images/beneath-an-absent-sky.md @@ -0,0 +1,8 @@ +Title: beneath an absent sky +Date: 2004-08-15 18:12 +Author: paulo.ribeiro +Category: images +Slug: beneath-an-absent-sky +Status: published + +![beneath an absent sky](https://diffraction.pt/blog/images/photos/04/beneath_an_absent_sky.jpg) diff --git a/content/images/between-false-perceptions-and-reality.md b/content/images/between-false-perceptions-and-reality.md new file mode 100644 index 0000000..fce6307 --- /dev/null +++ b/content/images/between-false-perceptions-and-reality.md @@ -0,0 +1,8 @@ +Title: between false perceptions and reality +Date: 2005-02-06 14:42 +Author: paulo.ribeiro +Category: images +Slug: between-false-perceptions-and-reality +Status: published + +![between false perceptions and reality](https://diffraction.pt/blog/images/photos/05/between_false_perceptions_and_reality.jpg) diff --git a/content/images/beyond.md b/content/images/beyond.md new file mode 100644 index 0000000..77cf57a --- /dev/null +++ b/content/images/beyond.md @@ -0,0 +1,8 @@ +Title: beyond +Date: 2005-09-30 01:25 +Author: paulo.ribeiro +Category: images +Slug: beyond +Status: published + +![beyond](https://diffraction.pt/blog/images/photos/05/beyond.jpg) diff --git a/content/images/billy-corgan.md b/content/images/billy-corgan.md new file mode 100644 index 0000000..aa2ab7a --- /dev/null +++ b/content/images/billy-corgan.md @@ -0,0 +1,14 @@ +Title: billy corgan +Date: 2005-06-02 01:34 +Author: paulo.ribeiro +Category: images +Slug: billy-corgan +Status: published + +![billy corgan](https://diffraction.pt/blog/images/photos/05/billy_corgan.jpg) + +
+ +*we can change the world* + +
diff --git a/content/images/black-box.md b/content/images/black-box.md new file mode 100644 index 0000000..fbd503d --- /dev/null +++ b/content/images/black-box.md @@ -0,0 +1,8 @@ +Title: black box +Date: 2007-09-15 00:49 +Author: paulo.ribeiro +Category: images +Slug: black-box +Status: published + +![black box](https://diffraction.pt/blog/images/photos/07/black_box.jpg) diff --git a/content/images/bleu.md b/content/images/bleu.md new file mode 100644 index 0000000..ef47c36 --- /dev/null +++ b/content/images/bleu.md @@ -0,0 +1,11 @@ +Title: bleu +Date: 2006-06-04 16:17 +Author: paulo.ribeiro +Category: images +Slug: bleu +Status: published + +![bleu](https://diffraction.pt/blog/images/photos/06/bleu.jpg) +  +  +[+](/blog/2005/09/03/noir/) diff --git a/content/images/blinking-lights.md b/content/images/blinking-lights.md new file mode 100644 index 0000000..a4ff3e7 --- /dev/null +++ b/content/images/blinking-lights.md @@ -0,0 +1,8 @@ +Title: blinking lights in the cityscape diverting my mind 18.75 kilometers across the river +Date: 2005-11-27 03:43 +Author: paulo.ribeiro +Category: images +Slug: blinking-lights +Status: published + +![blinking lights in the cityscape diverting my mind 18.75 kilometers across the river](https://diffraction.pt/blog/images/photos/05/blinking_lights.jpg) diff --git a/content/images/braganca.md b/content/images/braganca.md new file mode 100644 index 0000000..f0a7c57 --- /dev/null +++ b/content/images/braganca.md @@ -0,0 +1,10 @@ +Title: bragança +Date: 2007-06-11 20:48 +Author: paulo.ribeiro +Category: images +Slug: braganca +Status: published + +![bragança](https://diffraction.pt/blog/images/photos/07/braganca_i.jpg) + +![bragança](https://diffraction.pt/blog/images/photos/07/braganca_ii.jpg) diff --git a/content/images/breathe-in-breathe-out.md b/content/images/breathe-in-breathe-out.md new file mode 100644 index 0000000..3bf563f --- /dev/null +++ b/content/images/breathe-in-breathe-out.md @@ -0,0 +1,8 @@ +Title: breathe in, breathe out +Date: 2007-04-27 22:17 +Author: paulo.ribeiro +Category: images +Slug: breathe-in-breathe-out +Status: published + +![breathe in, breathe out](https://diffraction.pt/blog/images/photos/07/breathe_in_breathe_out.jpg) diff --git a/content/images/breeze.md b/content/images/breeze.md new file mode 100644 index 0000000..f2fd794 --- /dev/null +++ b/content/images/breeze.md @@ -0,0 +1,8 @@ +Title: breeze +Date: 2008-05-16 23:32 +Author: paulo.ribeiro +Category: images +Slug: breeze +Status: published + +![breeze](https://diffraction.pt/blog/images/photos/08/breeze.jpg) diff --git a/content/images/briteiros.md b/content/images/briteiros.md new file mode 100644 index 0000000..65df191 --- /dev/null +++ b/content/images/briteiros.md @@ -0,0 +1,10 @@ +Title: briteiros +Date: 2009-03-21 13:22 +Author: paulo.ribeiro +Category: images +Slug: briteiros +Status: published + +![briteiros](https://diffraction.pt/blog/images/photos/09/briteiros_i.jpg) + +![briteiros](https://diffraction.pt/blog/images/photos/09/briteiros_ii.jpg) diff --git a/content/images/campo-da-ataca.md b/content/images/campo-da-ataca.md new file mode 100644 index 0000000..6a496ec --- /dev/null +++ b/content/images/campo-da-ataca.md @@ -0,0 +1,10 @@ +Title: campo da ataca +Date: 2008-05-03 22:23 +Author: paulo.ribeiro +Category: images +Slug: campo-da-ataca +Status: published + +![campo da ataca](https://diffraction.pt/blog/images/photos/08/campo_da_ataca_i.jpg) + +![campo da ataca](https://diffraction.pt/blog/images/photos/08/campo_da_ataca_ii.jpg) diff --git a/content/images/centum-cellae.md b/content/images/centum-cellae.md new file mode 100644 index 0000000..1fd5883 --- /dev/null +++ b/content/images/centum-cellae.md @@ -0,0 +1,10 @@ +Title: centum cellæ +Date: 2010-03-26 23:08 +Author: paulo.ribeiro +Category: images +Slug: centum-cellae +Status: published + +![centum cellæ](https://diffraction.pt/blog/images/photos/10/centum_cellae_i.jpg) + +![centum cellæ](https://diffraction.pt/blog/images/photos/10/centum_cellae_ii.jpg) diff --git a/content/images/clarao.md b/content/images/clarao.md new file mode 100644 index 0000000..89b0b6a --- /dev/null +++ b/content/images/clarao.md @@ -0,0 +1,16 @@ +Title: clarão +Date: 2014-07-20 22:51 +Author: paulo.ribeiro +Category: images +Slug: clarao +Status: published + +![clarão](https://diffraction.pt/blog/images/photos/14/clarao_i.jpg) + +![clarão](https://diffraction.pt/blog/images/photos/14/clarao_ii.jpg) + +
+ +*[paus](/blog/2013/paus/), jardins efémeros, viseu.* + +
diff --git a/content/images/coming-up-for-air.md b/content/images/coming-up-for-air.md new file mode 100644 index 0000000..85eb481 --- /dev/null +++ b/content/images/coming-up-for-air.md @@ -0,0 +1,8 @@ +Title: coming up for air +Date: 2009-02-05 23:18 +Author: paulo.ribeiro +Category: images +Slug: coming-up-for-air +Status: published + +![coming up for air](https://diffraction.pt/blog/images/photos/09/coming_up_for_air.jpg) diff --git a/content/images/counting.md b/content/images/counting.md new file mode 100644 index 0000000..fd46f70 --- /dev/null +++ b/content/images/counting.md @@ -0,0 +1,8 @@ +Title: counting +Date: 2006-07-18 23:08 +Author: paulo.ribeiro +Category: images +Slug: counting +Status: published + +![counting](https://diffraction.pt/blog/images/photos/06/counting.jpg) diff --git a/content/images/cura.md b/content/images/cura.md new file mode 100644 index 0000000..3b99a4b --- /dev/null +++ b/content/images/cura.md @@ -0,0 +1,15 @@ +Title: cura +Date: 2005-07-11 04:47 +Author: paulo.ribeiro +Category: images, portuguese +Slug: cura +Status: published + +disponho as palavras de modo diferente e reinvento a minha já inerte maneira de escrever. vejo-me de fora sem a dependência do meu corpo às minhas doenças: como se não me fosse; sem as feridas em grito. critico-me sem mágoa. escrevo com a caneta sem a minha tinta em constante indecisão. + +![cura](https://diffraction.pt/blog/images/photos/05/cura.jpg) + +nesta visão de fora que me constrói, crio finalmente uma ideia real do que transpareço. mas (re)reflectir-me na retina recria também uma nova alteração no que pareço. o processo é anulado, **falha-se** a tentativa de ter uma visão fugaz e isenta deste eu que ando a tentar descobrir (e talvez gostar): o meu corpo insiste em ser-me, em aperceber-se de que eu o observo. e aí, baixo a cabeça e abstraio-me, até voltar a reconhecer a minha voz. +  +  +*[maharet](http://paraepensa.blogspot.com)* diff --git a/content/images/curly-revisited.md b/content/images/curly-revisited.md new file mode 100644 index 0000000..a567e1a --- /dev/null +++ b/content/images/curly-revisited.md @@ -0,0 +1,8 @@ +Title: curly revisited +Date: 2005-05-12 09:32 +Author: paulo.ribeiro +Category: images +Slug: curly-revisited +Status: published + +![curly revisited](https://diffraction.pt/blog/images/photos/05/curly_revisited.jpg) diff --git a/content/images/curving-rays-of-once-straight-light.md b/content/images/curving-rays-of-once-straight-light.md new file mode 100644 index 0000000..401cfd5 --- /dev/null +++ b/content/images/curving-rays-of-once-straight-light.md @@ -0,0 +1,10 @@ +Title: curving rays of once straight light +Date: 2018-08-25 22:14 +Author: paulo.ribeiro +Category: images +Slug: curving-rays-of-once-straight-light +Status: published + +![curving rays of once straight light](https://diffraction.pt/blog/images/photos/18/curving_rays_of_once_straight_light_i.jpg) + +![curving rays of once straight light](https://diffraction.pt/blog/images/photos/18/curving_rays_of_once_straight_light_ii.jpg) diff --git a/content/images/das-tardes-passadas.md b/content/images/das-tardes-passadas.md new file mode 100644 index 0000000..4994c98 --- /dev/null +++ b/content/images/das-tardes-passadas.md @@ -0,0 +1,18 @@ +Title: das tardes passadas +Date: 2023-08-25 12:31 +Author: paulo.ribeiro +Category: images +Slug: das-tardes-passadas +Status: published + +![das tardes passadas](https://diffraction.pt/blog/images/photos/23/das_tardes_passadas_i.jpg) + +![das tardes passadas](https://diffraction.pt/blog/images/photos/23/das_tardes_passadas_ii.jpg) + +![das tardes passadas](https://diffraction.pt/blog/images/photos/23/das_tardes_passadas_iii.jpg) + +![das tardes passadas](https://diffraction.pt/blog/images/photos/23/das_tardes_passadas_iv.jpg) + +![das tardes passadas](https://diffraction.pt/blog/images/photos/23/das_tardes_passadas_v.jpg) + +[+](/blog/2023/08/23/dos-dias-perdidos/) diff --git a/content/images/de-azul-em-azul.md b/content/images/de-azul-em-azul.md new file mode 100644 index 0000000..2bb7c2a --- /dev/null +++ b/content/images/de-azul-em-azul.md @@ -0,0 +1,8 @@ +Title: de azul em azul +Date: 2006-02-17 00:45 +Author: paulo.ribeiro +Category: images +Slug: de-azul-em-azul +Status: published + +![de azul em azul](https://diffraction.pt/blog/images/photos/06/de_azul_em_azul.jpg) diff --git a/content/images/december-blues.md b/content/images/december-blues.md new file mode 100644 index 0000000..8f6329b --- /dev/null +++ b/content/images/december-blues.md @@ -0,0 +1,10 @@ +Title: december blues +Date: 2005-12-23 00:31 +Author: paulo.ribeiro +Category: images +Slug: december-blues +Status: published + +![december blues](https://diffraction.pt/blog/images/photos/05/december_blues_i.jpg) + +![december blues](https://diffraction.pt/blog/images/photos/05/december_blues_ii.jpg) diff --git a/content/images/deolinda.md b/content/images/deolinda.md new file mode 100644 index 0000000..9a15ac8 --- /dev/null +++ b/content/images/deolinda.md @@ -0,0 +1,16 @@ +Title: deolinda +Date: 2008-10-20 23:09 +Author: paulo.ribeiro +Category: images +Slug: deolinda +Status: published + +![deolinda](https://diffraction.pt/blog/images/photos/08/deolinda_i.jpg) + +![deolinda](https://diffraction.pt/blog/images/photos/08/deolinda_ii.jpg) + +
+ +*ainda bem que lisboa não é a cidade perfeita para nós* + +
diff --git a/content/images/departure.md b/content/images/departure.md new file mode 100644 index 0000000..772f7b6 --- /dev/null +++ b/content/images/departure.md @@ -0,0 +1,8 @@ +Title: departure +Date: 2005-09-28 09:40 +Author: paulo.ribeiro +Category: images +Slug: departure +Status: published + +![departure](https://diffraction.pt/blog/images/photos/05/departure.jpg) diff --git a/content/images/depois-do-adeus.md b/content/images/depois-do-adeus.md new file mode 100644 index 0000000..35b249d --- /dev/null +++ b/content/images/depois-do-adeus.md @@ -0,0 +1,8 @@ +Title: depois do adeus +Date: 2006-12-16 04:37 +Author: paulo.ribeiro +Category: images +Slug: depois-do-adeus +Status: published + +![depois do adeus](https://diffraction.pt/blog/images/photos/06/depois_do_adeus.jpg) diff --git a/content/images/desolacao.md b/content/images/desolacao.md new file mode 100644 index 0000000..765232f --- /dev/null +++ b/content/images/desolacao.md @@ -0,0 +1,12 @@ +Title: desolação +Date: 2004-11-17 21:37 +Author: paulo.ribeiro +Category: images, portuguese +Slug: desolacao +Status: published + +![desolacao](https://diffraction.pt/blog/images/photos/04/desolacao.jpg) + +chove +chove sempre nas ruas desoladas +onde gélidos ventos dissipam a tua doce memória diff --git a/content/images/despondency.md b/content/images/despondency.md new file mode 100644 index 0000000..f2d8e7e --- /dev/null +++ b/content/images/despondency.md @@ -0,0 +1,8 @@ +Title: despondency +Date: 2004-09-02 20:16 +Author: paulo.ribeiro +Category: images +Slug: despondency +Status: published + +![despondency](https://diffraction.pt/blog/images/photos/04/despondency.jpg) diff --git a/content/images/dia-quinze.md b/content/images/dia-quinze.md new file mode 100644 index 0000000..3870598 --- /dev/null +++ b/content/images/dia-quinze.md @@ -0,0 +1,18 @@ +Title: dia quinze +Date: 2004-12-15 23:50 +Author: paulo.ribeiro +Category: images, portuguese +Slug: dia-quinze +Status: published + +quando o silêncio deixa ouvir o rumor das folhas e os ecos se esvanecem +resta a solidão + +![dia quinze](https://diffraction.pt/blog/images/photos/04/dia_quinze.jpg) + +vivo num mundo que é meu e muitas vezes ao caminhar pelas ruas sinto-me ausente; como se fosse mero espectador de um filme + +como se a minha existência não fizesse diferença + +que diferença lhe faz se nunca nos voltarmos a ver? +de que serve gostar de uma música que nunca voltarei a ouvir? diff --git a/content/images/diffraction.md b/content/images/diffraction.md new file mode 100644 index 0000000..5efb617 --- /dev/null +++ b/content/images/diffraction.md @@ -0,0 +1,8 @@ +Title: diffraction +Date: 2004-08-31 18:15 +Author: paulo.ribeiro +Category: images +Slug: diffraction +Status: published + +![diffraction](https://diffraction.pt/blog/images/photos/04/diffraction.jpg) diff --git a/content/images/digression.md b/content/images/digression.md new file mode 100644 index 0000000..3287708 --- /dev/null +++ b/content/images/digression.md @@ -0,0 +1,10 @@ +Title: digression +Date: 2005-05-24 10:30 +Author: paulo.ribeiro +Category: images +Slug: digression +Status: published + +![digression](https://diffraction.pt/blog/images/photos/05/digression_i.jpg) + +![digression](https://diffraction.pt/blog/images/photos/05/digression_ii.jpg) diff --git a/content/images/dissolve.md b/content/images/dissolve.md new file mode 100644 index 0000000..0b0735e --- /dev/null +++ b/content/images/dissolve.md @@ -0,0 +1,8 @@ +Title: dissolve +Date: 2009-07-12 19:46 +Author: paulo.ribeiro +Category: images +Slug: dissolve +Status: published + +![dissolve](https://diffraction.pt/blog/images/photos/09/dissolve.jpg) diff --git a/content/images/distance-divided-by-time.md b/content/images/distance-divided-by-time.md new file mode 100644 index 0000000..f07911f --- /dev/null +++ b/content/images/distance-divided-by-time.md @@ -0,0 +1,12 @@ +Title: distance divided by time +Date: 2009-10-17 15:11 +Author: paulo.ribeiro +Category: images +Slug: distance-divided-by-time +Status: published + +![distance divided by time](https://diffraction.pt/blog/images/photos/09/distance_divided_by_time_i.jpg) + +![distance divided by time](https://diffraction.pt/blog/images/photos/09/distance_divided_by_time_ii.jpg) + +![distance divided by time](https://diffraction.pt/blog/images/photos/09/distance_divided_by_time_iii.jpg) diff --git a/content/images/dos-dias-perdidos.md b/content/images/dos-dias-perdidos.md new file mode 100644 index 0000000..9b2ec53 --- /dev/null +++ b/content/images/dos-dias-perdidos.md @@ -0,0 +1,12 @@ +Title: dos dias perdidos +Date: 2023-08-23 10:20 +Author: paulo.ribeiro +Category: images +Slug: dos-dias-perdidos +Status: published + +![dos dias perdidos](https://diffraction.pt/blog/images/photos/23/dos_dias_perdidos_i.jpg) + +![dos dias perdidos](https://diffraction.pt/blog/images/photos/23/dos_dias_perdidos_ii.jpg) + +![dos dias perdidos](https://diffraction.pt/blog/images/photos/23/dos_dias_perdidos_iii.jpg) diff --git a/content/images/down-in-a-hole.md b/content/images/down-in-a-hole.md new file mode 100644 index 0000000..e4a144c --- /dev/null +++ b/content/images/down-in-a-hole.md @@ -0,0 +1,8 @@ +Title: down in a hole +Date: 2005-10-02 01:58 +Author: paulo.ribeiro +Category: images +Slug: down-in-a-hole +Status: published + +![down in a hole](https://diffraction.pt/blog/images/photos/05/down_in_a_hole.jpg) diff --git a/content/images/dry-the-river.md b/content/images/dry-the-river.md new file mode 100644 index 0000000..e109b3a --- /dev/null +++ b/content/images/dry-the-river.md @@ -0,0 +1,12 @@ +Title: dry the river +Date: 2020-12-24 18:00 +Author: paulo.ribeiro +Category: images +Slug: dry-the-river +Status: published + +![dry the river](https://diffraction.pt/blog/images/photos/20/dry_the_river_i.jpg) + +![dry the river](https://diffraction.pt/blog/images/photos/20/dry_the_river_ii.jpg) + +![dry the river](https://diffraction.pt/blog/images/photos/20/dry_the_river_iii.jpg) diff --git a/content/images/echoes.md b/content/images/echoes.md new file mode 100644 index 0000000..f2d623f --- /dev/null +++ b/content/images/echoes.md @@ -0,0 +1,16 @@ +Title: echoes +Date: 2006-08-07 23:39 +Author: paulo.ribeiro +Category: images +Slug: echoes +Status: published + +![echoes](https://diffraction.pt/blog/images/photos/06/echoes_i.jpg) + +![echoes](https://diffraction.pt/blog/images/photos/06/echoes_ii.jpg) + +![echoes](https://diffraction.pt/blog/images/photos/06/echoes_iii.jpg) + +![echoes](https://diffraction.pt/blog/images/photos/06/echoes_iv.jpg) + +![echoes](https://diffraction.pt/blog/images/photos/06/echoes_v.jpg) diff --git a/content/images/embrace.md b/content/images/embrace.md new file mode 100644 index 0000000..ce2a0a8 --- /dev/null +++ b/content/images/embrace.md @@ -0,0 +1,10 @@ +Title: embrace +Date: 2005-10-26 20:50 +Author: paulo.ribeiro +Category: images +Slug: embrace +Status: published + +![embrace](https://diffraction.pt/blog/images/photos/05/embrace_i.jpg) + +![embrace](https://diffraction.pt/blog/images/photos/05/embrace_ii.jpg) diff --git a/content/images/empty-handed.md b/content/images/empty-handed.md new file mode 100644 index 0000000..6759f0c --- /dev/null +++ b/content/images/empty-handed.md @@ -0,0 +1,8 @@ +Title: empty-handed +Date: 2005-04-14 01:01 +Author: paulo.ribeiro +Category: images +Slug: empty-handed +Status: published + +![empty-handed](https://diffraction.pt/blog/images/photos/05/empty-handed.jpg) diff --git a/content/images/enquanto-espero.md b/content/images/enquanto-espero.md new file mode 100644 index 0000000..2a8987e --- /dev/null +++ b/content/images/enquanto-espero.md @@ -0,0 +1,19 @@ +Title: enquanto espero +Date: 2005-04-27 20:24 +Author: paulo.ribeiro +Category: images, portuguese +Slug: enquanto-espero +Status: published + +atraco os olhos nas copas das árvores, como se através delas pudesse +sorver a lama de cinzas do céu e elevar-me assim acima da poluição. + +![enquanto espero](https://diffraction.pt/blog/images/photos/05/enquanto_espero.jpg) + +ruído branco como chuva a despenhar-se em telhados de zinco. +  +  +  +  +  +paz. diff --git a/content/images/entropy.md b/content/images/entropy.md new file mode 100644 index 0000000..1c78c16 --- /dev/null +++ b/content/images/entropy.md @@ -0,0 +1,27 @@ +Title: entropy +Date: 2005-04-07 15:59 +Author: paulo.ribeiro +Category: images +Slug: entropy +Status: published + +t0 = 0 s + +![entropy](https://diffraction.pt/blog/images/photos/05/entropy_i.jpg) +  +  +t1 = 830959 s + +![entropy](https://diffraction.pt/blog/images/photos/05/entropy_ii.jpg) +  +  +t2 = 1995883 s + +![entropy](https://diffraction.pt/blog/images/photos/05/entropy_iii.jpg) +  +  +t3 = 2678107 s + +![entropy](https://diffraction.pt/blog/images/photos/05/entropy_iv.jpg) + +![entropy](https://diffraction.pt/blog/images/photos/05/entropy_v.jpg) diff --git a/content/images/es-aqui.md b/content/images/es-aqui.md new file mode 100644 index 0000000..99a8858 --- /dev/null +++ b/content/images/es-aqui.md @@ -0,0 +1,10 @@ +Title: és aqui +Date: 2015-11-22 20:41 +Author: paulo.ribeiro +Category: images +Slug: es-aqui +Status: published + +![és aqui](https://diffraction.pt/blog/images/photos/15/es_aqui_i.jpg) + +![és aqui](https://diffraction.pt/blog/images/photos/15/es_aqui_ii.jpg) diff --git a/content/images/escondo-as-maos-nos-bolsos-do-casaco.md b/content/images/escondo-as-maos-nos-bolsos-do-casaco.md new file mode 100644 index 0000000..6b8cbfa --- /dev/null +++ b/content/images/escondo-as-maos-nos-bolsos-do-casaco.md @@ -0,0 +1,22 @@ +Title: escondo as mãos nos bolsos do casaco +Date: 2005-11-05 03:18 +Author: paulo.ribeiro +Category: images, portuguese +Slug: escondo-as-maos-nos-bolsos-do-casaco +Status: published + +como +se + +escondesse segredos nas mãos + +![escondo as mãos nos bolsos do casaco](https://diffraction.pt/blog/images/photos/05/escondo_as_maos.jpg) + +mas +apenas + +escondo as mãos do frio + +([...](/blog/2004/11/21/quando-esta-frio/)) + +. diff --git a/content/images/esta-noite.md b/content/images/esta-noite.md new file mode 100644 index 0000000..280746c --- /dev/null +++ b/content/images/esta-noite.md @@ -0,0 +1,10 @@ +Title: esta noite +Date: 2005-08-04 01:44 +Author: paulo.ribeiro +Category: images, portuguese +Slug: esta-noite +Status: published + +queria pegar neste momento como se pega numa fotografia e agrafá-lo aqui. + +![esta noite](https://diffraction.pt/blog/images/photos/05/esta_noite.jpg) diff --git a/content/images/estuario.md b/content/images/estuario.md new file mode 100644 index 0000000..3cdef80 --- /dev/null +++ b/content/images/estuario.md @@ -0,0 +1,12 @@ +Title: estuário +Date: 2017-11-26 19:34 +Author: paulo.ribeiro +Category: images +Slug: estuario +Status: published + +![estuário](https://diffraction.pt/blog/images/photos/17/estuario_i.jpg) + +![estuário](https://diffraction.pt/blog/images/photos/17/estuario_ii.jpg) + +![estuário](https://diffraction.pt/blog/images/photos/17/estuario_iii.jpg) diff --git a/content/images/ever.md b/content/images/ever.md new file mode 100644 index 0000000..85bd054 --- /dev/null +++ b/content/images/ever.md @@ -0,0 +1,8 @@ +Title: ever +Date: 2005-07-05 03:03 +Author: paulo.ribeiro +Category: images +Slug: ever +Status: published + +![ever](https://diffraction.pt/blog/images/photos/05/ever.jpg) diff --git a/content/images/exhale.md b/content/images/exhale.md new file mode 100644 index 0000000..5fb7560 --- /dev/null +++ b/content/images/exhale.md @@ -0,0 +1,12 @@ +Title: exhale +Date: 2017-09-21 11:30 +Author: paulo.ribeiro +Category: images +Slug: exhale +Status: published + +![exhale](https://diffraction.pt/blog/images/photos/17/exhale_i.jpg) + +![exhale](https://diffraction.pt/blog/images/photos/17/exhale_ii.jpg) + +![exhale](https://diffraction.pt/blog/images/photos/17/exhale_iii.jpg) diff --git a/content/images/exit-11.md b/content/images/exit-11.md new file mode 100644 index 0000000..b66f9ba --- /dev/null +++ b/content/images/exit-11.md @@ -0,0 +1,8 @@ +Title: exit 11 +Date: 2005-02-03 21:40 +Author: paulo.ribeiro +Category: images +Slug: exit-11 +Status: published + +![exit 11](https://diffraction.pt/blog/images/photos/05/exit_11.jpg) diff --git a/content/images/fade.md b/content/images/fade.md new file mode 100644 index 0000000..40b30a5 --- /dev/null +++ b/content/images/fade.md @@ -0,0 +1,12 @@ +Title: ...fade +Date: 2005-06-07 03:32 +Author: paulo.ribeiro +Category: images +Slug: fade +Status: published + +![...fade](https://diffraction.pt/blog/images/photos/05/fade_i.jpg) + +out. + +![out.](https://diffraction.pt/blog/images/photos/05/fade_ii.jpg) diff --git a/content/images/fading.md b/content/images/fading.md new file mode 100644 index 0000000..ffc0799 --- /dev/null +++ b/content/images/fading.md @@ -0,0 +1,8 @@ +Title: fading +Date: 2004-10-25 23:35 +Author: paulo.ribeiro +Category: images +Slug: fading +Status: published + +![fading](https://diffraction.pt/blog/images/photos/04/fading.jpg) diff --git a/content/images/false-hope.md b/content/images/false-hope.md new file mode 100644 index 0000000..6175235 --- /dev/null +++ b/content/images/false-hope.md @@ -0,0 +1,10 @@ +Title: false hope +Date: 2007-05-04 10:37 +Author: paulo.ribeiro +Category: images +Slug: false-hope +Status: published + +![false hope](https://diffraction.pt/blog/images/photos/07/false_hope_i.jpg) + +![false hope](https://diffraction.pt/blog/images/photos/07/false_hope_ii.jpg) diff --git a/content/images/fault.md b/content/images/fault.md new file mode 100644 index 0000000..b9b70bc --- /dev/null +++ b/content/images/fault.md @@ -0,0 +1,14 @@ +Title: fault +Date: 2005-04-22 02:21 +Author: paulo.ribeiro +Category: images +Slug: fault +Status: published + +![fault](https://diffraction.pt/blog/images/photos/05/fault_i.jpg) + +and + +![fracture](https://diffraction.pt/blog/images/photos/05/fault_ii.jpg) + +fracture diff --git a/content/images/ficar.md b/content/images/ficar.md new file mode 100644 index 0000000..9632bb8 --- /dev/null +++ b/content/images/ficar.md @@ -0,0 +1,30 @@ +Title: ficar +Date: 2005-03-30 00:34 +Author: paulo.ribeiro +Category: images, portuguese +Slug: ficar +Status: published + +se eu pudesse não partir +eu ficava aqui contigo + +se eu pudesse não querer +...descobrir + +se eu pudesse não escolher +eu juro, era este o meu abrigo + +se eu pudesse não saber +...que há mais + +![ficar](https://diffraction.pt/blog/images/photos/05/ficar_i.jpg) + +![ficar](https://diffraction.pt/blog/images/photos/05/ficar_ii.jpg) + +mas como pode a lua não querer o céu +como pode o mar não querer o chão +como pode a vontade acalmar o desejo +como posso eu ficar? +  +  +*margarida pinto* diff --git a/content/images/flight-of-stairs.md b/content/images/flight-of-stairs.md new file mode 100644 index 0000000..e953a92 --- /dev/null +++ b/content/images/flight-of-stairs.md @@ -0,0 +1,8 @@ +Title: flight of stairs +Date: 2004-08-26 21:24 +Author: paulo.ribeiro +Category: images +Slug: flight-of-stairs +Status: published + +![flight of stairs](https://diffraction.pt/blog/images/photos/04/flight_of_stairs.jpg) diff --git a/content/images/fluorescent-light-bulbs.md b/content/images/fluorescent-light-bulbs.md new file mode 100644 index 0000000..e6ce58a --- /dev/null +++ b/content/images/fluorescent-light-bulbs.md @@ -0,0 +1,10 @@ +Title: fluorescent light bulbs monotonously droning through the night +Date: 2005-11-08 23:17 +Author: paulo.ribeiro +Category: images +Slug: fluorescent-light-bulbs +Status: published + +![fluorescent light bulbs monotonously droning through the night](https://diffraction.pt/blog/images/photos/05/fluorescent_light_bulbs_i.jpg) + +![fluorescent light bulbs monotonously droning through the night](https://diffraction.pt/blog/images/photos/05/fluorescent_light_bulbs_ii.jpg) diff --git a/content/images/fomos-os-ultimos.md b/content/images/fomos-os-ultimos.md new file mode 100644 index 0000000..142731d --- /dev/null +++ b/content/images/fomos-os-ultimos.md @@ -0,0 +1,14 @@ +Title: fomos os últimos a abandonar a praia. +Date: 2006-01-09 23:19 +Author: paulo.ribeiro +Category: images, portuguese +Slug: fomos-os-ultimos +Status: published + +![fomos os últimos a abandonar a praia.](https://diffraction.pt/blog/images/photos/06/fomos_os_ultimos_i.jpg "fomos os últimos a abandonar a praia.") + +![fomos os últimos a abandonar a praia.](https://diffraction.pt/blog/images/photos/06/fomos_os_ultimos_ii.jpg "fomos os últimos a abandonar a praia.") + +a luz estranha da lua projectava sombras sobre a areia. + +a nossa sombra sobre a [areia](/blog/2005/07/13/se-fossemos-a-praia/). diff --git a/content/images/free.md b/content/images/free.md new file mode 100644 index 0000000..2ba14d1 --- /dev/null +++ b/content/images/free.md @@ -0,0 +1,10 @@ +Title: free +Date: 2004-11-12 16:10 +Author: paulo.ribeiro +Category: images +Slug: free +Status: published + +![free i](https://diffraction.pt/blog/images/photos/04/free_i.jpg) + +![free ii](https://diffraction.pt/blog/images/photos/04/free_ii.jpg) diff --git a/content/images/from-here-to-there.md b/content/images/from-here-to-there.md new file mode 100644 index 0000000..4479740 --- /dev/null +++ b/content/images/from-here-to-there.md @@ -0,0 +1,8 @@ +Title: from here to there +Date: 2006-07-23 01:12 +Author: paulo.ribeiro +Category: images +Slug: from-here-to-there +Status: published + +![from here to there](https://diffraction.pt/blog/images/photos/06/from_here_to_there.jpg) diff --git a/content/images/from-sinking.md b/content/images/from-sinking.md new file mode 100644 index 0000000..3aa503d --- /dev/null +++ b/content/images/from-sinking.md @@ -0,0 +1,8 @@ +Title: from sinking +Date: 2012-12-21 23:34 +Author: paulo.ribeiro +Category: images +Slug: from-sinking +Status: published + +![from sinking](https://diffraction.pt/blog/images/photos/12/from_sinking.jpg) diff --git a/content/images/getting-from-point-a-to-point-b.md b/content/images/getting-from-point-a-to-point-b.md new file mode 100644 index 0000000..238d3ed --- /dev/null +++ b/content/images/getting-from-point-a-to-point-b.md @@ -0,0 +1,10 @@ +Title: getting from point a to point b +Date: 2005-03-25 15:21 +Author: paulo.ribeiro +Category: images +Slug: getting-from-point-a-to-point-b +Status: published + +![getting from point a to point b](https://diffraction.pt/blog/images/photos/05/getting_from_point_a_to_point_b_i.jpg) + +![getting from point a to point b](https://diffraction.pt/blog/images/photos/05/getting_from_point_a_to_point_b_ii.jpg) diff --git a/content/images/given-to-the-rising.md b/content/images/given-to-the-rising.md new file mode 100644 index 0000000..740c258 --- /dev/null +++ b/content/images/given-to-the-rising.md @@ -0,0 +1,8 @@ +Title: given to the rising +Date: 2009-09-09 09:03 +Author: paulo.ribeiro +Category: images +Slug: given-to-the-rising +Status: published + +![given to the rising](https://diffraction.pt/blog/images/photos/09/given_to_the_rising.jpg) diff --git a/content/images/glow.md b/content/images/glow.md new file mode 100644 index 0000000..c8f2d54 --- /dev/null +++ b/content/images/glow.md @@ -0,0 +1,8 @@ +Title: glow +Date: 2005-03-18 00:28 +Author: paulo.ribeiro +Category: images +Slug: glow +Status: published + +![glow](https://diffraction.pt/blog/images/photos/05/glow.jpg) diff --git a/content/images/guincho.md b/content/images/guincho.md new file mode 100644 index 0000000..ed3a15f --- /dev/null +++ b/content/images/guincho.md @@ -0,0 +1,10 @@ +Title: guincho +Date: 2015-11-09 21:29 +Author: paulo.ribeiro +Category: images +Slug: guincho +Status: published + +![guincho](https://diffraction.pt/blog/images/photos/15/guincho_i.jpg) + +![guincho](https://diffraction.pt/blog/images/photos/15/guincho_ii.jpg) diff --git a/content/images/handful.md b/content/images/handful.md new file mode 100644 index 0000000..d241259 --- /dev/null +++ b/content/images/handful.md @@ -0,0 +1,12 @@ +Title: handful +Date: 2005-05-13 10:15 +Author: paulo.ribeiro +Category: images +Slug: handful +Status: published + +*for e.* + +![handful](https://diffraction.pt/blog/images/photos/05/handful.jpg) + +[+](/blog/2005/04/14/empty-handed/) diff --git a/content/images/here-comes-nobody.md b/content/images/here-comes-nobody.md new file mode 100644 index 0000000..5e7b5f3 --- /dev/null +++ b/content/images/here-comes-nobody.md @@ -0,0 +1,8 @@ +Title: here comes nobody +Date: 2005-11-16 23:20 +Author: paulo.ribeiro +Category: images +Slug: here-comes-nobody +Status: published + +![here comes nobody](https://diffraction.pt/blog/images/photos/05/here_comes_nobody.jpg) diff --git a/content/images/here-to-stay.md b/content/images/here-to-stay.md new file mode 100644 index 0000000..edfc3c2 --- /dev/null +++ b/content/images/here-to-stay.md @@ -0,0 +1,8 @@ +Title: here to stay +Date: 2008-09-15 23:13 +Author: paulo.ribeiro +Category: images +Slug: here-to-stay +Status: published + +![here to stay](https://diffraction.pt/blog/images/photos/08/here_to_stay.jpg) diff --git a/content/images/homesick.md b/content/images/homesick.md new file mode 100644 index 0000000..e10dbaa --- /dev/null +++ b/content/images/homesick.md @@ -0,0 +1,10 @@ +Title: homesick +Date: 2009-01-06 22:48 +Author: paulo.ribeiro +Category: images +Slug: homesick +Status: published + +![homesick](https://diffraction.pt/blog/images/photos/09/homesick_i.jpg) + +![homesick](https://diffraction.pt/blog/images/photos/09/homesick_ii.jpg) diff --git a/content/images/i-like-to-wear-grey.md b/content/images/i-like-to-wear-grey.md new file mode 100644 index 0000000..cb2bf59 --- /dev/null +++ b/content/images/i-like-to-wear-grey.md @@ -0,0 +1,8 @@ +Title: i like to wear grey +Date: 2005-02-05 00:41 +Author: paulo.ribeiro +Category: images +Slug: i-like-to-wear-grey +Status: published + +![i like to wear grey](https://diffraction.pt/blog/images/photos/05/i_like_to_wear_grey.jpg) diff --git a/content/images/i-lost-myself-again-in-the-wind-tunnels.md b/content/images/i-lost-myself-again-in-the-wind-tunnels.md new file mode 100644 index 0000000..c60e8b9 --- /dev/null +++ b/content/images/i-lost-myself-again-in-the-wind-tunnels.md @@ -0,0 +1,8 @@ +Title: i lost myself again in the wind tunnels +Date: 2005-03-21 00:57 +Author: paulo.ribeiro +Category: images +Slug: i-lost-myself-again-in-the-wind-tunnels +Status: published + +![i lost myself again in the wind tunnels](https://diffraction.pt/blog/images/photos/05/i_lost_myself_again_in_the_wind_tunnels.jpg) diff --git a/content/images/i-passed-unnoticed.md b/content/images/i-passed-unnoticed.md new file mode 100644 index 0000000..6c94ed3 --- /dev/null +++ b/content/images/i-passed-unnoticed.md @@ -0,0 +1,10 @@ +Title: i passed unnoticed as the cutting cold brought tears to my eyes +Date: 2005-11-29 22:19 +Author: paulo.ribeiro +Category: images +Slug: i-passed-unnoticed +Status: published + +![i passed unnoticed as the cutting cold brought tears to my eyes](https://diffraction.pt/blog/images/photos/05/i_passed_unnoticed_i.jpg) + +![i passed unnoticed as the cutting cold brought tears to my eyes](https://diffraction.pt/blog/images/photos/05/i_passed_unnoticed_ii.jpg) diff --git a/content/images/in-hiding.md b/content/images/in-hiding.md new file mode 100644 index 0000000..b2b95f1 --- /dev/null +++ b/content/images/in-hiding.md @@ -0,0 +1,8 @@ +Title: in hiding +Date: 2005-02-09 00:11 +Author: paulo.ribeiro +Category: images +Slug: in-hiding +Status: published + +![in hiding](https://diffraction.pt/blog/images/photos/05/in_hiding.jpg) diff --git a/content/images/inhale.md b/content/images/inhale.md new file mode 100644 index 0000000..80a7fca --- /dev/null +++ b/content/images/inhale.md @@ -0,0 +1,14 @@ +Title: inhale +Date: 2022-09-25 15:53 +Author: paulo.ribeiro +Category: images +Slug: inhale +Status: published + +![inhale](https://diffraction.pt/blog/images/photos/22/inhale_i.jpg) + +![inhale](https://diffraction.pt/blog/images/photos/22/inhale_ii.jpg) + +![inhale](https://diffraction.pt/blog/images/photos/22/inhale_iii.jpg) + +[+](/blog/2017/09/21/exhale/) diff --git a/content/images/insonia.md b/content/images/insonia.md new file mode 100644 index 0000000..72fb722 --- /dev/null +++ b/content/images/insonia.md @@ -0,0 +1,14 @@ +Title: insónia +Date: 2004-12-10 22:07 +Author: paulo.ribeiro +Category: images, portuguese +Slug: insonia +Status: published + +![insonia](https://diffraction.pt/blog/images/photos/04/insonia.jpg) + +acordei a desejar +não ser eu +quem estivesse a +acordar a desejar +não ser eu diff --git a/content/images/interpunct.md b/content/images/interpunct.md new file mode 100644 index 0000000..eb65534 --- /dev/null +++ b/content/images/interpunct.md @@ -0,0 +1,8 @@ +Title: · +Date: 2012-02-10 23:16 +Author: paulo.ribeiro +Category: images +Slug: interpunct +Status: published + +![·](https://diffraction.pt/blog/images/photos/12/interpunct.jpg) diff --git a/content/images/into-the-small-hours.md b/content/images/into-the-small-hours.md new file mode 100644 index 0000000..9ff1823 --- /dev/null +++ b/content/images/into-the-small-hours.md @@ -0,0 +1,12 @@ +Title: into the small hours +Date: 2013-02-12 22:34 +Author: paulo.ribeiro +Category: images +Slug: into-the-small-hours +Status: published + +![into the small hours](https://diffraction.pt/blog/images/photos/13/into_the_small_hours_i.jpg) + +![into the small hours](https://diffraction.pt/blog/images/photos/13/into_the_small_hours_ii.jpg) + +[+](/blog/2006/03/acordar-2/) diff --git a/content/images/into-the-void.md b/content/images/into-the-void.md new file mode 100644 index 0000000..7a51060 --- /dev/null +++ b/content/images/into-the-void.md @@ -0,0 +1,12 @@ +Title: into the void +Date: 2011-02-07 20:44 +Author: paulo.ribeiro +Category: images +Slug: into-the-void +Status: published + +![into the void](https://diffraction.pt/blog/images/photos/11/into_the_void_i.jpg) + +![into the void](https://diffraction.pt/blog/images/photos/11/into_the_void_ii.jpg) + +[+](/blog/2011/01/10/into-the-dark/) diff --git a/content/images/isolation.md b/content/images/isolation.md new file mode 100644 index 0000000..e9aa805 --- /dev/null +++ b/content/images/isolation.md @@ -0,0 +1,8 @@ +Title: isolation +Date: 2008-07-27 22:48 +Author: paulo.ribeiro +Category: images +Slug: isolation +Status: published + +![isolation](https://diffraction.pt/blog/images/photos/08/isolation.jpg) diff --git a/content/images/je-suis-dailleurs.md b/content/images/je-suis-dailleurs.md new file mode 100644 index 0000000..b5ba7f5 --- /dev/null +++ b/content/images/je-suis-dailleurs.md @@ -0,0 +1,8 @@ +Title: je suis d'ailleurs +Date: 2017-12-02 23:28 +Author: paulo.ribeiro +Category: images +Slug: je-suis-dailleurs +Status: published + +![je suis d'ailleurs](https://diffraction.pt/blog/images/photos/17/je_suis_dailleurs.jpg) diff --git a/content/images/jet-lag.md b/content/images/jet-lag.md new file mode 100644 index 0000000..f74be04 --- /dev/null +++ b/content/images/jet-lag.md @@ -0,0 +1,10 @@ +Title: jet lag +Date: 2008-07-13 10:31 +Author: paulo.ribeiro +Category: images +Slug: jet-lag +Status: published + +![jet lag](https://diffraction.pt/blog/images/photos/08/jet_lag_i.jpg) + +![jet lag](https://diffraction.pt/blog/images/photos/08/jet_lag_ii.jpg) diff --git a/content/images/joy-was-her-name.md b/content/images/joy-was-her-name.md new file mode 100644 index 0000000..dd77329 --- /dev/null +++ b/content/images/joy-was-her-name.md @@ -0,0 +1,8 @@ +Title: joy was her name +Date: 2005-02-22 13:00 +Author: paulo.ribeiro +Category: images +Slug: joy-was-her-name +Status: published + +![joy was her name](https://diffraction.pt/blog/images/photos/05/joy_was_her_name.jpg) diff --git a/content/images/just-before-sunrise.md b/content/images/just-before-sunrise.md new file mode 100644 index 0000000..6b3128e --- /dev/null +++ b/content/images/just-before-sunrise.md @@ -0,0 +1,10 @@ +Title: just before sunrise +Date: 2005-05-28 06:48 +Author: paulo.ribeiro +Category: images +Slug: just-before-sunrise +Status: published + +![just before sunrise](https://diffraction.pt/blog/images/photos/05/just_before_sunrise_i.jpg) + +![just before sunrise](https://diffraction.pt/blog/images/photos/05/just_before_sunrise_ii.jpg) diff --git a/content/images/late-night-walk.md b/content/images/late-night-walk.md new file mode 100644 index 0000000..786516d --- /dev/null +++ b/content/images/late-night-walk.md @@ -0,0 +1,8 @@ +Title: late night walk +Date: 2005-08-18 00:28 +Author: paulo.ribeiro +Category: images +Slug: late-night-walk +Status: published + +![late night walk](https://diffraction.pt/blog/images/photos/05/late_night_walk.jpg) diff --git a/content/images/learning-how-to-drive.md b/content/images/learning-how-to-drive.md new file mode 100644 index 0000000..8d5db8d --- /dev/null +++ b/content/images/learning-how-to-drive.md @@ -0,0 +1,8 @@ +Title: learning how to drive +Date: 2004-08-08 19:45 +Author: paulo.ribeiro +Category: images +Slug: learning-how-to-drive +Status: published + +![learning how to drive](https://diffraction.pt/blog/images/photos/04/learning_how_to_drive.jpg) diff --git a/content/images/leaving-hope.md b/content/images/leaving-hope.md new file mode 100644 index 0000000..7948d66 --- /dev/null +++ b/content/images/leaving-hope.md @@ -0,0 +1,8 @@ +Title: leaving hope +Date: 2012-11-18 22:04 +Author: paulo.ribeiro +Category: images +Slug: leaving-hope +Status: published + +![leaving hope](https://diffraction.pt/blog/images/photos/12/leaving_hope.jpg) diff --git a/content/images/lisboa-downtown.md b/content/images/lisboa-downtown.md new file mode 100644 index 0000000..9317de5 --- /dev/null +++ b/content/images/lisboa-downtown.md @@ -0,0 +1,14 @@ +Title: lisboa downtown +Date: 2008-05-18 13:38 +Author: paulo.ribeiro +Category: images +Slug: lisboa-downtown +Status: published + +![lisboa downtown](https://diffraction.pt/blog/images/photos/08/lisboa_downtown_i.jpg) + +![lisboa downtown](https://diffraction.pt/blog/images/photos/08/lisboa_downtown_ii.jpg) + +![lisboa downtown](https://diffraction.pt/blog/images/photos/08/lisboa_downtown_iii.jpg) + +![lisboa downtown](https://diffraction.pt/blog/images/photos/08/lisboa_downtown_iv.jpg) diff --git a/content/images/love-is-a-knife-through-the-jugular-vein-son.md b/content/images/love-is-a-knife-through-the-jugular-vein-son.md new file mode 100644 index 0000000..0447e18 --- /dev/null +++ b/content/images/love-is-a-knife-through-the-jugular-vein-son.md @@ -0,0 +1,8 @@ +Title: love is a knife through the jugular vein, son +Date: 2005-05-17 05:12 +Author: paulo.ribeiro +Category: images +Slug: love-is-a-knife-through-the-jugular-vein-son +Status: published + +![love is a knife through the jugular vein, son](https://diffraction.pt/blog/images/photos/05/love_is_a_knife_through_the_jugular_vein,_son.jpg) diff --git a/content/images/luzia.md b/content/images/luzia.md new file mode 100644 index 0000000..9034317 --- /dev/null +++ b/content/images/luzia.md @@ -0,0 +1,11 @@ +Title: luzia +Date: 2006-05-08 23:34 +Author: paulo.ribeiro +Category: images +Slug: luzia +Status: published + +![luzia](https://diffraction.pt/blog/images/photos/06/luzia.jpg) + +*largo de sta. luzia, lisboa. +para a beatriz, o bruno e a marta.* diff --git a/content/images/manteigas.md b/content/images/manteigas.md new file mode 100644 index 0000000..867d291 --- /dev/null +++ b/content/images/manteigas.md @@ -0,0 +1,8 @@ +Title: manteigas +Date: 2022-08-13 11:35 +Author: paulo.ribeiro +Category: images +Slug: manteigas +Status: published + +![manteigas](https://diffraction.pt/blog/images/photos/22/manteigas.jpg) diff --git a/content/images/maresia.md b/content/images/maresia.md new file mode 100644 index 0000000..51debdf --- /dev/null +++ b/content/images/maresia.md @@ -0,0 +1,12 @@ +Title: maresia +Date: 2008-09-20 00:39 +Author: paulo.ribeiro +Category: images +Slug: maresia +Status: published + +![maresia](https://diffraction.pt/blog/images/photos/08/maresia_i.jpg) + +![maresia](https://diffraction.pt/blog/images/photos/08/maresia_ii.jpg) + +![maresia](https://diffraction.pt/blog/images/photos/08/maresia_iii.jpg) diff --git a/content/images/maria-vinagre.md b/content/images/maria-vinagre.md new file mode 100644 index 0000000..2bd1bab --- /dev/null +++ b/content/images/maria-vinagre.md @@ -0,0 +1,8 @@ +Title: maria vinagre +Date: 2008-12-20 13:31 +Author: paulo.ribeiro +Category: images +Slug: maria-vinagre +Status: published + +![maria vinagre](https://diffraction.pt/blog/images/photos/08/maria_vinagre.jpg) diff --git a/content/images/marvao.md b/content/images/marvao.md new file mode 100644 index 0000000..9c466d4 --- /dev/null +++ b/content/images/marvao.md @@ -0,0 +1,8 @@ +Title: marvão +Date: 2013-01-10 23:26 +Author: paulo.ribeiro +Category: images +Slug: marvao +Status: published + +![marvao](https://diffraction.pt/blog/images/photos/13/marvao.jpg) diff --git a/content/images/mathematical-patterns.md b/content/images/mathematical-patterns.md new file mode 100644 index 0000000..2429171 --- /dev/null +++ b/content/images/mathematical-patterns.md @@ -0,0 +1,10 @@ +Title: mathematical patterns +Date: 2005-01-15 19:28 +Author: paulo.ribeiro +Category: images +Slug: mathematical-patterns +Status: published + +![mathematical patterns i](https://diffraction.pt/blog/images/photos/05/mathematical_patterns_i.jpg) + +![mathematical patterns ii](https://diffraction.pt/blog/images/photos/05/mathematical_patterns_ii.jpg) diff --git a/content/images/megalith.md b/content/images/megalith.md new file mode 100644 index 0000000..fb2e906 --- /dev/null +++ b/content/images/megalith.md @@ -0,0 +1,8 @@ +Title: megalith +Date: 2011-02-13 00:13 +Author: paulo.ribeiro +Category: images +Slug: megalith +Status: published + +![megalith](https://diffraction.pt/blog/images/photos/11/megalith.jpg) diff --git a/content/images/mira.md b/content/images/mira.md new file mode 100644 index 0000000..21d3f89 --- /dev/null +++ b/content/images/mira.md @@ -0,0 +1,10 @@ +Title: mira +Date: 2009-06-08 00:12 +Author: paulo.ribeiro +Category: images +Slug: mira +Status: published + +![mira](https://diffraction.pt/blog/images/photos/09/mira_i.jpg) + +![mira](https://diffraction.pt/blog/images/photos/09/mira_ii.jpg) diff --git a/content/images/moby.md b/content/images/moby.md new file mode 100644 index 0000000..505919d --- /dev/null +++ b/content/images/moby.md @@ -0,0 +1,17 @@ +Title: moby +Date: 2009-09-15 23:01 +Author: paulo.ribeiro +Category: images +Slug: moby +Status: published + +![moby](https://diffraction.pt/blog/images/photos/09/moby_i.jpg) + +![moby](https://diffraction.pt/blog/images/photos/09/moby_ii.jpg) + +
+ +*oh and it's raining again +light on your car lights, the bullets on tin* + +
diff --git a/content/images/my-home-is-31-million-light-years-away.md b/content/images/my-home-is-31-million-light-years-away.md new file mode 100644 index 0000000..c23ea1b --- /dev/null +++ b/content/images/my-home-is-31-million-light-years-away.md @@ -0,0 +1,10 @@ +Title: my home is 31 million light years away +Date: 2005-06-03 03:19 +Author: paulo.ribeiro +Category: images +Slug: my-home-is-31-million-light-years-away +Status: published + +![my home is 31 million light years away](https://diffraction.pt/blog/images/photos/05/my_home_is_31_million_light_years_away_i.jpg) + +![my home is 31 million light years away](https://diffraction.pt/blog/images/photos/05/my_home_is_31_million_light_years_away_ii.jpg) diff --git a/content/images/my-last-thread-of-hope.md b/content/images/my-last-thread-of-hope.md new file mode 100644 index 0000000..c28dda2 --- /dev/null +++ b/content/images/my-last-thread-of-hope.md @@ -0,0 +1,8 @@ +Title: my last thread of hope +Date: 2004-08-17 03:03 +Author: paulo.ribeiro +Category: images +Slug: my-last-thread-of-hope +Status: published + +![my last thread of hope](https://diffraction.pt/blog/images/photos/04/my_last_thread_of_hope.jpg) diff --git a/content/images/nazare.md b/content/images/nazare.md new file mode 100644 index 0000000..47eaeb7 --- /dev/null +++ b/content/images/nazare.md @@ -0,0 +1,8 @@ +Title: nazaré +Date: 2007-06-09 00:28 +Author: paulo.ribeiro +Category: images +Slug: nazare +Status: published + +![nazaré](https://diffraction.pt/blog/images/photos/07/nazare.jpg) diff --git a/content/images/nightscape.md b/content/images/nightscape.md new file mode 100644 index 0000000..a2345ed --- /dev/null +++ b/content/images/nightscape.md @@ -0,0 +1,8 @@ +Title: nightscape +Date: 2004-08-11 16:35 +Author: paulo.ribeiro +Category: images +Slug: nightscape +Status: published + +![nightscape](https://diffraction.pt/blog/images/photos/04/nightscape.jpg) diff --git a/content/images/no-one-can-ever-know.md b/content/images/no-one-can-ever-know.md new file mode 100644 index 0000000..70f3f8a --- /dev/null +++ b/content/images/no-one-can-ever-know.md @@ -0,0 +1,10 @@ +Title: no one can ever know +Date: 2015-11-26 19:58 +Author: paulo.ribeiro +Category: images +Slug: no-one-can-ever-know +Status: published + +![no one can ever know](https://diffraction.pt/blog/images/photos/15/no_one_can_ever_know_i.jpg) + +![no one can ever know](https://diffraction.pt/blog/images/photos/15/no_one_can_ever_know_ii.jpg) diff --git a/content/images/no-soul.md b/content/images/no-soul.md new file mode 100644 index 0000000..a053c75 --- /dev/null +++ b/content/images/no-soul.md @@ -0,0 +1,8 @@ +Title: no soul +Date: 2005-03-02 01:07 +Author: paulo.ribeiro +Category: images +Slug: no-soul +Status: published + +![no soul](https://diffraction.pt/blog/images/photos/05/no_soul.jpg) diff --git a/content/images/nobody-ever-came.md b/content/images/nobody-ever-came.md new file mode 100644 index 0000000..64d27ca --- /dev/null +++ b/content/images/nobody-ever-came.md @@ -0,0 +1,10 @@ +Title: nobody ever came +Date: 2005-05-10 07:53 +Author: paulo.ribeiro +Category: images +Slug: nobody-ever-came +Status: published + +![nobody ever came](https://diffraction.pt/blog/images/photos/05/nobody_ever_came_i.jpg) + +![nobody ever came](https://diffraction.pt/blog/images/photos/05/nobody_ever_came_ii.jpg) diff --git a/content/images/noir.md b/content/images/noir.md new file mode 100644 index 0000000..dee2249 --- /dev/null +++ b/content/images/noir.md @@ -0,0 +1,8 @@ +Title: noir +Date: 2005-09-03 01:15 +Author: paulo.ribeiro +Category: images +Slug: noir +Status: published + +![noir](https://diffraction.pt/blog/images/photos/05/noir.jpg) diff --git a/content/images/not-an-eating-disorder.md b/content/images/not-an-eating-disorder.md new file mode 100644 index 0000000..6e36e77 --- /dev/null +++ b/content/images/not-an-eating-disorder.md @@ -0,0 +1,8 @@ +Title: not an eating disorder +Date: 2005-07-29 02:21 +Author: paulo.ribeiro +Category: images +Slug: not-an-eating-disorder +Status: published + +![not an eating disorder](https://diffraction.pt/blog/images/photos/05/not_an_eating_disorder.jpg) diff --git a/content/images/o-amago-das-horas-tristes-parte-i.md b/content/images/o-amago-das-horas-tristes-parte-i.md new file mode 100644 index 0000000..961258d --- /dev/null +++ b/content/images/o-amago-das-horas-tristes-parte-i.md @@ -0,0 +1,8 @@ +Title: o âmago das horas tristes, parte i +Date: 2005-09-23 06:54 +Author: paulo.ribeiro +Category: images +Slug: o-amago-das-horas-tristes-parte-i +Status: published + +![o âmago das horas tristes, parte i](https://diffraction.pt/blog/images/photos/05/o_amago_das_horas_tristes_parte_i.jpg) diff --git a/content/images/o-amago-das-horas-tristes-parte-ii.md b/content/images/o-amago-das-horas-tristes-parte-ii.md new file mode 100644 index 0000000..4aa4257 --- /dev/null +++ b/content/images/o-amago-das-horas-tristes-parte-ii.md @@ -0,0 +1,8 @@ +Title: o âmago das horas tristes, parte ii +Date: 2005-09-23 19:09 +Author: paulo.ribeiro +Category: images +Slug: o-amago-das-horas-tristes-parte-ii +Status: published + +![o âmago das horas tristes, parte ii](https://diffraction.pt/blog/images/photos/05/o_amago_das_horas_tristes_parte_ii.jpg) diff --git a/content/images/o-calor.md b/content/images/o-calor.md new file mode 100644 index 0000000..0725794 --- /dev/null +++ b/content/images/o-calor.md @@ -0,0 +1,25 @@ +Title: o calor. +Date: 2006-02-03 01:02 +Author: paulo.ribeiro +Category: images, portuguese +Slug: o-calor +Status: published + +neva sobre lisboa enquanto a nossa pele se funde no silêncio aconchegante do edredão. as pontas dos teus dedos à descoberta das minhas costelas flutuantes. é tão pouco o nexo das palavras que trocamos + +. +  +  +![o calor.](https://diffraction.pt/blog/images/photos/06/o_calor.jpg) +  +  +tudo isto me parece agora distante como um sonho. +  +  +  +  +  +  +  +  +...talvez não tenha ainda aberto os olhos. diff --git a/content/images/o-espaco-entre-os-objectos.md b/content/images/o-espaco-entre-os-objectos.md new file mode 100644 index 0000000..63feb5e --- /dev/null +++ b/content/images/o-espaco-entre-os-objectos.md @@ -0,0 +1,12 @@ +Title: o espaço entre os objectos +Date: 2006-05-28 10:48 +Author: paulo.ribeiro +Category: images +Slug: o-espaco-entre-os-objectos +Status: published + +![o espaço entre os objectos](https://diffraction.pt/blog/images/photos/06/o_espaco_entre_os_objectos_i.jpg) + +![o espaço entre os objectos](https://diffraction.pt/blog/images/photos/06/o_espaco_entre_os_objectos_ii.jpg) + +![o espaço entre os objectos](https://diffraction.pt/blog/images/photos/06/o_espaco_entre_os_objectos_iii.jpg) diff --git a/content/images/o-que-nunca-ninguem-foi.md b/content/images/o-que-nunca-ninguem-foi.md new file mode 100644 index 0000000..0fa8c16 --- /dev/null +++ b/content/images/o-que-nunca-ninguem-foi.md @@ -0,0 +1,12 @@ +Title: és o que nunca ninguém foi para mim. +Date: 2006-07-04 23:18 +Author: paulo.ribeiro +Category: images, portuguese +Slug: o-que-nunca-ninguem-foi +Status: published + +![és o que nunca ninguém foi para mim.](https://diffraction.pt/blog/images/photos/06/o_que_nunca_ninguem_foi_i.jpg) + +![és o que nunca ninguém foi para mim.](https://diffraction.pt/blog/images/photos/06/o_que_nunca_ninguem_foi_ii.jpg) + +no tempo os corpos acabam por se aprender um ao outro. diff --git a/content/images/o-rh.md b/content/images/o-rh.md new file mode 100644 index 0000000..084d46f --- /dev/null +++ b/content/images/o-rh.md @@ -0,0 +1,8 @@ +Title: o rh- +Date: 2006-04-12 01:19 +Author: paulo.ribeiro +Category: images +Slug: o-rh +Status: published + +![o rh-](https://diffraction.pt/blog/images/photos/06/o_rh-.jpg) diff --git a/content/images/o-tempo-passa.md b/content/images/o-tempo-passa.md new file mode 100644 index 0000000..be5d8c4 --- /dev/null +++ b/content/images/o-tempo-passa.md @@ -0,0 +1,14 @@ +Title: o tempo passa +Date: 2004-12-23 00:10 +Author: paulo.ribeiro +Category: images, portuguese +Slug: o-tempo-passa +Status: published + +![o tempo passa](https://diffraction.pt/blog/images/photos/04/o_tempo_passa.jpg) + +o tempo passa. pura ilusão. como as sombras neste quarto. vim da rua. apetece-me ir para a rua + +caminhar. com este frio a fazer-me companhia. + +tentando distinguir a tua face no meio da multidão diff --git a/content/images/obidos.md b/content/images/obidos.md new file mode 100644 index 0000000..2619594 --- /dev/null +++ b/content/images/obidos.md @@ -0,0 +1,10 @@ +Title: óbidos +Date: 2007-04-04 23:13 +Author: paulo.ribeiro +Category: images +Slug: obidos +Status: published + +![óbidos](https://diffraction.pt/blog/images/photos/07/obidos_i.jpg) + +![óbidos](https://diffraction.pt/blog/images/photos/07/obidos_ii.jpg) diff --git a/content/images/old-jerusalem.md b/content/images/old-jerusalem.md new file mode 100644 index 0000000..9ceedf0 --- /dev/null +++ b/content/images/old-jerusalem.md @@ -0,0 +1,19 @@ +Title: old jerusalem +Date: 2006-07-08 10:32 +Author: paulo.ribeiro +Category: images +Slug: old-jerusalem +Status: published + +![old jerusalem](https://diffraction.pt/blog/images/photos/06/old_jerusalem_i.jpg) + +![old jerusalem](https://diffraction.pt/blog/images/photos/06/old_jerusalem_ii.jpg) + +
+ +*the seasons changing fast +the times of rain have gone +and soon they will be back +there is no time to lose* + +
diff --git a/content/images/olissipo.md b/content/images/olissipo.md new file mode 100644 index 0000000..67a720c --- /dev/null +++ b/content/images/olissipo.md @@ -0,0 +1,8 @@ +Title: olissipo +Date: 2006-07-30 17:35 +Author: paulo.ribeiro +Category: images +Slug: olissipo +Status: published + +![olissipo](https://diffraction.pt/blog/images/photos/06/olissipo.jpg) diff --git a/content/images/on-the-last-days-of-autumn.md b/content/images/on-the-last-days-of-autumn.md new file mode 100644 index 0000000..67181ed --- /dev/null +++ b/content/images/on-the-last-days-of-autumn.md @@ -0,0 +1,14 @@ +Title: on the last days of autumn +Date: 2005-12-18 20:49 +Author: paulo.ribeiro +Category: images +Slug: on-the-last-days-of-autumn +Status: published + +![on the last days of autumn](https://diffraction.pt/blog/images/photos/05/on_the_last_days_of_autumn_i.jpg) + +![on the last days of autumn](https://diffraction.pt/blog/images/photos/05/on_the_last_days_of_autumn_ii.jpg) + +![on the last days of autumn](https://diffraction.pt/blog/images/photos/05/on_the_last_days_of_autumn_iii.jpg) + +![on the last days of autumn](https://diffraction.pt/blog/images/photos/05/on_the_last_days_of_autumn_iv.jpg) diff --git a/content/images/open.md b/content/images/open.md new file mode 100644 index 0000000..6a32aa2 --- /dev/null +++ b/content/images/open.md @@ -0,0 +1,10 @@ +Title: open +Date: 2007-05-22 07:04 +Author: paulo.ribeiro +Category: images +Slug: open +Status: published + +![open](https://diffraction.pt/blog/images/photos/07/open_i.jpg) + +![open](https://diffraction.pt/blog/images/photos/07/open_ii.jpg) diff --git a/content/images/oporto-postcard-ii.md b/content/images/oporto-postcard-ii.md new file mode 100644 index 0000000..3b61317 --- /dev/null +++ b/content/images/oporto-postcard-ii.md @@ -0,0 +1,12 @@ +Title: oporto postcard ii +Date: 2006-06-26 14:21 +Author: paulo.ribeiro +Category: images +Slug: oporto-postcard-ii +Status: published + +*for beatriz and rui.* + +![oporto postcard ii](https://diffraction.pt/blog/images/photos/06/oporto_postcard_ii.jpg) + +[+](/blog/2004/08/26/oporto-postcard/) diff --git a/content/images/oporto-postcard.md b/content/images/oporto-postcard.md new file mode 100644 index 0000000..4453233 --- /dev/null +++ b/content/images/oporto-postcard.md @@ -0,0 +1,8 @@ +Title: oporto postcard +Date: 2004-08-26 21:33 +Author: paulo.ribeiro +Category: images +Slug: oporto-postcard +Status: published + +![oporto postcard](https://diffraction.pt/blog/images/photos/04/oporto_postcard.jpg) diff --git a/content/images/oppidum.md b/content/images/oppidum.md new file mode 100644 index 0000000..59b57ed --- /dev/null +++ b/content/images/oppidum.md @@ -0,0 +1,12 @@ +Title: oppidum +Date: 2008-12-17 23:26 +Author: paulo.ribeiro +Category: images +Slug: oppidum +Status: published + +![oppidum](https://diffraction.pt/blog/images/photos/08/oppidum_i.jpg) + +![oppidum](https://diffraction.pt/blog/images/photos/08/oppidum_ii.jpg) + +![oppidum](https://diffraction.pt/blog/images/photos/08/oppidum_iii.jpg) diff --git a/content/images/os-sitios-onde-nao-voltaremos.md b/content/images/os-sitios-onde-nao-voltaremos.md new file mode 100644 index 0000000..5c8fd95 --- /dev/null +++ b/content/images/os-sitios-onde-nao-voltaremos.md @@ -0,0 +1,8 @@ +Title: os sítios onde nunca voltaremos +Date: 2007-05-14 23:52 +Author: paulo.ribeiro +Category: images +Slug: os-sitios-onde-nao-voltaremos +Status: published + +![os sítios onde nunca voltaremos](https://diffraction.pt/blog/images/photos/07/os_sitios_onde_nunca_voltaremos.jpg) diff --git a/content/images/overcome.md b/content/images/overcome.md new file mode 100644 index 0000000..8ffb0a5 --- /dev/null +++ b/content/images/overcome.md @@ -0,0 +1,8 @@ +Title: overcome +Date: 2006-09-07 12:52 +Author: paulo.ribeiro +Category: images +Slug: overcome +Status: published + +![overcome](https://diffraction.pt/blog/images/photos/06/overcome.jpg) diff --git a/content/images/p.md b/content/images/p.md new file mode 100644 index 0000000..3741c2f --- /dev/null +++ b/content/images/p.md @@ -0,0 +1,8 @@ +Title: p +Date: 2005-01-02 23:03 +Author: paulo.ribeiro +Category: images +Slug: p +Status: published + +![p](https://diffraction.pt/blog/images/photos/05/p.jpg) diff --git a/content/images/panopticon.md b/content/images/panopticon.md new file mode 100644 index 0000000..391f8df --- /dev/null +++ b/content/images/panopticon.md @@ -0,0 +1,8 @@ +Title: panopticon +Date: 2009-08-19 23:20 +Author: paulo.ribeiro +Category: images +Slug: panopticon +Status: published + +![panopticon](https://diffraction.pt/blog/images/photos/09/panopticon.jpg) diff --git a/content/images/patch-of-sky.md b/content/images/patch-of-sky.md new file mode 100644 index 0000000..0622ce5 --- /dev/null +++ b/content/images/patch-of-sky.md @@ -0,0 +1,8 @@ +Title: patch of sky +Date: 2004-09-06 18:07 +Author: paulo.ribeiro +Category: images +Slug: patch-of-sky +Status: published + +![patch of sky](https://diffraction.pt/blog/images/photos/04/patch_of_sky.jpg) diff --git a/content/images/paus.md b/content/images/paus.md new file mode 100644 index 0000000..c2f418f --- /dev/null +++ b/content/images/paus.md @@ -0,0 +1,8 @@ +Title: paus +Date: 2013-03-10 00:00 +Author: paulo.ribeiro +Category: images +Slug: paus +Status: published + +![paus](https://diffraction.pt/blog/images/photos/13/paus.jpg) diff --git a/content/images/persistence-of-sound.md b/content/images/persistence-of-sound.md new file mode 100644 index 0000000..9d16ee5 --- /dev/null +++ b/content/images/persistence-of-sound.md @@ -0,0 +1,8 @@ +Title: persistence of sound +Date: 2005-05-26 08:53 +Author: paulo.ribeiro +Category: images +Slug: persistence-of-sound +Status: published + +![persistence of sound](https://diffraction.pt/blog/images/photos/05/persistence_of_sound.jpg) diff --git a/content/images/phthalocyanine.md b/content/images/phthalocyanine.md new file mode 100644 index 0000000..97ac352 --- /dev/null +++ b/content/images/phthalocyanine.md @@ -0,0 +1,8 @@ +Title: phthalocyanine +Date: 2005-09-02 09:44 +Author: paulo.ribeiro +Category: images +Slug: phthalocyanine +Status: published + +![phthalocyanine](https://diffraction.pt/blog/images/photos/05/phthalocyanine.jpg) diff --git a/content/images/plaza.md b/content/images/plaza.md new file mode 100644 index 0000000..8a368b9 --- /dev/null +++ b/content/images/plaza.md @@ -0,0 +1,8 @@ +Title: plaza +Date: 2005-09-17 13:54 +Author: paulo.ribeiro +Category: images +Slug: plaza +Status: published + +![plaza](https://diffraction.pt/blog/images/photos/05/plaza.jpg) diff --git a/content/images/point-of-no-return.md b/content/images/point-of-no-return.md new file mode 100644 index 0000000..a59856a --- /dev/null +++ b/content/images/point-of-no-return.md @@ -0,0 +1,8 @@ +Title: point of no return +Date: 2006-02-09 23:25 +Author: paulo.ribeiro +Category: images +Slug: point-of-no-return +Status: published + +![point of no return](https://diffraction.pt/blog/images/photos/06/point_of_no_return.jpg) diff --git a/content/images/ponto-de-abrigo.md b/content/images/ponto-de-abrigo.md new file mode 100644 index 0000000..0775493 --- /dev/null +++ b/content/images/ponto-de-abrigo.md @@ -0,0 +1,8 @@ +Title: ponto de abrigo +Date: 2007-04-09 23:24 +Author: paulo.ribeiro +Category: images +Slug: ponto-de-abrigo +Status: published + +![ponto de abrigo](https://diffraction.pt/blog/images/photos/07/ponto_de_abrigo.jpg) diff --git a/content/images/ponto-ii.md b/content/images/ponto-ii.md new file mode 100644 index 0000000..daecf6f --- /dev/null +++ b/content/images/ponto-ii.md @@ -0,0 +1,12 @@ +Title: .ponto ii +Date: 2005-12-24 20:17 +Author: paulo.ribeiro +Category: images, panorama +Slug: ponto-ii +Status: published + +![.ponto ii](https://diffraction.pt/blog/images/photos/05/ponto_ii_i.jpg) + +[![.ponto ii](https://diffraction.pt/blog/images/photos/05/ponto_ii_ii.jpg)](https://diffraction.pt/blog/images/photos/05/panoramas/ponto_ii.html) + +[full view +](https://diffraction.pt/blog/images/photos/05/panoramas/ponto_ii.html) diff --git a/content/images/ponto.md b/content/images/ponto.md new file mode 100644 index 0000000..cbe5a54 --- /dev/null +++ b/content/images/ponto.md @@ -0,0 +1,18 @@ +Title: .ponto +Date: 2005-12-03 02:35 +Author: paulo.ribeiro +Category: images, portuguese +Slug: ponto +Status: published + +![.ponto](https://diffraction.pt/blog/images/photos/05/ponto_i.jpg) + +![.ponto](https://diffraction.pt/blog/images/photos/05/ponto_ii.jpg) + +
+ +por mais luzes que acendam é sempre escuro + +
+ +![.ponto](https://diffraction.pt/blog/images/photos/05/ponto_iii.jpg) diff --git a/content/images/primeira-pessoa-do-plural.md b/content/images/primeira-pessoa-do-plural.md new file mode 100644 index 0000000..ee797ad --- /dev/null +++ b/content/images/primeira-pessoa-do-plural.md @@ -0,0 +1,14 @@ +Title: primeira pessoa do plural +Date: 2006-04-30 03:56 +Author: paulo.ribeiro +Category: images, portuguese +Slug: primeira-pessoa-do-plural +Status: published + +![primeira pessoa do plural](https://diffraction.pt/blog/images/photos/06/primeira_pessoa_do_plural.jpg) + +
+ +leio-te como gosto de cheirar as páginas dum livro por folhear + +
diff --git a/content/images/pulsing.md b/content/images/pulsing.md new file mode 100644 index 0000000..b8ca39f --- /dev/null +++ b/content/images/pulsing.md @@ -0,0 +1,10 @@ +Title: pulsing +Date: 2011-02-17 23:45 +Author: paulo.ribeiro +Category: images +Slug: pulsing +Status: published + +![pulsing](https://diffraction.pt/blog/images/photos/11/pulsing_i.jpg) + +![pulsing](https://diffraction.pt/blog/images/photos/11/pulsing_ii.jpg) diff --git a/content/images/pumping-through-the-bloodstream.md b/content/images/pumping-through-the-bloodstream.md new file mode 100644 index 0000000..91533e0 --- /dev/null +++ b/content/images/pumping-through-the-bloodstream.md @@ -0,0 +1,10 @@ +Title: pumping through the bloodstream +Date: 2005-03-09 00:27 +Author: paulo.ribeiro +Category: images +Slug: pumping-through-the-bloodstream +Status: published + +![pumping through the bloodstream](https://diffraction.pt/blog/images/photos/05/pumping_through_the_bloodstream_i.jpg) + +![pumping through the bloodstream](https://diffraction.pt/blog/images/photos/05/pumping_through_the_bloodstream_ii.jpg) diff --git a/content/images/quando-esta-frio.md b/content/images/quando-esta-frio.md new file mode 100644 index 0000000..0630c9e --- /dev/null +++ b/content/images/quando-esta-frio.md @@ -0,0 +1,10 @@ +Title: quando está frio +Date: 2004-11-21 21:27 +Author: paulo.ribeiro +Category: images, portuguese +Slug: quando-esta-frio +Status: published + +![quando esta frio](https://diffraction.pt/blog/images/photos/04/quando_esta_frio.jpg) + +quando está frio gosto de caminhar pela rua bem agasalhado num casaco. ao fim da tarde, quando o sol se põe atrás dos prédios e os faróis dos automóveis se começam a acender. diff --git a/content/images/ribeira.md b/content/images/ribeira.md new file mode 100644 index 0000000..231be94 --- /dev/null +++ b/content/images/ribeira.md @@ -0,0 +1,8 @@ +Title: ribeira +Date: 2009-06-27 23:51 +Author: paulo.ribeiro +Category: images +Slug: ribeira +Status: published + +![ribeira](https://diffraction.pt/blog/images/photos/09/ribeira.jpg) diff --git a/content/images/roving-the-woods.md b/content/images/roving-the-woods.md new file mode 100644 index 0000000..0cdcf91 --- /dev/null +++ b/content/images/roving-the-woods.md @@ -0,0 +1,8 @@ +Title: roving the woods +Date: 2006-10-15 16:06 +Author: paulo.ribeiro +Category: images +Slug: roving-the-woods +Status: published + +![roving the woods](https://diffraction.pt/blog/images/photos/06/roving_the_woods.jpg) diff --git a/content/images/running-late.md b/content/images/running-late.md new file mode 100644 index 0000000..196f7bf --- /dev/null +++ b/content/images/running-late.md @@ -0,0 +1,8 @@ +Title: running late +Date: 2018-09-29 12:45 +Author: paulo.ribeiro +Category: images +Slug: running-late +Status: published + +![running late](https://diffraction.pt/blog/images/photos/18/running_late.jpg) diff --git a/content/images/se-esquecessemos-o-caminho.md b/content/images/se-esquecessemos-o-caminho.md new file mode 100644 index 0000000..a739f51 --- /dev/null +++ b/content/images/se-esquecessemos-o-caminho.md @@ -0,0 +1,8 @@ +Title: se esquecêssemos o caminho de volta a casa. +Date: 2009-02-15 00:25 +Author: paulo.ribeiro +Category: images +Slug: se-esquecessemos-o-caminho +Status: published + +![se esquecêssemos o caminho de volta a casa.](https://diffraction.pt/blog/images/photos/09/se_esquecessemos_o_caminho_de_volta_a_casa..jpg) diff --git a/content/images/self-help.md b/content/images/self-help.md new file mode 100644 index 0000000..2143cf2 --- /dev/null +++ b/content/images/self-help.md @@ -0,0 +1,8 @@ +Title: self-help +Date: 2005-04-19 12:05 +Author: paulo.ribeiro +Category: images +Slug: self-help +Status: published + +![self-help](https://diffraction.pt/blog/images/photos/05/self-help.jpg) diff --git a/content/images/self.md b/content/images/self.md new file mode 100644 index 0000000..3a2e91a --- /dev/null +++ b/content/images/self.md @@ -0,0 +1,10 @@ +Title: self. +Date: 2005-04-30 02:51 +Author: paulo.ribeiro +Category: images +Slug: self +Status: published + +![self.](https://diffraction.pt/blog/images/photos/05/self_i.jpg) + +![self.](https://diffraction.pt/blog/images/photos/05/self_ii.jpg) diff --git a/content/images/sem-titulo.md b/content/images/sem-titulo.md new file mode 100644 index 0000000..4ca02dd --- /dev/null +++ b/content/images/sem-titulo.md @@ -0,0 +1,14 @@ +Title: sem título +Date: 2004-12-02 18:02 +Author: paulo.ribeiro +Category: images, portuguese +Slug: sem-titulo +Status: published + +![sem titulo i](https://diffraction.pt/blog/images/photos/04/sem_titulo_i.jpg) + +![sem titulo ii](https://diffraction.pt/blog/images/photos/04/sem_titulo_ii.jpg) + +percorri as linhas do metro à tua procura; com os olhos varri os cais na esperança de reconhecer a tua face. + +voltei para casa vazio. diff --git a/content/images/separate-the-symptoms-from-the-real-disease.md b/content/images/separate-the-symptoms-from-the-real-disease.md new file mode 100644 index 0000000..db54435 --- /dev/null +++ b/content/images/separate-the-symptoms-from-the-real-disease.md @@ -0,0 +1,12 @@ +Title: separate the symptoms from the real disease +Date: 2005-02-12 16:35 +Author: paulo.ribeiro +Category: images +Slug: separate-the-symptoms-from-the-real-disease +Status: published + +![separate the symptoms from the real disease i](https://diffraction.pt/blog/images/photos/05/separate_the_symptoms_from_the_real_disease_i.jpg) + +![separate the symptoms from the real disease ii](https://diffraction.pt/blog/images/photos/05/separate_the_symptoms_from_the_real_disease_ii.jpg) + +![separate the symptoms from the real disease iii](https://diffraction.pt/blog/images/photos/05/separate_the_symptoms_from_the_real_disease_iii.jpg) diff --git a/content/images/shimmer.md b/content/images/shimmer.md new file mode 100644 index 0000000..30310f5 --- /dev/null +++ b/content/images/shimmer.md @@ -0,0 +1,10 @@ +Title: shimmer +Date: 2007-12-16 12:11 +Author: paulo.ribeiro +Category: images +Slug: shimmer +Status: published + +![shimmer](https://diffraction.pt/blog/images/photos/07/shimmer_i.jpg) + +![shimmer](https://diffraction.pt/blog/images/photos/07/shimmer_ii.jpg) diff --git a/content/images/side-effects-of-antibiotics.md b/content/images/side-effects-of-antibiotics.md new file mode 100644 index 0000000..a148215 --- /dev/null +++ b/content/images/side-effects-of-antibiotics.md @@ -0,0 +1,12 @@ +Title: side effects of antibiotics +Date: 2004-12-26 00:05 +Author: paulo.ribeiro +Category: images +Slug: side-effects-of-antibiotics +Status: published + +![side effects of antibiotics i](https://diffraction.pt/blog/images/photos/04/side_effects_of_antibiotics_i.jpg) + +![side effects of antibiotics ii](https://diffraction.pt/blog/images/photos/04/side_effects_of_antibiotics_ii.jpg) + +![side effects of antibiotics iii](https://diffraction.pt/blog/images/photos/04/side_effects_of_antibiotics_iii.jpg) diff --git a/content/images/sidestreets.md b/content/images/sidestreets.md new file mode 100644 index 0000000..d34c9a9 --- /dev/null +++ b/content/images/sidestreets.md @@ -0,0 +1,10 @@ +Title: sidestreets +Date: 2010-12-08 22:44 +Author: paulo.ribeiro +Category: images +Slug: sidestreets +Status: published + +![sidestreets](https://diffraction.pt/blog/images/photos/10/sidestreets_i.jpg) + +![sidestreets](https://diffraction.pt/blog/images/photos/10/sidestreets_ii.jpg) diff --git a/content/images/silence-is-golden.md b/content/images/silence-is-golden.md new file mode 100644 index 0000000..4dd27d6 --- /dev/null +++ b/content/images/silence-is-golden.md @@ -0,0 +1,8 @@ +Title: silence is golden +Date: 2007-05-02 00:49 +Author: paulo.ribeiro +Category: images +Slug: silence-is-golden +Status: published + +![silence is golden](https://diffraction.pt/blog/images/photos/07/silence_is_golden.jpg) diff --git a/content/images/so-morrendo-aos-poucos.md b/content/images/so-morrendo-aos-poucos.md new file mode 100644 index 0000000..f587b72 --- /dev/null +++ b/content/images/so-morrendo-aos-poucos.md @@ -0,0 +1,10 @@ +Title: só morrendo aos poucos +Date: 2005-06-11 11:10 +Author: paulo.ribeiro +Category: images, portuguese +Slug: so-morrendo-aos-poucos +Status: published + +descubro que ainda estou vivo. + +![só morrendo aos poucos](https://diffraction.pt/blog/images/photos/05/so_morrendo_aos_poucos.jpg) diff --git a/content/images/someday.md b/content/images/someday.md new file mode 100644 index 0000000..c81d181 --- /dev/null +++ b/content/images/someday.md @@ -0,0 +1,8 @@ +Title: someday +Date: 2005-07-18 00:03 +Author: paulo.ribeiro +Category: images +Slug: someday +Status: published + +![someday](https://diffraction.pt/blog/images/photos/05/someday.jpg) diff --git a/content/images/sortelha.md b/content/images/sortelha.md new file mode 100644 index 0000000..7f32e9b --- /dev/null +++ b/content/images/sortelha.md @@ -0,0 +1,8 @@ +Title: sortelha +Date: 2009-08-20 23:03 +Author: paulo.ribeiro +Category: images +Slug: sortelha +Status: published + +![sortelha](https://diffraction.pt/blog/images/photos/09/sortelha.jpg) diff --git a/content/images/southwest.md b/content/images/southwest.md new file mode 100644 index 0000000..180a042 --- /dev/null +++ b/content/images/southwest.md @@ -0,0 +1,8 @@ +Title: southwest +Date: 2009-05-03 10:41 +Author: paulo.ribeiro +Category: images +Slug: southwest +Status: published + +![southwest](https://diffraction.pt/blog/images/photos/09/southwest.jpg) diff --git a/content/images/spasm.md b/content/images/spasm.md new file mode 100644 index 0000000..f6b1ee7 --- /dev/null +++ b/content/images/spasm.md @@ -0,0 +1,14 @@ +Title: spasm +Date: 2005-08-03 15:24 +Author: paulo.ribeiro +Category: images +Slug: spasm +Status: published + +![spasm](https://diffraction.pt/blog/images/photos/05/spasm_i.jpg) + +![spasm](https://diffraction.pt/blog/images/photos/05/spasm_ii.jpg) + +![spasm](https://diffraction.pt/blog/images/photos/05/spasm_iii.jpg) + +![spasm](https://diffraction.pt/blog/images/photos/05/spasm_iv.jpg) diff --git a/content/images/springs-outside.md b/content/images/springs-outside.md new file mode 100644 index 0000000..e4ac238 --- /dev/null +++ b/content/images/springs-outside.md @@ -0,0 +1,8 @@ +Title: spring's outside +Date: 2005-03-16 09:59 +Author: paulo.ribeiro +Category: images +Slug: springs-outside +Status: published + +![spring's outside](https://diffraction.pt/blog/images/photos/05/spring-s_outside.jpg) diff --git a/content/images/squared-ellipse.md b/content/images/squared-ellipse.md new file mode 100644 index 0000000..e6172f7 --- /dev/null +++ b/content/images/squared-ellipse.md @@ -0,0 +1,8 @@ +Title: squared ellipse +Date: 2005-06-23 10:57 +Author: paulo.ribeiro +Category: images +Slug: squared-ellipse +Status: published + +![squared ellipse](https://diffraction.pt/blog/images/photos/05/squared_ellipse.jpg) diff --git a/content/images/standstill.md b/content/images/standstill.md new file mode 100644 index 0000000..e4bc484 --- /dev/null +++ b/content/images/standstill.md @@ -0,0 +1,10 @@ +Title: standstill +Date: 2013-11-17 17:03 +Author: paulo.ribeiro +Category: images +Slug: standstill +Status: published + +![standstill](https://diffraction.pt/blog/images/photos/13/standstill_i.jpg) + +![standstill](https://diffraction.pt/blog/images/photos/13/standstill_ii.jpg) diff --git a/content/images/start-of-a-weekend.md b/content/images/start-of-a-weekend.md new file mode 100644 index 0000000..acc0868 --- /dev/null +++ b/content/images/start-of-a-weekend.md @@ -0,0 +1,10 @@ +Title: start of a weekend +Date: 2009-08-08 01:42 +Author: paulo.ribeiro +Category: images +Slug: start-of-a-weekend +Status: published + +![start of a weekend](https://diffraction.pt/blog/images/photos/09/start_of_a_weekend_i.jpg) + +![start of a weekend](https://diffraction.pt/blog/images/photos/09/start_of_a_weekend_ii.jpg) diff --git a/content/images/string-theory.md b/content/images/string-theory.md new file mode 100644 index 0000000..2316dbe --- /dev/null +++ b/content/images/string-theory.md @@ -0,0 +1,8 @@ +Title: string theory +Date: 2005-05-14 19:25 +Author: paulo.ribeiro +Category: images +Slug: string-theory +Status: published + +![string theory](https://diffraction.pt/blog/images/photos/05/string_theory.jpg) diff --git a/content/images/stroll.md b/content/images/stroll.md new file mode 100644 index 0000000..74878f4 --- /dev/null +++ b/content/images/stroll.md @@ -0,0 +1,8 @@ +Title: stroll +Date: 2007-03-07 01:36 +Author: paulo.ribeiro +Category: images +Slug: stroll +Status: published + +![stroll](https://diffraction.pt/blog/images/photos/07/stroll.jpg) diff --git a/content/images/summer-afternoon.md b/content/images/summer-afternoon.md new file mode 100644 index 0000000..9f21bf1 --- /dev/null +++ b/content/images/summer-afternoon.md @@ -0,0 +1,8 @@ +Title: summer afternoon +Date: 2004-08-07 16:29 +Author: paulo.ribeiro +Category: images +Slug: summer-afternoon +Status: published + +![summer afternoon](https://diffraction.pt/blog/images/photos/04/summer_afternoon.jpg) diff --git a/content/images/territorial.md b/content/images/territorial.md new file mode 100644 index 0000000..8afc4ee --- /dev/null +++ b/content/images/territorial.md @@ -0,0 +1,8 @@ +Title: territorial +Date: 2014-06-09 11:21 +Author: paulo.ribeiro +Category: images +Slug: territorial +Status: published + +![territorial](https://diffraction.pt/blog/images/photos/14/territorial.jpg) diff --git a/content/images/the-box.md b/content/images/the-box.md new file mode 100644 index 0000000..d84dd44 --- /dev/null +++ b/content/images/the-box.md @@ -0,0 +1,8 @@ +Title: the box +Date: 2005-01-13 12:58 +Author: paulo.ribeiro +Category: images +Slug: the-box +Status: published + +![the box](https://diffraction.pt/blog/images/photos/05/the_box.jpg) diff --git a/content/images/the-day-the-whole-world-went-away.md b/content/images/the-day-the-whole-world-went-away.md new file mode 100644 index 0000000..5aa9183 --- /dev/null +++ b/content/images/the-day-the-whole-world-went-away.md @@ -0,0 +1,8 @@ +Title: the day the whole world went away +Date: 2005-04-20 18:37 +Author: paulo.ribeiro +Category: images +Slug: the-day-the-whole-world-went-away +Status: published + +![the day the whole world went away](https://diffraction.pt/blog/images/photos/05/the_day_the_whole_world_went_away.jpg) diff --git a/content/images/the-last-night-of-summer.md b/content/images/the-last-night-of-summer.md new file mode 100644 index 0000000..ec4d520 --- /dev/null +++ b/content/images/the-last-night-of-summer.md @@ -0,0 +1,10 @@ +Title: the last night of summer +Date: 2006-09-23 09:58 +Author: paulo.ribeiro +Category: images +Slug: the-last-night-of-summer +Status: published + +![the last night of summer](https://diffraction.pt/blog/images/photos/06/the_last_night_of_summer_i.jpg) + +![the last night of summer](https://diffraction.pt/blog/images/photos/06/the_last_night_of_summer_ii.jpg) diff --git a/content/images/the-legendary-tiger-man.md b/content/images/the-legendary-tiger-man.md new file mode 100644 index 0000000..03c5f2d --- /dev/null +++ b/content/images/the-legendary-tiger-man.md @@ -0,0 +1,16 @@ +Title: the legendary tiger man +Date: 2011-01-23 12:56 +Author: paulo.ribeiro +Category: images +Slug: the-legendary-tiger-man +Status: published + +![the legendary tiger man](https://diffraction.pt/blog/images/photos/11/the_legendary_tiger_man_i.jpg) + +![the legendary tiger man](https://diffraction.pt/blog/images/photos/11/the_legendary_tiger_man_ii.jpg) + +![the legendary tiger man](https://diffraction.pt/blog/images/photos/11/the_legendary_tiger_man_iii.jpg) + +![the legendary tiger man](https://diffraction.pt/blog/images/photos/11/the_legendary_tiger_man_iv.jpg) + +![the legendary tiger man](https://diffraction.pt/blog/images/photos/11/the_legendary_tiger_man_v.jpg) diff --git a/content/images/the-mark-has-been-made.md b/content/images/the-mark-has-been-made.md new file mode 100644 index 0000000..002d5c2 --- /dev/null +++ b/content/images/the-mark-has-been-made.md @@ -0,0 +1,10 @@ +Title: the mark has been made +Date: 2018-12-12 00:21 +Author: paulo.ribeiro +Category: images +Slug: the-mark-has-been-made +Status: published + +![the mark has been made](https://diffraction.pt/blog/images/photos/18/the_mark_has_been_made_i.jpg) + +![the mark has been made](https://diffraction.pt/blog/images/photos/18/the_mark_has_been_made_ii.jpg) diff --git a/content/images/the-persistence-of-loss.md b/content/images/the-persistence-of-loss.md new file mode 100644 index 0000000..f27990d --- /dev/null +++ b/content/images/the-persistence-of-loss.md @@ -0,0 +1,20 @@ +Title: the persistence of loss +Date: 2014-10-12 19:47 +Author: paulo.ribeiro +Category: images +Slug: the-persistence-of-loss +Status: published + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_i.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_ii.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_iii.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_iv.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_v.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_vi.jpg) + +![the persistence of loss](https://diffraction.pt/blog/images/photos/14/the_persistence_of_loss_vii.jpg) diff --git a/content/images/the-soundless-dawn-came-alive.md b/content/images/the-soundless-dawn-came-alive.md new file mode 100644 index 0000000..8923d70 --- /dev/null +++ b/content/images/the-soundless-dawn-came-alive.md @@ -0,0 +1,8 @@ +Title: the soundless dawn came alive as cities began to mark the horizon +Date: 2007-06-25 22:21 +Author: paulo.ribeiro +Category: images +Slug: the-soundless-dawn-came-alive +Status: published + +![the soundless dawn came alive](https://diffraction.pt/blog/images/photos/07/the_soundless_dawn_came_alive.jpg) diff --git a/content/images/the-soundless-dawn.md b/content/images/the-soundless-dawn.md new file mode 100644 index 0000000..1633a39 --- /dev/null +++ b/content/images/the-soundless-dawn.md @@ -0,0 +1,10 @@ +Title: the soundless dawn +Date: 2007-06-22 20:29 +Author: paulo.ribeiro +Category: images +Slug: the-soundless-dawn +Status: published + +![the soundless dawn](https://diffraction.pt/blog/images/photos/07/the_soundless_dawn_i.jpg) + +![the soundless dawn](https://diffraction.pt/blog/images/photos/07/the_soundless_dawn_ii.jpg) diff --git a/content/images/the-way-out-is-through.md b/content/images/the-way-out-is-through.md new file mode 100644 index 0000000..9157fae --- /dev/null +++ b/content/images/the-way-out-is-through.md @@ -0,0 +1,8 @@ +Title: the way out is through +Date: 2005-02-26 02:31 +Author: paulo.ribeiro +Category: images +Slug: the-way-out-is-through +Status: published + +![the way out is through](https://diffraction.pt/blog/images/photos/05/the_way_out_is_through.jpg) diff --git a/content/images/this-is-the-last-song.md b/content/images/this-is-the-last-song.md new file mode 100644 index 0000000..3858b36 --- /dev/null +++ b/content/images/this-is-the-last-song.md @@ -0,0 +1,8 @@ +Title: this is the last song +Date: 2005-09-24 19:54 +Author: paulo.ribeiro +Category: images +Slug: this-is-the-last-song +Status: published + +![this is the last song](https://diffraction.pt/blog/images/photos/05/this_is_the_last_song.jpg) diff --git a/content/images/thomas-was-alone.md b/content/images/thomas-was-alone.md new file mode 100644 index 0000000..77c0ab7 --- /dev/null +++ b/content/images/thomas-was-alone.md @@ -0,0 +1,8 @@ +Title: thomas was alone +Date: 2013-08-27 00:12 +Author: paulo.ribeiro +Category: images +Slug: thomas-was-alone +Status: published + +![thomas was alone](https://diffraction.pt/blog/images/photos/13/thomas_was_alone.jpg) diff --git a/content/images/ticket-machine.md b/content/images/ticket-machine.md new file mode 100644 index 0000000..8b6aa36 --- /dev/null +++ b/content/images/ticket-machine.md @@ -0,0 +1,8 @@ +Title: ticket machine +Date: 2004-09-09 10:31 +Author: paulo.ribeiro +Category: images +Slug: ticket-machine +Status: published + +![ticket machine](https://diffraction.pt/blog/images/photos/04/ticket_machine.jpg) diff --git a/content/images/today-it-rains.md b/content/images/today-it-rains.md new file mode 100644 index 0000000..0d3a0ce --- /dev/null +++ b/content/images/today-it-rains.md @@ -0,0 +1,8 @@ +Title: today it rains +Date: 2004-08-08 18:28 +Author: paulo.ribeiro +Category: images +Slug: today-it-rains +Status: published + +![today it rains](https://diffraction.pt/blog/images/photos/04/today_it_rains.jpg) diff --git a/content/images/triad.md b/content/images/triad.md new file mode 100644 index 0000000..2c62645 --- /dev/null +++ b/content/images/triad.md @@ -0,0 +1,8 @@ +Title: triad +Date: 2005-03-19 13:08 +Author: paulo.ribeiro +Category: images +Slug: triad +Status: published + +![triad](https://diffraction.pt/blog/images/photos/05/triad.jpg) diff --git a/content/images/tudo-parecia-tao-perfeito.md b/content/images/tudo-parecia-tao-perfeito.md new file mode 100644 index 0000000..880a145 --- /dev/null +++ b/content/images/tudo-parecia-tao-perfeito.md @@ -0,0 +1,10 @@ +Title: tudo parecia tão perfeito. +Date: 2004-10-24 23:05 +Author: paulo.ribeiro +Category: images, portuguese +Slug: tudo-parecia-tao-perfeito +Status: published + +![tudo parecia tao perfeito](https://diffraction.pt/blog/images/photos/04/tudo_parecia_tao_perfeito.jpg) + +as nossas mãos que encaixavam uma na outra. os momentos em que ouvíamos o silêncio e era como se tudo disséssemos. ou o vento a desordenar o teu cabelo... diff --git a/content/images/ulmus-parvifolia.md b/content/images/ulmus-parvifolia.md new file mode 100644 index 0000000..4a60acf --- /dev/null +++ b/content/images/ulmus-parvifolia.md @@ -0,0 +1,8 @@ +Title: ulmus parvifolia +Date: 2011-06-11 22:18 +Author: paulo.ribeiro +Category: images +Slug: ulmus-parvifolia +Status: published + +![ulmus parvifolia](https://diffraction.pt/blog/images/photos/11/ulmus_parvifolia.jpg) diff --git a/content/images/unclehead.md b/content/images/unclehead.md new file mode 100644 index 0000000..87a15ca --- /dev/null +++ b/content/images/unclehead.md @@ -0,0 +1,8 @@ +Title: unclehead +Date: 2008-02-17 18:52 +Author: paulo.ribeiro +Category: images +Slug: unclehead +Status: published + +![unclehead](https://diffraction.pt/blog/images/photos/08/unclehead.jpg) diff --git a/content/images/uncoil.md b/content/images/uncoil.md new file mode 100644 index 0000000..d4000c5 --- /dev/null +++ b/content/images/uncoil.md @@ -0,0 +1,8 @@ +Title: uncoil +Date: 2009-08-29 13:19 +Author: paulo.ribeiro +Category: images +Slug: uncoil +Status: published + +![uncoil](https://diffraction.pt/blog/images/photos/09/uncoil.jpg) diff --git a/content/images/underneath-my-soiled-feet.md b/content/images/underneath-my-soiled-feet.md new file mode 100644 index 0000000..8f1eda7 --- /dev/null +++ b/content/images/underneath-my-soiled-feet.md @@ -0,0 +1,16 @@ +Title: underneath my soiled feet +Date: 2015-12-12 18:57 +Author: paulo.ribeiro +Category: images +Slug: underneath-my-soiled-feet +Status: published + +![underneath my soiled feet](https://diffraction.pt/blog/images/photos/15/underneath_my_soiled_feet_i.jpg) + +![underneath my soiled feet](https://diffraction.pt/blog/images/photos/15/underneath_my_soiled_feet_ii.jpg) + +![underneath my soiled feet](https://diffraction.pt/blog/images/photos/15/underneath_my_soiled_feet_iii.jpg) + +![underneath my soiled feet](https://diffraction.pt/blog/images/photos/15/underneath_my_soiled_feet_iv.jpg) + +![underneath my soiled feet](https://diffraction.pt/blog/images/photos/15/underneath_my_soiled_feet_v.jpg) diff --git a/content/images/upward-spiral.md b/content/images/upward-spiral.md new file mode 100644 index 0000000..d32d1ee --- /dev/null +++ b/content/images/upward-spiral.md @@ -0,0 +1,8 @@ +Title: upward spiral +Date: 2005-03-24 16:30 +Author: paulo.ribeiro +Category: images +Slug: upward-spiral +Status: published + +![upward spiral](https://diffraction.pt/blog/images/photos/05/upward_spiral.jpg) diff --git a/content/images/vantage.md b/content/images/vantage.md new file mode 100644 index 0000000..da2c6b5 --- /dev/null +++ b/content/images/vantage.md @@ -0,0 +1,8 @@ +Title: vantage +Date: 2005-08-19 08:22 +Author: paulo.ribeiro +Category: images +Slug: vantage +Status: published + +![vantage](https://diffraction.pt/blog/images/photos/05/vantage.jpg) diff --git a/content/images/vazio.md b/content/images/vazio.md new file mode 100644 index 0000000..4f9c872 --- /dev/null +++ b/content/images/vazio.md @@ -0,0 +1,21 @@ +Title: vazio +Date: 2005-04-17 02:38 +Author: paulo.ribeiro +Category: images, portuguese +Slug: vazio +Status: published + +![vazio](https://diffraction.pt/blog/images/photos/05/vazio.jpg) + +como o antro da cela trancada +da minha mente +desprovido de qualquer significado + +tão vazio + +despido e quase enregelado +demente +como amor a esvair-se em nada +  +  +*(1998)* diff --git a/content/images/verticality-is-bent.md b/content/images/verticality-is-bent.md new file mode 100644 index 0000000..163ab56 --- /dev/null +++ b/content/images/verticality-is-bent.md @@ -0,0 +1,8 @@ +Title: verticality is bent +Date: 2005-02-21 08:44 +Author: paulo.ribeiro +Category: images +Slug: verticality-is-bent +Status: published + +![verticality is bent](https://diffraction.pt/blog/images/photos/05/verticality_is_bent.jpg) diff --git a/content/images/viseu-by-night-i.md b/content/images/viseu-by-night-i.md new file mode 100644 index 0000000..fd9ed69 --- /dev/null +++ b/content/images/viseu-by-night-i.md @@ -0,0 +1,10 @@ +Title: viseu by night (i) +Date: 2005-02-20 03:51 +Author: paulo.ribeiro +Category: images +Slug: viseu-by-night-i +Status: published + +![viseu by night \(i\](https://diffraction.pt/blog/images/photos/05/viseu_by_night_\(i\).jpg) + +*rua do comércio* diff --git a/content/images/viseu-by-night-ii.md b/content/images/viseu-by-night-ii.md new file mode 100644 index 0000000..1199a6a --- /dev/null +++ b/content/images/viseu-by-night-ii.md @@ -0,0 +1,13 @@ +Title: viseu by night (ii) +Date: 2005-02-27 02:15 +Author: paulo.ribeiro +Category: images +Slug: viseu-by-night-ii +Status: published + +![viseu by night \(ii\](https://diffraction.pt/blog/images/photos/05/viseu_by_night_\(ii\).jpg) + +*porta do soar* +  +  +viseu by night [(i)](/blog/2005/02/20/viseu-by-night-i/) diff --git a/content/images/viseu-by-night-iii.md b/content/images/viseu-by-night-iii.md new file mode 100644 index 0000000..17f7d27 --- /dev/null +++ b/content/images/viseu-by-night-iii.md @@ -0,0 +1,13 @@ +Title: viseu by night (iii) +Date: 2005-03-06 02:08 +Author: paulo.ribeiro +Category: images +Slug: viseu-by-night-iii +Status: published + +![viseu by night \(iii\](https://diffraction.pt/blog/images/photos/05/viseu_by_night_\(iii\).jpg) + +*praça da república (rossio) - câmara municipal* +  +  +viseu by night [(i)](/blog/2005/02/20/viseu-by-night-i/) [(ii)](/blog/2005/02/27/viseu-by-night-ii/) diff --git a/content/images/viseu-by-night-iv.md b/content/images/viseu-by-night-iv.md new file mode 100644 index 0000000..c224b2b --- /dev/null +++ b/content/images/viseu-by-night-iv.md @@ -0,0 +1,13 @@ +Title: viseu by night (iv) +Date: 2005-03-13 01:22 +Author: paulo.ribeiro +Category: images +Slug: viseu-by-night-iv +Status: published + +![viseu by night \(iv\](https://diffraction.pt/blog/images/photos/05/viseu_by_night_\(iv\).jpg) + +*avenida dr. antónio josé de almeida* +  +  +viseu by night [(i)](/blog/2005/02/20/viseu-by-night-i/) [(ii)](/blog/2005/02/27/viseu-by-night-ii/) [(iii)](/blog/2005/03/06/viseu-by-night-iii/) diff --git a/content/images/vitamin-c.md b/content/images/vitamin-c.md new file mode 100644 index 0000000..be18a5a --- /dev/null +++ b/content/images/vitamin-c.md @@ -0,0 +1,8 @@ +Title: vitamin c +Date: 2005-01-08 18:54 +Author: paulo.ribeiro +Category: images +Slug: vitamin-c +Status: published + +![vitamin c](https://diffraction.pt/blog/images/photos/05/vitamin_c.jpg) diff --git a/content/images/waiting-for-twilight.md b/content/images/waiting-for-twilight.md new file mode 100644 index 0000000..82431ec --- /dev/null +++ b/content/images/waiting-for-twilight.md @@ -0,0 +1,8 @@ +Title: waiting for twilight +Date: 2005-02-01 18:33 +Author: paulo.ribeiro +Category: images +Slug: waiting-for-twilight +Status: published + +![waiting for twilight](https://diffraction.pt/blog/images/photos/05/waiting_for_twilight.jpg) diff --git a/content/images/warm-engines.md b/content/images/warm-engines.md new file mode 100644 index 0000000..71f8f18 --- /dev/null +++ b/content/images/warm-engines.md @@ -0,0 +1,10 @@ +Title: warm engines lullabying while i lay my head to rest +Date: 2005-11-10 23:49 +Author: paulo.ribeiro +Category: images +Slug: warm-engines +Status: published + +![warm engines lullabying while i lay my head to rest](https://diffraction.pt/blog/images/photos/05/warm_engines_i.jpg) + +![warm engines lullabying while i lay my head to rest](https://diffraction.pt/blog/images/photos/05/warm_engines_ii.jpg) diff --git a/content/images/wavering-radiant.md b/content/images/wavering-radiant.md new file mode 100644 index 0000000..f358eaf --- /dev/null +++ b/content/images/wavering-radiant.md @@ -0,0 +1,8 @@ +Title: wavering radiant +Date: 2018-08-10 22:12 +Author: paulo.ribeiro +Category: images +Slug: wavering-radiant +Status: published + +![wavering radiant](https://diffraction.pt/blog/images/photos/18/wavering_radiant.jpg) diff --git a/content/images/we-are-but-stones.md b/content/images/we-are-but-stones.md new file mode 100644 index 0000000..b9e11f8 --- /dev/null +++ b/content/images/we-are-but-stones.md @@ -0,0 +1,10 @@ +Title: we are but stones +Date: 2005-05-05 08:05 +Author: paulo.ribeiro +Category: images +Slug: we-are-but-stones +Status: published + +![we are but stones](https://diffraction.pt/blog/images/photos/05/we_are_but_stones_i.jpg) + +![we are but stones](https://diffraction.pt/blog/images/photos/05/we_are_but_stones_ii.jpg) diff --git a/content/images/what-i-do.md b/content/images/what-i-do.md new file mode 100644 index 0000000..b4a0d61 --- /dev/null +++ b/content/images/what-i-do.md @@ -0,0 +1,8 @@ +Title: what i do +Date: 2004-08-12 16:21 +Author: paulo.ribeiro +Category: images +Slug: what-i-do +Status: published + +![what i do](https://diffraction.pt/blog/images/photos/04/what_i_do.jpg) diff --git a/content/images/what-once-was.md b/content/images/what-once-was.md new file mode 100644 index 0000000..53de6fb --- /dev/null +++ b/content/images/what-once-was.md @@ -0,0 +1,8 @@ +Title: what once was +Date: 2006-09-14 21:51 +Author: paulo.ribeiro +Category: images +Slug: what-once-was +Status: published + +![what once was](https://diffraction.pt/blog/images/photos/06/what_once_was.jpg) diff --git a/content/images/when-there-is-no-echo.md b/content/images/when-there-is-no-echo.md new file mode 100644 index 0000000..f15fb1d --- /dev/null +++ b/content/images/when-there-is-no-echo.md @@ -0,0 +1,8 @@ +Title: when there is no echo +Date: 2008-12-08 21:06 +Author: paulo.ribeiro +Category: images +Slug: when-there-is-no-echo +Status: published + +![when there is no echo](https://diffraction.pt/blog/images/photos/08/when_there_is_no_echo.jpg) diff --git a/content/images/where-it-comes-to-rest.md b/content/images/where-it-comes-to-rest.md new file mode 100644 index 0000000..cb8bd99 --- /dev/null +++ b/content/images/where-it-comes-to-rest.md @@ -0,0 +1,10 @@ +Title: where it comes to rest +Date: 2008-08-01 22:47 +Author: paulo.ribeiro +Category: images +Slug: where-it-comes-to-rest +Status: published + +![where it comes to rest](https://diffraction.pt/blog/images/photos/08/where_it_comes_to_rest_i.jpg) + +![where it comes to rest](https://diffraction.pt/blog/images/photos/08/where_it_comes_to_rest_ii.jpg) diff --git a/content/images/while-the-rain-whispers-outside.md b/content/images/while-the-rain-whispers-outside.md new file mode 100644 index 0000000..eaa9ace --- /dev/null +++ b/content/images/while-the-rain-whispers-outside.md @@ -0,0 +1,8 @@ +Title: while the rain whispers outside +Date: 2010-02-08 22:14 +Author: paulo.ribeiro +Category: images +Slug: while-the-rain-whispers-outside +Status: published + +![while the rain whispers outside](https://diffraction.pt/blog/images/photos/10/while_the_rain_whispers_outside.jpg) diff --git a/content/images/within.md b/content/images/within.md new file mode 100644 index 0000000..ab02753 --- /dev/null +++ b/content/images/within.md @@ -0,0 +1,12 @@ +Title: within +Date: 2007-08-18 12:55 +Author: paulo.ribeiro +Category: images +Slug: within +Status: published + +![within](https://diffraction.pt/blog/images/photos/07/within_i.jpg) + +![within](https://diffraction.pt/blog/images/photos/07/within_ii.jpg) + +![within](https://diffraction.pt/blog/images/photos/07/within_iii.jpg) diff --git a/content/images/xc.md b/content/images/xc.md new file mode 100644 index 0000000..fdd8726 --- /dev/null +++ b/content/images/xc.md @@ -0,0 +1,10 @@ +Title: xc +Date: 2007-10-08 22:45 +Author: paulo.ribeiro +Category: images +Slug: xc +Status: published + +![xc](https://diffraction.pt/blog/images/photos/07/xc_i.jpg) + +![xc](https://diffraction.pt/blog/images/photos/07/xc_ii.jpg) diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 0000000..9f4ddf4 --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,19 @@ +Title: about +Date: 2011-09-15 17:11 +Author: paulo.ribeiro +Slug: about +Status: published + +hi\! my name is paulo. i make photos or write when i feel like it. + + + + +![paulo ribeiro](https://diffraction.pt/blog/images/photos/about.jpg) + + + + +| | | +| -------------------------------- | -------------------------------------------------------------------------------------------------------------: | +| brew yourself a nice cup of tea. | [email](javascript:Transpose_Email\('paulo','diffraction.pt','d%20i%20f%20f%20r%20a%20c%20t%20i%20o%20n'\)%20) | diff --git a/content/pages/archives.md b/content/pages/archives.md new file mode 100644 index 0000000..957df63 --- /dev/null +++ b/content/pages/archives.md @@ -0,0 +1,7 @@ +Title: archives +Date: 2011-09-15 17:12 +Author: paulo.ribeiro +Slug: archives +Status: published + + diff --git a/content/panorama/apesar-do-frio.md b/content/panorama/apesar-do-frio.md new file mode 100644 index 0000000..5717af2 --- /dev/null +++ b/content/panorama/apesar-do-frio.md @@ -0,0 +1,10 @@ +Title: apesar do frio +Date: 2005-10-16 10:21 +Author: paulo.ribeiro +Category: panorama +Slug: apesar-do-frio +Status: published + +[![apesar do frio](https://diffraction.pt/blog/images/photos/05/apesar_do_frio.jpg)](https://diffraction.pt/blog/images/photos/05/panoramas/apesar_do_frio.html) + +[full view +](https://diffraction.pt/blog/images/photos/05/panoramas/apesar_do_frio.html) diff --git a/content/panorama/depois-da-chuva.md b/content/panorama/depois-da-chuva.md new file mode 100644 index 0000000..4925c43 --- /dev/null +++ b/content/panorama/depois-da-chuva.md @@ -0,0 +1,10 @@ +Title: depois da chuva +Date: 2006-11-03 22:51 +Author: paulo.ribeiro +Category: panorama +Slug: depois-da-chuva +Status: published + +[![depois da chuva](https://diffraction.pt/blog/images/photos/06/depois_da_chuva.jpg)](https://diffraction.pt/blog/images/photos/06/panoramas/depois_da_chuva.html) + +[full view +](https://diffraction.pt/blog/images/photos/06/panoramas/depois_da_chuva.html) diff --git a/content/panorama/guimaraes.md b/content/panorama/guimaraes.md new file mode 100644 index 0000000..e83284a --- /dev/null +++ b/content/panorama/guimaraes.md @@ -0,0 +1,10 @@ +Title: guimarães +Date: 2007-11-11 11:27 +Author: paulo.ribeiro +Category: panorama +Slug: guimaraes +Status: published + +[![guimaraes](https://diffraction.pt/blog/images/photos/07/guimaraes.jpg)](https://diffraction.pt/blog/images/photos/07/panoramas/guimaraes.html) + +[full view +](https://diffraction.pt/blog/images/photos/07/panoramas/guimaraes.html) diff --git a/content/panorama/ha-sitios-que-nao-me-canso-de-visitar.md b/content/panorama/ha-sitios-que-nao-me-canso-de-visitar.md new file mode 100644 index 0000000..ea8c6c5 --- /dev/null +++ b/content/panorama/ha-sitios-que-nao-me-canso-de-visitar.md @@ -0,0 +1,42 @@ +Title: há sítios que não me canso de visitar. +Date: 2005-12-27 23:22 +Author: paulo.ribeiro +Category: panorama, portuguese +Slug: ha-sitios-que-nao-me-canso-de-visitar +Status: published + +do que me lembro: + +dela, sentada sobre a relva, as pernas dobradas à direita do corpo. o à-vontade duma menina sentada num sofá invisível. + +retira um bloco de notas da mala que havia pousado a seu lado. a mala é colorida. os sapatos são a condizer. em cada pé, uma borboleta. + +enquanto escrevinha, distraída, exige-me que fale. “fala\!” + +não sei o que dizer. não sou interessante, não tenho sobre que falar. não me ocorre uma palavra sequer. + +limito-me a seguir o desenrolar de cada gesto seu como se assistisse a um filme. olho-a, enlevado, do fundo da minha mudez. registo mentalmente as imagens que sei vir a querer rever vezes sem conta. + +o sol e o calor. o verde e a sombra. sâmaras rodopiam sem pressa do topo dos ulmeiros. vão descendo numa quase suspensão até pousarem à nossa volta. o tempo esquece-nos; ninguém existe para além de nós. + +subitamente, lembra-se. interrompe o esboço e pede-me que lhe diga por fim onde a beijaria. + +sorrio, envergonhado. também eu me sinto como um miúdo, afinal. tomo-lhe o antebraço na mão direita e com a esquerda mostro-lhe onde. ela sorri de volta. é a primeira vez que nos tocamos. + +pergunta-me ainda de que mais gosto nela para além *disto* (escreve-o numa página em branco que me dá a ler). ocorre-me apenas dizer “tudo”, num repente. os cabelos pretos caindo-lhe sobre os ombros. o silêncio. acabo por nada dizer. +  +  +  +  +  +...nunca mais estes momentos serão nossos. penso-o. +  +  +  +[![há sítios que não me canso de visitar.](https://diffraction.pt/blog/images/photos/05/ha_sitios_que_nao_me_canso_de_visitar.jpg)](https://diffraction.pt/blog/images/photos/05/panoramas/ha_sitios_que_nao_me_canso_de_visitar.html) + +[full view +](https://diffraction.pt/blog/images/photos/05/panoramas/ha_sitios_que_nao_me_canso_de_visitar.html) +  +  +  +*de todas, é esta a imagem que mais quero guardar de ti. aquela que, sem saber, lembrava antes mesmo de te conhecer.* diff --git a/content/panorama/irei-sentir-saudades-de-lisboa.md b/content/panorama/irei-sentir-saudades-de-lisboa.md new file mode 100644 index 0000000..a8b9c9d --- /dev/null +++ b/content/panorama/irei-sentir-saudades-de-lisboa.md @@ -0,0 +1,12 @@ +Title: irei sentir saudades de lisboa. +Date: 2005-12-09 08:45 +Author: paulo.ribeiro +Category: panorama, portuguese +Slug: irei-sentir-saudades-de-lisboa +Status: published + +sei-o. + +[![irei sentir saudades de lisboa.](https://diffraction.pt/blog/images/photos/05/irei_sentir_saudades_de_lisboa.jpg)](https://diffraction.pt/blog/images/photos/05/panoramas/irei_sentir_saudades_de_lisboa.html) + +[full view +](https://diffraction.pt/blog/images/photos/05/panoramas/irei_sentir_saudades_de_lisboa.html) diff --git a/content/panorama/madeira.md b/content/panorama/madeira.md new file mode 100644 index 0000000..e6f584b --- /dev/null +++ b/content/panorama/madeira.md @@ -0,0 +1,10 @@ +Title: madeira +Date: 2013-12-08 21:36 +Author: paulo.ribeiro +Category: panorama +Slug: madeira +Status: published + +[![madeira](https://diffraction.pt/blog/images/photos/13/madeira.jpg)](https://diffraction.pt/blog/images/photos/13/panoramas/madeira.html) + +[full view +](https://diffraction.pt/blog/images/photos/13/panoramas/madeira.html) diff --git a/content/panorama/the-city-at-our-feet.md b/content/panorama/the-city-at-our-feet.md new file mode 100644 index 0000000..aba649e --- /dev/null +++ b/content/panorama/the-city-at-our-feet.md @@ -0,0 +1,10 @@ +Title: the city at our feet +Date: 2006-04-15 20:18 +Author: paulo.ribeiro +Category: panorama +Slug: the-city-at-our-feet +Status: published + +[![the city at our feet](https://diffraction.pt/blog/images/photos/06/the_city_at_our_feet.jpg)](https://diffraction.pt/blog/images/photos/06/panoramas/the_city_at_our_feet.html) + +[full view +](https://diffraction.pt/blog/images/photos/06/panoramas/the_city_at_our_feet.html) diff --git a/content/polaroid/bobota.md b/content/polaroid/bobota.md new file mode 100644 index 0000000..92b391b --- /dev/null +++ b/content/polaroid/bobota.md @@ -0,0 +1,12 @@ +Title: "bobota" +Date: 2005-08-14 00:49 +Author: paulo.ribeiro +Category: polaroid +Slug: bobota +Status: published + +
+ +![bobota](https://diffraction.pt/blog/images/photos/05/bobota.jpg) + +
diff --git a/content/polaroid/domus-justitiae.md b/content/polaroid/domus-justitiae.md new file mode 100644 index 0000000..f885dc3 --- /dev/null +++ b/content/polaroid/domus-justitiae.md @@ -0,0 +1,24 @@ +Title: domus justitiæ +Date: 2005-07-15 08:18 +Author: paulo.ribeiro +Category: polaroid +Slug: domus-justitiae +Status: published + +
+ +![domus justitiæ](https://diffraction.pt/blog/images/photos/05/domus_justitiae_i.jpg) + +
+ +
+ +![domus justitiæ](https://diffraction.pt/blog/images/photos/05/domus_justitiae_ii.jpg) + +
+ +
+ +![domus justitiæ](https://diffraction.pt/blog/images/photos/05/domus_justitiae_iii.jpg) + +
diff --git a/content/polaroid/forever-parted.md b/content/polaroid/forever-parted.md new file mode 100644 index 0000000..59579f0 --- /dev/null +++ b/content/polaroid/forever-parted.md @@ -0,0 +1,14 @@ +Title: forever parted +Date: 2005-05-08 02:01 +Author: paulo.ribeiro +Category: polaroid +Slug: forever-parted +Status: published + +
+ +![forever parted](https://diffraction.pt/blog/images/photos/05/forever_parted_i.jpg) + +![forever parted](https://diffraction.pt/blog/images/photos/05/forever_parted_ii.jpg) + +
diff --git a/content/polaroid/midsummer-stroll.md b/content/polaroid/midsummer-stroll.md new file mode 100644 index 0000000..556d245 --- /dev/null +++ b/content/polaroid/midsummer-stroll.md @@ -0,0 +1,12 @@ +Title: midsummer stroll +Date: 2009-08-22 15:21 +Author: paulo.ribeiro +Category: polaroid +Slug: midsummer-stroll +Status: published + +
+ +![midsummer stroll](https://diffraction.pt/blog/images/photos/09/midsummer_stroll.jpg) + +
diff --git a/content/polaroid/observo-pacientemente-o-nascer-do-sol.md b/content/polaroid/observo-pacientemente-o-nascer-do-sol.md new file mode 100644 index 0000000..c7ef393 --- /dev/null +++ b/content/polaroid/observo-pacientemente-o-nascer-do-sol.md @@ -0,0 +1,13 @@ +Title: observo pacientemente o nascer do sol. +Date: 2005-06-18 07:28 +Author: paulo.ribeiro +Category: polaroid, portuguese +Slug: observo-pacientemente-o-nascer-do-sol +Status: published + +aguardo um novo dia. +como companhia, um amontoado de pedras. dispostas ao acaso. + +![observo pacientemente o nascer do sol.](https://diffraction.pt/blog/images/photos/05/observo_pacientemente_o_nascer_do_sol.jpg) + +aguardo. diff --git a/content/polaroid/till-naught-but-temperance.md b/content/polaroid/till-naught-but-temperance.md new file mode 100644 index 0000000..49363e2 --- /dev/null +++ b/content/polaroid/till-naught-but-temperance.md @@ -0,0 +1,18 @@ +Title: till naught but temperance +Date: 2017-10-08 00:57 +Author: paulo.ribeiro +Category: polaroid +Slug: till-naught-but-temperance +Status: published + +
+ +![till naught but temperance](https://diffraction.pt/blog/images/photos/17/till_naught_but_temperance_i.jpg) + +
+ +
+ +![till naught but temperance](https://diffraction.pt/blog/images/photos/17/till_naught_but_temperance_ii.jpg) + +
diff --git a/content/polaroid/to-breathe.md b/content/polaroid/to-breathe.md new file mode 100644 index 0000000..1e353e6 --- /dev/null +++ b/content/polaroid/to-breathe.md @@ -0,0 +1,18 @@ +Title: to breathe +Date: 2006-01-18 08:15 +Author: paulo.ribeiro +Category: polaroid +Slug: to-breathe +Status: published + +
+ +![to breathe](https://diffraction.pt/blog/images/photos/06/to_breathe_i.jpg "to breathe") + +
+ +
+ +![to breathe](https://diffraction.pt/blog/images/photos/06/to_breathe_ii.jpg "to breathe") + +
diff --git a/content/portuguese/a-eternidade.md b/content/portuguese/a-eternidade.md new file mode 100644 index 0000000..3cc27fb --- /dev/null +++ b/content/portuguese/a-eternidade.md @@ -0,0 +1,42 @@ +Title: a eternidade. +Date: 2005-06-08 23:31 +Author: paulo.ribeiro +Category: portuguese +Slug: a-eternidade +Status: published + +  + +multiplicada pelo desalento + + de + +cada instante é o tempo que as ondas + +  + +electromagnéticas demoram a percorrer o mar + + de + +nada que nos + +  + +  + +  + +  + +  + +  + +separa + +. + +  +  +[+](/blog/2005/06/03/o-infinito/) diff --git a/content/portuguese/a-fazer.md b/content/portuguese/a-fazer.md new file mode 100644 index 0000000..cac8ee3 --- /dev/null +++ b/content/portuguese/a-fazer.md @@ -0,0 +1,21 @@ +Title: a fazer: +Date: 2005-06-26 01:59 +Author: paulo.ribeiro +Category: portuguese +Slug: a-fazer +Status: published + +.cortar a electricidade +.espalhar as unhas no lavatório +.estancar (de uma vez por todas) a baba que me pinga na boca +.lavar a lixívia com mãos +.coser os pêlos nos poros +.mais plástico para arder +.álcool etílico no congelador, fita adesiva nos pulsos +.lamber as migalhas do chão +.masturbar-me masturbar-me masturbar-me +.embotar a faca grande +.cuspir as cápsulas de debaixo da língua + +ordem indiferente. assim que me dispam o colete de forças. +assim. diff --git a/content/portuguese/a-seu-tempo.md b/content/portuguese/a-seu-tempo.md new file mode 100644 index 0000000..e96919d --- /dev/null +++ b/content/portuguese/a-seu-tempo.md @@ -0,0 +1,11 @@ +Title: ...a seu tempo cairás nas falhas da minha memória. +Date: 2005-11-18 01:00 +Author: paulo.ribeiro +Category: portuguese +Slug: a-seu-tempo +Status: published + +daqui a uma vida, quando tudo estiver mudado, recordar-te-ei ao descansar a cabeça na almofada e os fugazes momentos que passámos na companhia um do outro relampejarão do fundo da minha lembrança, ribombando junto à nuca. serei tomado por uma avassaladora necessidade de te escrever e quase sem dar por isso redigirei mentalmente uma carta, apesar de não ter a tua morada nem como te contactar. + +atormentar-me-ei durante dias, imaginando [se](/blog/2005/05/22/se-nunca-mais-voltar/). +a desejar que antes do fim chegar o acaso queira que nos voltemos a cruzar. diff --git a/content/portuguese/acordar.md b/content/portuguese/acordar.md new file mode 100644 index 0000000..c1564fd --- /dev/null +++ b/content/portuguese/acordar.md @@ -0,0 +1,15 @@ +Title: acordar +Date: 2005-05-12 01:17 +Author: paulo.ribeiro +Category: portuguese +Slug: acordar +Status: published + +acordo de mais um [pesadelo recorrente](/blog/2005/05/10/lapsos-ii/) +onde as cicatrizes se rompem uma e outra vez +onde as boas recordações nunca passam de [sonhos singulares](/blog/2005/05/02/lapsos-i/) +sem carne rasgada por metal retorcido +sem vértebras estilhaçadas +  +  +...acordo para a noite. diff --git a/content/portuguese/adelaide.md b/content/portuguese/adelaide.md new file mode 100644 index 0000000..84f4205 --- /dev/null +++ b/content/portuguese/adelaide.md @@ -0,0 +1,10 @@ +Title: adelaide. +Date: 2005-08-30 01:17 +Author: paulo.ribeiro +Category: portuguese +Slug: adelaide +Status: published + +só lhe soube o nome quando escreveu o seu endereço de correio electrónico nas costas da minha mão. devagarinho. para não ferir a pele com o bico da esferográfica. azul. enquanto me segurava timidamente o pulso com as pontas dos dedos. + +o resto da viagem foi demasiado curto. diff --git a/content/portuguese/adoro-a-tua-voz.md b/content/portuguese/adoro-a-tua-voz.md new file mode 100644 index 0000000..de14c8a --- /dev/null +++ b/content/portuguese/adoro-a-tua-voz.md @@ -0,0 +1,8 @@ +Title: adoro a tua voz. +Date: 2005-02-04 15:46 +Author: paulo.ribeiro +Category: portuguese +Slug: adoro-a-tua-voz +Status: published + +ouço cada palavra tua como se fosse a última diff --git a/content/portuguese/agua.md b/content/portuguese/agua.md new file mode 100644 index 0000000..989322d --- /dev/null +++ b/content/portuguese/agua.md @@ -0,0 +1,23 @@ +Title: água +Date: 2005-01-19 18:35 +Author: paulo.ribeiro +Category: portuguese +Slug: agua +Status: published + +quando a noite é ainda mais escura por as estrelas se encontrarem tapadas por uma lama cinzenta que escoa água + +aproveito para sentir a chuva esbarrar-se contra o meu tronco, nu. + +sabendo que se tivesse a consciência da proveniência, dos recantos por onde cada átomo de cada molécula em cada gota de chuva passou + +deixaria de ser humano. seria a transcendência do espírito corporizada em mim próprio. nos braços. nas pontas dos dedos. + +deixaria de ambicionar a felicidade. porque felicidade é agitação, tal como a infelicidade o é. + +seria paz. + +o silêncio das partículas em repouso absoluto +  +  +*(2000)* diff --git a/content/portuguese/apos-jantar.md b/content/portuguese/apos-jantar.md new file mode 100644 index 0000000..9965c29 --- /dev/null +++ b/content/portuguese/apos-jantar.md @@ -0,0 +1,8 @@ +Title: após jantar +Date: 2005-02-23 21:51 +Author: paulo.ribeiro +Category: portuguese +Slug: apos-jantar +Status: published + +perder-me no mar e ninguém dar pela falta. como se nunca tivesse existido. diff --git a/content/portuguese/as-retinas-riscadas-pela.md b/content/portuguese/as-retinas-riscadas-pela.md new file mode 100644 index 0000000..494e082 --- /dev/null +++ b/content/portuguese/as-retinas-riscadas-pela.md @@ -0,0 +1,11 @@ +Title: as retinas riscadas pela +Date: 2005-08-22 23:23 +Author: paulo.ribeiro +Category: portuguese +Slug: as-retinas-riscadas-pela +Status: published + +luz das suas mãos a +flutuarem sobre os meus +braços +. diff --git a/content/portuguese/bdm.md b/content/portuguese/bdm.md new file mode 100644 index 0000000..de6f355 --- /dev/null +++ b/content/portuguese/bdm.md @@ -0,0 +1,17 @@ +Title: b.d.m. +Date: 2005-03-10 18:48 +Author: paulo.ribeiro +Category: portuguese +Slug: bdm +Status: published + +o ódio em mim é branco +de tão negro + +deixa-me sonhar os sonhos +mais doces são aqueles +em que te apunhalo +como risco esta página +  +  +*(2001)* diff --git a/content/portuguese/caminho-de-volta-a-casa-devagar.md b/content/portuguese/caminho-de-volta-a-casa-devagar.md new file mode 100644 index 0000000..7a745c1 --- /dev/null +++ b/content/portuguese/caminho-de-volta-a-casa-devagar.md @@ -0,0 +1,10 @@ +Title: caminho de volta a casa, devagar. +Date: 2005-08-08 21:00 +Author: paulo.ribeiro +Category: portuguese +Slug: caminho-de-volta-a-casa-devagar +Status: published + +caminho devagar pois nada me espera. + +nada me espera a não ser a minha ausência. diff --git a/content/portuguese/caminho-mas-percebo-me-imovel.md b/content/portuguese/caminho-mas-percebo-me-imovel.md new file mode 100644 index 0000000..a8e3f3a --- /dev/null +++ b/content/portuguese/caminho-mas-percebo-me-imovel.md @@ -0,0 +1,14 @@ +Title: caminho mas percebo-me imóvel, +Date: 2005-04-22 01:42 +Author: paulo.ribeiro +Category: portuguese +Slug: caminho-mas-percebo-me-imovel +Status: published + +como que seja o mundo a caminhar por mim. inevitavelmente acabo por perder os olhos na angústia do inatingível. + +convenço-me a acreditar que num universo paralelo qualquer serei o primeiro. +  +  +  +num universo paralelo sou o primeiro. diff --git a/content/portuguese/caminho-sozinho.md b/content/portuguese/caminho-sozinho.md new file mode 100644 index 0000000..68165c3 --- /dev/null +++ b/content/portuguese/caminho-sozinho.md @@ -0,0 +1,12 @@ +Title: caminho sozinho +Date: 2004-09-27 22:10 +Author: paulo.ribeiro +Category: portuguese +Slug: caminho-sozinho +Status: published + +contra os faróis com pressa de chegarem a casa +caminho sozinho +e ninguém me segue. para lá do horizonte espera-me a noite +caminho sozinho +até me deixar ficar para trás diff --git a/content/portuguese/cheguei.md b/content/portuguese/cheguei.md new file mode 100644 index 0000000..a469c3a --- /dev/null +++ b/content/portuguese/cheguei.md @@ -0,0 +1,8 @@ +Title: cheguei. +Date: 2005-01-24 18:55 +Author: paulo.ribeiro +Category: portuguese +Slug: cheguei +Status: published + +havia luz a desvanecer-se no céu. estava frio como eu gosto. não reparei nas pessoas a olharem para mim. talvez hoje ninguém o tenha feito. diff --git a/content/portuguese/chocolate-quente.md b/content/portuguese/chocolate-quente.md new file mode 100644 index 0000000..b9c01ff --- /dev/null +++ b/content/portuguese/chocolate-quente.md @@ -0,0 +1,8 @@ +Title: chocolate quente. +Date: 2005-10-16 23:25 +Author: paulo.ribeiro +Category: portuguese +Slug: chocolate-quente +Status: published + +a sensação das moléculas soltas do teu cabelo a perderem-se nas células mortas dos meus braços e nada mais a ocupar-me a mente. diff --git a/content/portuguese/ciclo-infinito.md b/content/portuguese/ciclo-infinito.md new file mode 100644 index 0000000..cd0102e --- /dev/null +++ b/content/portuguese/ciclo-infinito.md @@ -0,0 +1,9 @@ +Title: ciclo infinito +Date: 2005-07-26 08:23 +Author: paulo.ribeiro +Category: portuguese +Slug: ciclo-infinito +Status: published + +é ao cheiro seco da desesperança que as pontas dos +dedos sabem após esgravatarem a gangrena de [mais um dia](/blog/2005/06/18/observo-pacientemente-o-nascer-do-sol/). diff --git a/content/portuguese/coisas-sem-importancia.md b/content/portuguese/coisas-sem-importancia.md new file mode 100644 index 0000000..946e7fc --- /dev/null +++ b/content/portuguese/coisas-sem-importancia.md @@ -0,0 +1,25 @@ +Title: coisas sem importância +Date: 2005-01-20 19:07 +Author: paulo.ribeiro +Category: portuguese +Slug: coisas-sem-importancia +Status: published + +eu quero +aconchegar-me no cobertor de estrelas +duma galáxia que fique tão longe +que nem sequer se saiba que existe. +e não quero pensar em nada +a não ser naquilo que amo. +esquecer as coisas más. +não me importo que nunca +tenhamos dado as mãos nem +me importo que nunca +me tenhas abraçado e em vez disso +te tenhas esquivado a um abraço meu. +porque no sítio para onde eu quero ir pode +não haver alegria mas também +não há nem dor nem saudade. +  +  +*(1998)* diff --git a/content/portuguese/com-a-escuridao-desaba-o-sono.md b/content/portuguese/com-a-escuridao-desaba-o-sono.md new file mode 100644 index 0000000..6682246 --- /dev/null +++ b/content/portuguese/com-a-escuridao-desaba-o-sono.md @@ -0,0 +1,27 @@ +Title: com a escuridão desaba o sono +Date: 2005-01-27 01:20 +Author: paulo.ribeiro +Category: portuguese +Slug: com-a-escuridao-desaba-o-sono +Status: published + +lentamente +instala-se o frio. não me gela os ossos, +estremeço apenas. + +só. +podia não estar +mas prefiro a companhia da +        única pessoa que algum dia +        me compreendeu. + +sublime. +reconhecer a melancolia ao espelho. +acolher-me de volta +e por breves instantes + +
+ +sorrir + +
diff --git a/content/portuguese/conduzo-ha-tanto.md b/content/portuguese/conduzo-ha-tanto.md new file mode 100644 index 0000000..1b772be --- /dev/null +++ b/content/portuguese/conduzo-ha-tanto.md @@ -0,0 +1,22 @@ +Title: conduzo há tanto que já me não lembro de onde partimos. +Date: 2005-07-19 01:27 +Author: paulo.ribeiro +Category: portuguese +Slug: conduzo-ha-tanto +Status: published + +ávidos de asfalto, os faróis rasgam a escuridão. iluminam o desfile matemático do traço descontínuo. só o ruído incessante do motor me prende ainda à realidade. + +a meu lado ela dorme, a cabeça pendendo ligeiramente na minha direcção. os sapatos tombados diante dos pés tão finos. descaída pelo braço, a alça do vestido. negro como as pálpebras esborratadas pelo *rimmel*. + +uma tranquilidade aparente fá-la esquecer a angústia com que arrancava a roupa às gavetas e a amarrotava na mala. os dedos trémulos. enquanto continha o choro. antes que fôssemos ouvidos. + +sinto ainda o ímpeto com que me tomou a mão e a estreitou com força. + +"vamos?..." + +a voz embargada, como que à espera da certeza de termos já ultrapassado o ponto sem retorno. + +toco-lhe os antebraços abandonados no colo. levemente. vamos. prometo-lhe. + +conduzo há tanto que já me não lembro de qual o destino. diff --git a/content/portuguese/de-aqui-a-pouco-acaba-o-dia.md b/content/portuguese/de-aqui-a-pouco-acaba-o-dia.md new file mode 100644 index 0000000..02be29f --- /dev/null +++ b/content/portuguese/de-aqui-a-pouco-acaba-o-dia.md @@ -0,0 +1,24 @@ +Title: de aqui a pouco acaba o dia +Date: 2004-08-29 21:06 +Author: paulo.ribeiro +Category: portuguese +Slug: de-aqui-a-pouco-acaba-o-dia +Status: published + +de aqui a pouco acaba o dia +não fiz nada. +também, que coisa é que faria? +fosse a que fosse, estava errada. + +de aqui a pouco a noite vem. +chega em vão +para quem como eu só tem +para o contar o coração. + +e após a noite e irmos dormir +torna o dia. +nada farei senão sentir. +também que coisa é que faria? +  +  +*fernando pessoa* diff --git a/content/portuguese/debelar-a-infeccao-que-se-alastra-tento.md b/content/portuguese/debelar-a-infeccao-que-se-alastra-tento.md new file mode 100644 index 0000000..da549e7 --- /dev/null +++ b/content/portuguese/debelar-a-infeccao-que-se-alastra-tento.md @@ -0,0 +1,18 @@ +Title: debelar a infecção que se alastra. tento. +Date: 2005-06-01 03:19 +Author: paulo.ribeiro +Category: portuguese +Slug: debelar-a-infeccao-que-se-alastra-tento +Status: published + +dói(-me) o sangue diluído na (tua) saliva pois +já se fundiriam ossos nas labaredas do anseio caso + +não respirasses por 2. +  +  +  +a depressão amplifica o medo. + +há muito que os níveis de oxigénio desceram +para cá do limiar do p â  n    i        c                o diff --git a/content/portuguese/deitados-no-chao.md b/content/portuguese/deitados-no-chao.md new file mode 100644 index 0000000..440d5b6 --- /dev/null +++ b/content/portuguese/deitados-no-chao.md @@ -0,0 +1,16 @@ +Title: deitados no chão, +Date: 2005-07-05 16:23 +Author: paulo.ribeiro +Category: portuguese +Slug: deitados-no-chao +Status: published + +onde a frescura se pressente maior. a cidade trancada lá fora. fustigada pelo sol. a espaços, dilui-se o fragor do ruído dos aviões nas bandas de luz que escoam das persianas. + +deixo que os olhos se fechem. + +expiramos uma solidão antiga que logo se condensa, que logo decai como uma nuvem triste sobre os nossos braços despidos. os corpos despidos. + +no enlevo do silêncio esquecemos decénios. imóveis. à espera que o tempo corra sem nós. que escapemos por fim à órbita da terra. que tudo o mais seja o vazio. + +diáfanos. dois corpos como vasos comunicantes. diff --git a/content/portuguese/desassossego.md b/content/portuguese/desassossego.md new file mode 100644 index 0000000..03be64a --- /dev/null +++ b/content/portuguese/desassossego.md @@ -0,0 +1,12 @@ +Title: desassossego +Date: 2005-01-19 15:07 +Author: paulo.ribeiro +Category: portuguese +Slug: desassossego +Status: published + +onde está o rapazinho tímido de quem faziam troça na escola? + +não me reconheço. olho-me ao espelho e quem me olha de volta não responde às minhas ordens. + +passou a noite com as entranhas a fervilharem de fúria. eu só queria dormir. diff --git a/content/portuguese/desejo.md b/content/portuguese/desejo.md new file mode 100644 index 0000000..532a7ad --- /dev/null +++ b/content/portuguese/desejo.md @@ -0,0 +1,8 @@ +Title: desejo +Date: 2005-05-22 22:52 +Author: paulo.ribeiro +Category: portuguese, scanner +Slug: desejo +Status: published + +![desejo](https://diffraction.pt/blog/images/photos/05/desejo.png) diff --git a/content/portuguese/dos-confins-do-universo.md b/content/portuguese/dos-confins-do-universo.md new file mode 100644 index 0000000..f8fd787 --- /dev/null +++ b/content/portuguese/dos-confins-do-universo.md @@ -0,0 +1,13 @@ +Title: dos confins do universo +Date: 2013-10-24 17:58 +Author: paulo.ribeiro +Category: portuguese +Slug: dos-confins-do-universo +Status: published + +chegou a tua luz. a tua luz chegou dos confins do universo e +nada existe entre o passado e o futuro. +  +  +  +\_\_\_\_\_\_ r e s p l a n d e c e n t e \_\_\_\_\_\_\_\_\_\_\_\_\_\_ diff --git a/content/portuguese/ecos-de-vozes-enchem-a-sala.md b/content/portuguese/ecos-de-vozes-enchem-a-sala.md new file mode 100644 index 0000000..e25f1cf --- /dev/null +++ b/content/portuguese/ecos-de-vozes-enchem-a-sala.md @@ -0,0 +1,10 @@ +Title: ecos de vozes enchem a sala. +Date: 2005-02-11 02:45 +Author: paulo.ribeiro +Category: portuguese +Slug: ecos-de-vozes-enchem-a-sala +Status: published + +a música como ruído de fundo. +o meu olhar perdido na cintilação das luzes da outra margem. +entre todos estou só. diff --git a/content/portuguese/encho-mais-um-deposito-de-gasolina.md b/content/portuguese/encho-mais-um-deposito-de-gasolina.md new file mode 100644 index 0000000..398da87 --- /dev/null +++ b/content/portuguese/encho-mais-um-deposito-de-gasolina.md @@ -0,0 +1,26 @@ +Title: encho mais um depósito de gasolina. +Date: 2005-04-11 06:21 +Author: paulo.ribeiro +Category: portuguese +Slug: encho-mais-um-deposito-de-gasolina +Status: published + +conduzo. + +as luzes dos faróis ávidas por engolirem a estrada. +nos retrovisores *vejo-me a lavar-lhe os pés. ela perde os olhos no infinito.* + +nada como o gelo duma lâmina para raspar a ~~pele~~ carne da minha identidade. + +encho mais um copo de gasolina. +bebo. + +
+ +esta noite +eu +vou ser +o sol +. + +
diff --git a/content/portuguese/eras-tu.md b/content/portuguese/eras-tu.md new file mode 100644 index 0000000..9e2d631 --- /dev/null +++ b/content/portuguese/eras-tu.md @@ -0,0 +1,14 @@ +Title: eras tu +Date: 2004-08-19 05:05 +Author: paulo.ribeiro +Category: portuguese +Slug: eras-tu +Status: published + +deixa-me lembrar-te só a ti. + +aproximaste-te a medo, como se não fosse também esse o meu desejo. + +a pouco e pouco caíste desamparada no meu peito que desajeitadamente se transformou num tímido abraço. + +só então disseste posso?, sinto-me bem assim e eu estremeci por dentro e para dentro pensei que também me sentia bem assim. diff --git a/content/portuguese/escrever-e-poder.md b/content/portuguese/escrever-e-poder.md new file mode 100644 index 0000000..7d86fe7 --- /dev/null +++ b/content/portuguese/escrever-e-poder.md @@ -0,0 +1,10 @@ +Title: escrever é poder. +Date: 2005-11-06 23:29 +Author: paulo.ribeiro +Category: portuguese +Slug: escrever-e-poder +Status: published + +qualquer gesto é inútil. às vezes o escuro custa tanto a passar. + +só [escrevendo](/blog/2005/07/deitados-no-chao/) posso [esboçar](/blog/2005/07/13/se-fossemos-a-praia/) os seus [braços](/blog/2005/07/19/conduzo-ha-tanto/) pelos meus [ombros](/blog/2005/08/30/adelaide/). diff --git a/content/portuguese/estima.md b/content/portuguese/estima.md new file mode 100644 index 0000000..60d218a --- /dev/null +++ b/content/portuguese/estima.md @@ -0,0 +1,72 @@ +Title: estima +Date: 2005-07-28 03:26 +Author: paulo.ribeiro +Category: portuguese +Slug: estima +Status: published + +  + + +++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
a minha violência é proporcional
+ao quão pejados de ódio estão os meus pulmões.
 

+detesto-te.
+não podia ser mais simples.

achas mesmo que me consegues roubar?
 
+eu não tenho
+nada. eu não. tenho
+nada. nada.
como me podes roubar?

vem. dá-me um murro
+                              pontapés. amassa-me os ossos

+parte-me a cara o nariz os olhos
+as trombas todas desfeitas em sangue
 

+aarghj!

os dentes todos  e s p a l h a d o s  pelo chão.
+como se riem de ti.
 



+estimo bem que te fodas.
+ +  +  +*(2000)* diff --git a/content/portuguese/fagulhas-lambem-me.md b/content/portuguese/fagulhas-lambem-me.md new file mode 100644 index 0000000..3eecf93 --- /dev/null +++ b/content/portuguese/fagulhas-lambem-me.md @@ -0,0 +1,27 @@ +Title: fagulhas lambem-me +Date: 2005-06-14 01:01 +Author: paulo.ribeiro +Category: portuguese +Slug: fagulhas-lambem-me +Status: published + +os contornos ósseos - bruscas quando +desfiro o **ímpeto** dum punho cerrado nesses den +tes +  +  +delicio-me perante esse sorriso já des +                             figu +rado enquanto +  +  +  +...perco... +  +  +  +...a... +  +  +  +...conta das vezes que zombou de mim diff --git a/content/portuguese/gumes-de-frio-trespassam-o-corpo.md b/content/portuguese/gumes-de-frio-trespassam-o-corpo.md new file mode 100644 index 0000000..e702d11 --- /dev/null +++ b/content/portuguese/gumes-de-frio-trespassam-o-corpo.md @@ -0,0 +1,8 @@ +Title: gumes de frio trespassam o corpo. +Date: 2005-03-08 02:28 +Author: paulo.ribeiro +Category: portuguese +Slug: gumes-de-frio-trespassam-o-corpo +Status: published + +a noite é mais noite no meio da auto-estrada. estilhaços rentes à linha do horizonte; sangue no alcatrão. diff --git a/content/portuguese/ha-sempre-uma-vez.md b/content/portuguese/ha-sempre-uma-vez.md new file mode 100644 index 0000000..4f6da39 --- /dev/null +++ b/content/portuguese/ha-sempre-uma-vez.md @@ -0,0 +1,13 @@ +Title: (há sempre uma vez +Date: 2005-08-10 16:08 +Author: paulo.ribeiro +Category: portuguese +Slug: ha-sempre-uma-vez +Status: published + +que é a última vez.) +  +  +  +parte +comigo. diff --git a/content/portuguese/hoje.md b/content/portuguese/hoje.md new file mode 100644 index 0000000..b11b891 --- /dev/null +++ b/content/portuguese/hoje.md @@ -0,0 +1,8 @@ +Title: hoje +Date: 2006-01-18 23:29 +Author: paulo.ribeiro +Category: portuguese, scanner +Slug: hoje +Status: published + +![hoje](https://diffraction.pt/blog/images/photos/06/hoje.jpg) diff --git a/content/portuguese/imerso-nas-ondas-electromagneticas.md b/content/portuguese/imerso-nas-ondas-electromagneticas.md new file mode 100644 index 0000000..9a82256 --- /dev/null +++ b/content/portuguese/imerso-nas-ondas-electromagneticas.md @@ -0,0 +1,13 @@ +Title: imerso nas ondas electromagnéticas +Date: 2004-12-28 01:10 +Author: paulo.ribeiro +Category: portuguese +Slug: imerso-nas-ondas-electromagneticas +Status: published + +só. +até no éter cibernético + +as linhas descansam + +que melhor altura se não esta para deixar que o silêncio seja ouvido? diff --git a/content/portuguese/indigente.md b/content/portuguese/indigente.md new file mode 100644 index 0000000..ceff442 --- /dev/null +++ b/content/portuguese/indigente.md @@ -0,0 +1,10 @@ +Title: indigente +Date: 2005-01-24 10:17 +Author: paulo.ribeiro +Category: portuguese +Slug: indigente +Status: published + +manhã. um homem defecava no separador central da avenida enquanto uma multidão de gente saía dos autocarros alheada na pressa de chegar algures. + +como me nauseia a putrefacção humana. a da multidão de gente. eu incluído, claro. diff --git a/content/portuguese/lapsos-i.md b/content/portuguese/lapsos-i.md new file mode 100644 index 0000000..d746a78 --- /dev/null +++ b/content/portuguese/lapsos-i.md @@ -0,0 +1,47 @@ +Title: lapsos i (sonhos singulares) +Date: 2005-05-02 16:59 +Author: paulo.ribeiro +Category: portuguese +Slug: lapsos-i +Status: published + +**vii** + +uma abelha arrastava-se entre as pedras da calçada. +podia tê-la esmagado. +  +  +**vi** + +só estaria bem em lado nenhum. +contigo. +  +  +**v** + +perdido algures entre as luzes da cidade e +o ruído de estática na minha cabeça. +  +  +**iv** + +tu e eu. abraçados. imóveis. em silêncio. +indiferentes à multidão de gente que passa por nós. +  +  +**iii** + +se o que sinto fosse fome +enfardava até rebentar. +  +  +**ii** + +não completas as minhas frases. +és cada palavra. +  +  +**i** + +nas minhas mãos tudo se parte. +tudo são estilhaços. diff --git a/content/portuguese/lapsos-ii.md b/content/portuguese/lapsos-ii.md new file mode 100644 index 0000000..9746c90 --- /dev/null +++ b/content/portuguese/lapsos-ii.md @@ -0,0 +1,50 @@ +Title: lapsos ii (pesadelos recorrentes) +Date: 2005-05-10 00:46 +Author: paulo.ribeiro +Category: portuguese +Slug: lapsos-ii +Status: published + +**vii** + +do fundo da minha apatia observo a avalanche de lixeira humana que por mim passa. +atropelam-se escadas acima como ratos em fuga das cheias. +  +  +**vi** + +escrevo  mas  existe  saliva  nos  espaços +entre  as  palavras  que  articulo. +  +  +**v** + +acelerador a fundo através da cortina de nevoeiro +até que uma colisão frontal me obrigue a estacar. +  +  +**iv** + +tento picar-te para saber se és real; dizes que sim. +não és. +  +  +**iii** + +a última brisa da tarde, por mais indefinível que seja +levar-nos-á com ela. +  +  +**ii** + +a cidade deserta. submersa na escuridão. +flutuo pelos seus túneis. nado à velocidade do desespero. afogo-me na noite. +  +  +**i** + +enfim só. como sempre estive, afinal. +a familiaridade da solidão como o abraço que não tenho. +  +  +[+](/blog/2005/05/02/lapsos-i/) diff --git a/content/portuguese/lapsos-iii.md b/content/portuguese/lapsos-iii.md new file mode 100644 index 0000000..8bf4727 --- /dev/null +++ b/content/portuguese/lapsos-iii.md @@ -0,0 +1,50 @@ +Title: lapsos iii +Date: 2005-05-16 16:22 +Author: paulo.ribeiro +Category: portuguese +Slug: lapsos-iii +Status: published + +**vii** + +se fôssemos os únicos na terra +o ar expirado que alguma vez inspiraríamos seria só o nosso. +  +  +**vi** + +"porquê?" +"porque quando te olho sinto a tua beatitude em mim." +  +  +**v** + +não há dedadas minhas no cromado. +cabe-me sempre a parte áspera. +  +  +**iv** + +adormeci e +mais um anoitecer anoiteceu sem mim. +  +  +**iii** + +prevejo o dia de amanhã. +será igual ao de ontem. +  +  +**ii** + +só morrendo aos poucos +descubro que ainda estou vivo. +  +  +**i** + +sai. da. minha. cabeça. +~~quero~~ preciso de dormir. +  +  +[+](/blog/2005/05/10/lapsos-ii/) diff --git a/content/portuguese/lapsos-iv.md b/content/portuguese/lapsos-iv.md new file mode 100644 index 0000000..369ae50 --- /dev/null +++ b/content/portuguese/lapsos-iv.md @@ -0,0 +1,50 @@ +Title: lapsos iv +Date: 2005-06-21 02:21 +Author: paulo.ribeiro +Category: portuguese +Slug: lapsos-iv +Status: published + +**vii** + +nota mental: +não tornar a conduzir enquanto padecer de insónias. +  +  +**vi** + +trituram-se-me os dedos nos dentes do medo +até que já nada doa. +  +  +**v** + +solidão. +mal por mal preferia habitar um planeta por poluir. +  +  +**iv** + +perscruto os espelhos para me certificar de que +ainda sou. +  +  +**iii** + +dou por mim a imaginar quantos +quilómetros nos separarão. +  +  +**ii** + +esquecer tudo. as leis que regem o mundo. +olhar as palavras e não as saber ler. +  +  +**i** + +ouvir-me só a mim... +silêncio. +  +  +[+](/blog/2005/05/16/lapsos-iii/) diff --git a/content/portuguese/nada-digas.md b/content/portuguese/nada-digas.md new file mode 100644 index 0000000..3712ee2 --- /dev/null +++ b/content/portuguese/nada-digas.md @@ -0,0 +1,10 @@ +Title: nada digas, +Date: 2005-02-14 21:36 +Author: paulo.ribeiro +Category: portuguese +Slug: nada-digas +Status: published + +mesmo que não seja verdade. +deixa-me ao menos uma vez na vida +pensar que sim. diff --git a/content/portuguese/nao-tenho-em-que-me-fixar-para-conseguir-enfim-adormecer.md b/content/portuguese/nao-tenho-em-que-me-fixar-para-conseguir-enfim-adormecer.md new file mode 100644 index 0000000..3182e3b --- /dev/null +++ b/content/portuguese/nao-tenho-em-que-me-fixar-para-conseguir-enfim-adormecer.md @@ -0,0 +1,10 @@ +Title: não tenho em que me fixar para conseguir enfim adormecer. +Date: 2005-01-20 08:56 +Author: paulo.ribeiro +Category: portuguese +Slug: nao-tenho-em-que-me-fixar-para-conseguir-enfim-adormecer +Status: published + +já nem a solidão é coisa certa\*. não tenho em que me fixar para conseguir enfim adormecer. + +\* por ora. diff --git a/content/portuguese/nepenthes.md b/content/portuguese/nepenthes.md new file mode 100644 index 0000000..c1aa800 --- /dev/null +++ b/content/portuguese/nepenthes.md @@ -0,0 +1,24 @@ +Title: nepenthés +Date: 2005-06-15 11:41 +Author: paulo.ribeiro +Category: portuguese, scanner +Slug: nepenthes +Status: published + +![escrever é poder.](https://diffraction.pt/blog/images/photos/05/nepenthes_i.png) + +
+ +*00b 0416-0915* + +
+ +  +  +![infinito. eterno.](https://diffraction.pt/blog/images/photos/05/nepenthes_ii.png) + +
+ +*00a 0317-0416* + +
diff --git a/content/portuguese/nota-mental.md b/content/portuguese/nota-mental.md new file mode 100644 index 0000000..b2b8db4 --- /dev/null +++ b/content/portuguese/nota-mental.md @@ -0,0 +1,12 @@ +Title: nota mental... +Date: 2005-01-07 21:43 +Author: paulo.ribeiro +Category: portuguese +Slug: nota-mental +Status: published + +não tenho uma fotografia sequer da brevidade daquele momento +tão perfeito + +...pergunto-me se algum dia me abraçarás +fora do esquecimento dos meus sonhos diff --git a/content/portuguese/o-ceu-esta-deserto.md b/content/portuguese/o-ceu-esta-deserto.md new file mode 100644 index 0000000..a60ba6b --- /dev/null +++ b/content/portuguese/o-ceu-esta-deserto.md @@ -0,0 +1,17 @@ +Title: o céu está deserto +Date: 2004-08-28 12:49 +Author: paulo.ribeiro +Category: portuguese +Slug: o-ceu-esta-deserto +Status: published + +até ao desvario do infinito tudo se calou + +das tuas mãos é fabricado o mistério de seres mulher + +não te ouço +quero tanto ouvir-te +mas tudo o que vejo +é o silêncio por ti articulado + +o silêncio por ti articulado. diff --git a/content/portuguese/o-fim-do-verao.md b/content/portuguese/o-fim-do-verao.md new file mode 100644 index 0000000..f32c076 --- /dev/null +++ b/content/portuguese/o-fim-do-verao.md @@ -0,0 +1,17 @@ +Title: o fim do verão +Date: 2004-09-16 01:16 +Author: paulo.ribeiro +Category: portuguese +Slug: o-fim-do-verao +Status: published + +como é reconfortante +num ápice o mundo poder acabar +num choque frontal faíscas metal retorcido +mas +neste momento tudo ser sereno +neste fim de tarde de fim de verão +no doce e arrepiante abraço da noite +no melancólico contorno das serras +que com a lentidão do que tem que ser +se vai esbatendo no céu diff --git a/content/portuguese/o-frio.md b/content/portuguese/o-frio.md new file mode 100644 index 0000000..7da9fdc --- /dev/null +++ b/content/portuguese/o-frio.md @@ -0,0 +1,10 @@ +Title: o frio +Date: 2004-09-23 19:56 +Author: paulo.ribeiro +Category: portuguese +Slug: o-frio +Status: published + +projectam-se sentimentos na tela da memória. queria agarrá-los, poder sentir a sua doce suavidade ou dura aspereza nos dedos. guardá-los no bolso, levá-los para casa, coleccioná-los em caixas de fósforos vazias. + +mas rapidamente se evolam; nada deixam para trás a não ser o vazio da sua abstracta existência. tudo o que levo para casa é o frio da noite que tarda em cair. diff --git a/content/portuguese/o-homem-caido-no-chao.md b/content/portuguese/o-homem-caido-no-chao.md new file mode 100644 index 0000000..f81d009 --- /dev/null +++ b/content/portuguese/o-homem-caido-no-chao.md @@ -0,0 +1,10 @@ +Title: o homem, caído no chão. +Date: 2005-05-06 03:06 +Author: paulo.ribeiro +Category: portuguese +Slug: o-homem-caido-no-chao +Status: published + +os braços inertes ao longo do tórax. do crânio fendido brota um rio vermelho que alaga o passeio até escorrer para a sarjeta. a mulher, de joelhos. desarranjada. tenta estancar o sangue com as mãos. chora. os gestos são aflitivos. em vão. + +o silêncio da hora de ponta deixa que o nome clamado seja ouvido. diff --git a/content/portuguese/o-impossivel.md b/content/portuguese/o-impossivel.md new file mode 100644 index 0000000..3ba15ea --- /dev/null +++ b/content/portuguese/o-impossivel.md @@ -0,0 +1,14 @@ +Title: o impossível. +Date: 2005-05-18 20:34 +Author: paulo.ribeiro +Category: portuguese +Slug: o-impossivel +Status: published + +resigno-me. + +de tudo o que desejo +apenas uma coisa é certa\_\_\_\_\_. +  +  +[+](/blog/2005/05/07/o-nada/) diff --git a/content/portuguese/o-infinito.md b/content/portuguese/o-infinito.md new file mode 100644 index 0000000..01876e4 --- /dev/null +++ b/content/portuguese/o-infinito.md @@ -0,0 +1,39 @@ +Title: o infinito. +Date: 2005-06-03 04:38 +Author: paulo.ribeiro +Category: portuguese +Slug: o-infinito +Status: published + +  + + ++++ + + + + + + +
onde as rectas se curvam
+a noite há-de prostrar-se a nossos pés
+adorando-nos enquanto rasgamos a pele
+dum firmamento liquefeito e num só fôlego



+_________________________de uma vez
 


+ contamos
+ as cicatrizes
+ que o pontilham

+ por todas.
+ +  +  +[+](/blog/2005/05/28/o-nunca/) diff --git a/content/portuguese/o-nada.md b/content/portuguese/o-nada.md new file mode 100644 index 0000000..a69c6b1 --- /dev/null +++ b/content/portuguese/o-nada.md @@ -0,0 +1,13 @@ +Title: o nada. +Date: 2005-05-07 00:47 +Author: paulo.ribeiro +Category: portuguese +Slug: o-nada +Status: published + +sou perfeccionista e apesar disso tudo o que me sai das mãos é torto. até estas palavras se entaramelam umas nas outras. + +mas fechando os olhos e esquecendo-me da linguagem, de mim próprio e até do universo vejo a perfeição com clarividência. +  +  +nada tem a ver com  [i](/blog/2005/04/14/empty-handed/) [s](/blog/2005/04/17/vazio/) [t](/blog/2005/04/19/self-help/) [o](/blog/2005/04/20/the-day-the-whole-world-went-away/) . diff --git a/content/portuguese/o-nunca.md b/content/portuguese/o-nunca.md new file mode 100644 index 0000000..1901157 --- /dev/null +++ b/content/portuguese/o-nunca.md @@ -0,0 +1,26 @@ +Title: o nunca. +Date: 2005-05-28 05:05 +Author: paulo.ribeiro +Category: portuguese +Slug: o-nunca +Status: published + +  + + +++ + + + + + +
a alma dispersa em milhares de
+electrões a fervilharem à velocidade da luz no
+vácuo asséptico dos circuitos integrados duma
+constelação de satélites geoestacionários.
+ +  +  +[+](/blog/2005/05/18/o-impossivel/) diff --git a/content/portuguese/o-vento-a-escapar-se-me-por-entre-os-dedos.md b/content/portuguese/o-vento-a-escapar-se-me-por-entre-os-dedos.md new file mode 100644 index 0000000..32342fe --- /dev/null +++ b/content/portuguese/o-vento-a-escapar-se-me-por-entre-os-dedos.md @@ -0,0 +1,12 @@ +Title: o vento a escapar-se-me por entre os dedos. +Date: 2005-07-29 21:33 +Author: paulo.ribeiro +Category: portuguese +Slug: o-vento-a-escapar-se-me-por-entre-os-dedos +Status: published + +sinto-o como se fosse a sua ausência. + +a sua ausência tão presente. + +sinto-a como se fosse a sua mão. diff --git a/content/portuguese/observo-a-enquanto-dorme.md b/content/portuguese/observo-a-enquanto-dorme.md new file mode 100644 index 0000000..13a8c2c --- /dev/null +++ b/content/portuguese/observo-a-enquanto-dorme.md @@ -0,0 +1,8 @@ +Title: observo-a enquanto dorme. +Date: 2005-04-29 11:49 +Author: paulo.ribeiro +Category: portuguese +Slug: observo-a-enquanto-dorme +Status: published + +adivinho-lhe serenidade na disposição das mãos. graciosidade no respirar. do fundo do tempo ainda me comove a inexplicabilidade de a presenciar. diff --git a/content/portuguese/odio.md b/content/portuguese/odio.md new file mode 100644 index 0000000..b5035d8 --- /dev/null +++ b/content/portuguese/odio.md @@ -0,0 +1,11 @@ +Title: ódio +Date: 2005-07-21 00:16 +Author: paulo.ribeiro +Category: portuguese, scanner +Slug: odio +Status: published + +![ódio](https://diffraction.pt/blog/images/photos/05/odio.png) +  +  +[+](/blog/2005/05/22/desejo/) diff --git a/content/portuguese/pensei-em-ti-enquanto-jantava.md b/content/portuguese/pensei-em-ti-enquanto-jantava.md new file mode 100644 index 0000000..3239a1d --- /dev/null +++ b/content/portuguese/pensei-em-ti-enquanto-jantava.md @@ -0,0 +1,8 @@ +Title: pensei em ti enquanto jantava. +Date: 2005-01-22 20:44 +Author: paulo.ribeiro +Category: portuguese +Slug: pensei-em-ti-enquanto-jantava +Status: published + +imaginei que hoje saisses. eu não. porque não tenho com quem sair e mesmo que tivesse não havia de querer. diff --git a/content/portuguese/perdi-o-meu-anjo-da-guarda.md b/content/portuguese/perdi-o-meu-anjo-da-guarda.md new file mode 100644 index 0000000..7e5d45e --- /dev/null +++ b/content/portuguese/perdi-o-meu-anjo-da-guarda.md @@ -0,0 +1,16 @@ +Title: perdi o meu anjo-da-guarda +Date: 2004-10-05 23:51 +Author: paulo.ribeiro +Category: portuguese +Slug: perdi-o-meu-anjo-da-guarda +Status: published + +a pessoa a quem avisava que tinha chegado bem a casa +tudo fiz para que ela não fosse +mas ela nada fez para ficar + +deixei-me escorrer até ao rio +se chovesse na chuva me teria dissolvido + +sobre a água planei +se chovesse na chuva as lágrimas se teriam diluído diff --git a/content/portuguese/por-mim.md b/content/portuguese/por-mim.md new file mode 100644 index 0000000..aa0df8f --- /dev/null +++ b/content/portuguese/por-mim.md @@ -0,0 +1,8 @@ +Title: por mim +Date: 2005-03-25 00:11 +Author: paulo.ribeiro +Category: portuguese +Slug: por-mim +Status: published + +o mundo lá fora bem podia acabar. ou com menor dispêndio de energia acabar só o meu. diff --git a/content/portuguese/quando-o-acaso-que-rege-o-universo-dita-que-1-1-1.md b/content/portuguese/quando-o-acaso-que-rege-o-universo-dita-que-1-1-1.md new file mode 100644 index 0000000..55c2f6f --- /dev/null +++ b/content/portuguese/quando-o-acaso-que-rege-o-universo-dita-que-1-1-1.md @@ -0,0 +1,10 @@ +Title: quando o acaso que rege o universo dita que 1 + 1 = 1 +Date: 2005-01-11 03:01 +Author: paulo.ribeiro +Category: portuguese +Slug: quando-o-acaso-que-rege-o-universo-dita-que-1-1-1 +Status: published + +desde que te conheci que acordo com os inevitáveis ruídos que fazes quando te levantas. juntos respiramos a poluição dos fins de tarde enquanto caminhamos de volta a casa. sorris antes de adormecermos. + +para seres perfeita bastava materializares-te fora da minha mente; seres real, como quando te conheci. diff --git a/content/portuguese/quarenta-e-dois.md b/content/portuguese/quarenta-e-dois.md new file mode 100644 index 0000000..3c92799 --- /dev/null +++ b/content/portuguese/quarenta-e-dois.md @@ -0,0 +1,23 @@ +Title: quarenta e dois +Date: 2005-02-27 22:13 +Author: paulo.ribeiro +Category: portuguese +Slug: quarenta-e-dois +Status: published + +*para a carla* +  +  +às vezes deitava-me no chão. +ficava quieto +a observar as nuvens no céu. + +e as esteiras de vapor d’água +deixadas por aviões que passavam. + +às vezes penso em como +elas se intersectam no espaço +mas nunca no tempo. +  +  +*(2000)* diff --git a/content/portuguese/queria-poder-dizer-te.md b/content/portuguese/queria-poder-dizer-te.md new file mode 100644 index 0000000..b5ec038 --- /dev/null +++ b/content/portuguese/queria-poder-dizer-te.md @@ -0,0 +1,8 @@ +Title: queria poder dizer-te +Date: 2005-05-10 20:56 +Author: paulo.ribeiro +Category: portuguese +Slug: queria-poder-dizer-te +Status: published + +que corri para casa para que ninguém me visse chorar diff --git a/content/portuguese/regresso-finalmente-a-casa.md b/content/portuguese/regresso-finalmente-a-casa.md new file mode 100644 index 0000000..966aabf --- /dev/null +++ b/content/portuguese/regresso-finalmente-a-casa.md @@ -0,0 +1,22 @@ +Title: regresso finalmente a casa. +Date: 2005-04-13 20:49 +Author: paulo.ribeiro +Category: portuguese +Slug: regresso-finalmente-a-casa +Status: published + +vejo-te junto à praia, absorta, +olhando o horizonte distante. +corro para ti, esperançado. + +digo-te por fim: +\- sou o último homem na terra. + +nem te dignas a olhar-me. +diriges-te simplesmente a casa +e engoles de um trago +o cálice de cicuta +que havias preparado. +  +  +*[pedro sousa](http://mega.ist.utl.pt/~pvns/blog/)* diff --git a/content/portuguese/se-eu-soubesse-que-era-o-fim.md b/content/portuguese/se-eu-soubesse-que-era-o-fim.md new file mode 100644 index 0000000..dd4439c --- /dev/null +++ b/content/portuguese/se-eu-soubesse-que-era-o-fim.md @@ -0,0 +1,11 @@ +Title: se eu soubesse que era o fim +Date: 2004-11-09 01:21 +Author: paulo.ribeiro +Category: portuguese +Slug: se-eu-soubesse-que-era-o-fim +Status: published + +tinha esperado mais um segundo +mais um segundo para ter esperança +de sermos felizes até ao +fim diff --git a/content/portuguese/se-fossemos-a-praia.md b/content/portuguese/se-fossemos-a-praia.md new file mode 100644 index 0000000..ac91624 --- /dev/null +++ b/content/portuguese/se-fossemos-a-praia.md @@ -0,0 +1,24 @@ +Title: "se fôssemos à praia?" +Date: 2005-07-13 00:11 +Author: paulo.ribeiro +Category: portuguese +Slug: se-fossemos-a-praia +Status: published + +não gosto de praia. "vamos só à tardinha... ver o pôr do sol." + +já a frescura mansa do mar percorria o areal quando chegámos. sem trocarmos uma palavra dirigimo-nos para a zona mais recatada da praia. a orla das dunas a resguardar-nos as costas do vento. + +dobras os joelhos, cinges as pernas nos braços, enterras os pés na areia. deleitada. + +por minutos observamos o mar. em silêncio. dos grupos de pessoas dispersos na distância apenas nos chega um ou outro riso indistinto intercalado pelo rebentar periódico das ondas. + +olhas-me demoradamente. de súbito levanta-se um vento incómodo que insiste em arremessar areia pelo ar. escondes a cara nos meus braços. "contigo aqui o sol bem podia nunca se pôr", ouço-te dizer. + +deixamo-nos ficar. para lá das dunas a vila anoitece. acendem-se os primeiros candeeiros públicos. o jantar pode esperar. + +podíamos correr praia fora. mergulhar nas ondas cada vez mais sombrias. deixar os corpos a escorrerem sal desabarem na calidez da areia. numa vertigem. esticando os incontáveis fins de tarde de julho que nunca tivemos. + +mas não. deixamo-nos ficar. o sol misturado no vento como ouro gasoso a sulcar o teu cabelo. revolto. o rebentar das ondas. compassado. sabes? + +contigo aqui o sol bem podia nem sequer existir. diff --git a/content/portuguese/se-nunca-mais-voltar.md b/content/portuguese/se-nunca-mais-voltar.md new file mode 100644 index 0000000..fe04750 --- /dev/null +++ b/content/portuguese/se-nunca-mais-voltar.md @@ -0,0 +1,8 @@ +Title: se nunca mais voltar +Date: 2005-05-22 03:04 +Author: paulo.ribeiro +Category: portuguese +Slug: se-nunca-mais-voltar +Status: published + +é porque não suporto estar sem ti diff --git a/content/portuguese/so-percorrendo-as-ruas.md b/content/portuguese/so-percorrendo-as-ruas.md new file mode 100644 index 0000000..e113fd8 --- /dev/null +++ b/content/portuguese/so-percorrendo-as-ruas.md @@ -0,0 +1,8 @@ +Title: só. percorrendo as ruas. +Date: 2005-03-11 01:47 +Author: paulo.ribeiro +Category: portuguese +Slug: so-percorrendo-as-ruas +Status: published + +só percorrendo as ruas da cidade ela me pode ser íntima. à chuva. de madrugada. até ser a cidade a chorar por mim. diff --git a/content/portuguese/so.md b/content/portuguese/so.md new file mode 100644 index 0000000..1febe6b --- /dev/null +++ b/content/portuguese/so.md @@ -0,0 +1,15 @@ +Title: só +Date: 2004-12-20 13:11 +Author: paulo.ribeiro +Category: portuguese +Slug: so +Status: published + +perdido no som incessante da chuva acabo por cair desamparado no chão. + +há automóveis que passam +mas nenhum pára +e a força da corrente arrasta-me penosamente até ao rio. + +finalmente imponderável +liberto, por fim diff --git a/content/portuguese/tudo.md b/content/portuguese/tudo.md new file mode 100644 index 0000000..3d6bff8 --- /dev/null +++ b/content/portuguese/tudo.md @@ -0,0 +1,11 @@ +Title: tudo. +Date: 2005-06-10 10:17 +Author: paulo.ribeiro +Category: portuguese +Slug: tudo +Status: published + +*tudo*. a companhia da sombra que caminha a meu lado. *tudo*. o silêncio que me dá as boas vindas a casa. *tudo*. a quietude que me embala até eu adormecer. *tudo*. a de- + +pressão que me acorda com um beijo de bom-dia. +[tudo](/blog/2005/05/07/o-nada/) no sítio certo. diff --git a/content/portuguese/um-pedido-de-desculpas.md b/content/portuguese/um-pedido-de-desculpas.md new file mode 100644 index 0000000..235003e --- /dev/null +++ b/content/portuguese/um-pedido-de-desculpas.md @@ -0,0 +1,14 @@ +Title: um pedido de desculpas +Date: 2005-01-17 00:42 +Author: paulo.ribeiro +Category: portuguese +Slug: um-pedido-de-desculpas +Status: published + +com cada *pixel* de cada letra de cada palavra de cada frase vou +estilhaçando a tua sedutora fantasia + +desculpa, sou +o ~~antónimo~~ antídoto da perfeição + +(escrevi-te entre dois gráficos de barras e fodi metade da folha de cálculo) diff --git a/content/portuguese/um-primeiro-adeus.md b/content/portuguese/um-primeiro-adeus.md new file mode 100644 index 0000000..cc741bd --- /dev/null +++ b/content/portuguese/um-primeiro-adeus.md @@ -0,0 +1,16 @@ +Title: um primeiro adeus +Date: 2005-04-05 11:58 +Author: paulo.ribeiro +Category: portuguese +Slug: um-primeiro-adeus +Status: published + +a brisa matinal que por nós passa convida-nos a ir com ela. o traço com que vais preenchendo o guardanapo de papel é conduzido pela perfeição. desfoco o olhar no gancho que te prende o cabelo. tudo o resto se condensa num sussurro. + +deixemos então que o silêncio paute a nossa mútua presença. +  +  +  +  +  +é assim que mais se diz. diff --git a/content/portuguese/vi-a-numa-carruagem-do-metro.md b/content/portuguese/vi-a-numa-carruagem-do-metro.md new file mode 100644 index 0000000..509ecc8 --- /dev/null +++ b/content/portuguese/vi-a-numa-carruagem-do-metro.md @@ -0,0 +1,8 @@ +Title: vi-a numa carruagem do metro. +Date: 2005-04-08 23:36 +Author: paulo.ribeiro +Category: portuguese +Slug: vi-a-numa-carruagem-do-metro +Status: published + +desolada. quando regressei à superfície o dia tinha acabado de findar. a noite como dois braços abertos. diff --git a/content/scanner/the-duller-the-blade.md b/content/scanner/the-duller-the-blade.md new file mode 100644 index 0000000..0ea5b08 --- /dev/null +++ b/content/scanner/the-duller-the-blade.md @@ -0,0 +1,8 @@ +Title: the duller the blade... +Date: 2005-03-28 21:40 +Author: paulo.ribeiro +Category: scanner +Slug: the-duller-the-blade +Status: published + +![the duller the blade...](https://diffraction.pt/blog/images/photos/05/the_duller_the_blade.jpg) diff --git a/content/scanner/when-i-was-a-little-kid.md b/content/scanner/when-i-was-a-little-kid.md new file mode 100644 index 0000000..d9e097a --- /dev/null +++ b/content/scanner/when-i-was-a-little-kid.md @@ -0,0 +1,10 @@ +Title: when i was a little kid my mother told me not to stare into the sun, +Date: 2005-04-25 01:02 +Author: paulo.ribeiro +Category: scanner +Slug: when-i-was-a-little-kid +Status: published + +so once when i was six i did. + +![when i was a little kid my mother told me not to stare into the sun,](https://diffraction.pt/blog/images/photos/05/when_i_was_a_little_kid.jpg) diff --git a/content/smena/a-place-called-home.md b/content/smena/a-place-called-home.md new file mode 100644 index 0000000..d72b8e8 --- /dev/null +++ b/content/smena/a-place-called-home.md @@ -0,0 +1,8 @@ +Title: a place called home +Date: 2006-03-05 12:54 +Author: paulo.ribeiro +Category: smena +Slug: a-place-called-home +Status: published + +![a place called home](https://diffraction.pt/blog/images/photos/06/a_place_called_home.jpg) diff --git a/content/smena/a-saida-de-emergencia.md b/content/smena/a-saida-de-emergencia.md new file mode 100644 index 0000000..85d31a1 --- /dev/null +++ b/content/smena/a-saida-de-emergencia.md @@ -0,0 +1,10 @@ +Title: a saída de emergência fica no infinito. +Date: 2006-05-12 00:09 +Author: paulo.ribeiro +Category: smena +Slug: a-saida-de-emergencia +Status: published + +![a saída de emergência fica no infinito.](https://diffraction.pt/blog/images/photos/06/a_saida_de_emergencia_i.jpg) + +![a saída de emergência fica no infinito.](https://diffraction.pt/blog/images/photos/06/a_saida_de_emergencia_ii.jpg) diff --git a/content/smena/be-there-tonight.md b/content/smena/be-there-tonight.md new file mode 100644 index 0000000..3a6a68c --- /dev/null +++ b/content/smena/be-there-tonight.md @@ -0,0 +1,8 @@ +Title: be there tonight +Date: 2008-11-22 20:23 +Author: paulo.ribeiro +Category: smena +Slug: be-there-tonight +Status: published + +![be there tonight](https://diffraction.pt/blog/images/photos/08/be_there_tonight.jpg) diff --git a/content/smena/dust.md b/content/smena/dust.md new file mode 100644 index 0000000..b2a1db6 --- /dev/null +++ b/content/smena/dust.md @@ -0,0 +1,10 @@ +Title: dust +Date: 2009-03-05 00:15 +Author: paulo.ribeiro +Category: smena +Slug: dust +Status: published + +![dust](https://diffraction.pt/blog/images/photos/09/dust_i.jpg) + +![dust](https://diffraction.pt/blog/images/photos/09/dust_ii.jpg) diff --git a/content/smena/exhausted.md b/content/smena/exhausted.md new file mode 100644 index 0000000..86afd2b --- /dev/null +++ b/content/smena/exhausted.md @@ -0,0 +1,10 @@ +Title: exhausted +Date: 2006-03-02 00:42 +Author: paulo.ribeiro +Category: smena +Slug: exhausted +Status: published + +![exhausted](https://diffraction.pt/blog/images/photos/06/exhausted_i.jpg) + +![exhausted](https://diffraction.pt/blog/images/photos/06/exhausted_ii.jpg) diff --git a/content/smena/fleeting.md b/content/smena/fleeting.md new file mode 100644 index 0000000..1373fa0 --- /dev/null +++ b/content/smena/fleeting.md @@ -0,0 +1,8 @@ +Title: f l e e t i n g . . . +Date: 2006-05-18 07:32 +Author: paulo.ribeiro +Category: smena +Slug: fleeting +Status: published + +![f l e e t i n g . . .](https://diffraction.pt/blog/images/photos/06/fleeting.jpg) diff --git a/content/smena/fossemos-nos-gaivotas.md b/content/smena/fossemos-nos-gaivotas.md new file mode 100644 index 0000000..073e654 --- /dev/null +++ b/content/smena/fossemos-nos-gaivotas.md @@ -0,0 +1,16 @@ +Title: fôssemos nós gaivotas +Date: 2006-06-09 01:46 +Author: paulo.ribeiro +Category: smena +Slug: fossemos-nos-gaivotas +Status: published + +![fôssemos nós gaivotas](https://diffraction.pt/blog/images/photos/06/fossemos_nos_gaivotas_i.jpg) + +![fôssemos nós gaivotas](https://diffraction.pt/blog/images/photos/06/fossemos_nos_gaivotas_ii.jpg) + +![fôssemos nós gaivotas](https://diffraction.pt/blog/images/photos/06/fossemos_nos_gaivotas_iii.jpg) + +![fôssemos nós gaivotas](https://diffraction.pt/blog/images/photos/06/fossemos_nos_gaivotas_iv.jpg) + +![fôssemos nós gaivotas](https://diffraction.pt/blog/images/photos/06/fossemos_nos_gaivotas_v.jpg) diff --git a/content/smena/from-afar.md b/content/smena/from-afar.md new file mode 100644 index 0000000..56deeeb --- /dev/null +++ b/content/smena/from-afar.md @@ -0,0 +1,8 @@ +Title: from afar +Date: 2008-11-23 12:28 +Author: paulo.ribeiro +Category: smena +Slug: from-afar +Status: published + +![from afar](https://diffraction.pt/blog/images/photos/08/from_afar.jpg) diff --git a/content/smena/in-another-life.md b/content/smena/in-another-life.md new file mode 100644 index 0000000..7983950 --- /dev/null +++ b/content/smena/in-another-life.md @@ -0,0 +1,8 @@ +Title: in another life +Date: 2007-04-12 23:36 +Author: paulo.ribeiro +Category: smena +Slug: in-another-life +Status: published + +![in another life](https://diffraction.pt/blog/images/photos/07/in_another_life.jpg) diff --git a/content/smena/into-the-dark.md b/content/smena/into-the-dark.md new file mode 100644 index 0000000..45b0c3b --- /dev/null +++ b/content/smena/into-the-dark.md @@ -0,0 +1,8 @@ +Title: into the dark +Date: 2011-01-10 22:51 +Author: paulo.ribeiro +Category: smena +Slug: into-the-dark +Status: published + +![into the dark](https://diffraction.pt/blog/images/photos/11/into_the_dark.jpg) diff --git a/content/smena/into-the-dread-of-night.md b/content/smena/into-the-dread-of-night.md new file mode 100644 index 0000000..134feb9 --- /dev/null +++ b/content/smena/into-the-dread-of-night.md @@ -0,0 +1,8 @@ +Title: into the dread of night +Date: 2006-07-23 12:48 +Author: paulo.ribeiro +Category: smena +Slug: into-the-dread-of-night +Status: published + +![into the dread of night](https://diffraction.pt/blog/images/photos/06/into_the_dread_of_night.jpg) diff --git a/content/smena/julgar-te-perto.md b/content/smena/julgar-te-perto.md new file mode 100644 index 0000000..7f739fb --- /dev/null +++ b/content/smena/julgar-te-perto.md @@ -0,0 +1,12 @@ +Title: julgar-te perto +Date: 2018-10-05 22:08 +Author: paulo.ribeiro +Category: smena +Slug: julgar-te-perto +Status: published + +![julgar-te perto](https://diffraction.pt/blog/images/photos/18/julgar-te_perto_i.jpg) + +![julgar-te perto](https://diffraction.pt/blog/images/photos/18/julgar-te_perto_ii.jpg) + +![julgar-te perto](https://diffraction.pt/blog/images/photos/18/julgar-te_perto_iii.jpg) diff --git a/content/smena/just-an-ordinary-morning.md b/content/smena/just-an-ordinary-morning.md new file mode 100644 index 0000000..4367067 --- /dev/null +++ b/content/smena/just-an-ordinary-morning.md @@ -0,0 +1,10 @@ +Title: just an ordinary morning +Date: 2006-03-28 09:07 +Author: paulo.ribeiro +Category: smena +Slug: just-an-ordinary-morning +Status: published + +![just an ordinary morning](https://diffraction.pt/blog/images/photos/06/just_an_ordinary_morning_i.jpg) + +![just an ordinary morning](https://diffraction.pt/blog/images/photos/06/just_an_ordinary_morning_ii.jpg) diff --git a/content/smena/kohlenmonoxid.md b/content/smena/kohlenmonoxid.md new file mode 100644 index 0000000..4ca92ce --- /dev/null +++ b/content/smena/kohlenmonoxid.md @@ -0,0 +1,10 @@ +Title: kohlenmonoxid +Date: 2006-01-30 07:53 +Author: paulo.ribeiro +Category: smena +Slug: kohlenmonoxid +Status: published + +![kohlenmonoxid](https://diffraction.pt/blog/images/photos/06/kohlenmonoxid.jpg) + +[+](/blog/2005/07/03/krane/) diff --git a/content/smena/order-out-of-chaos.md b/content/smena/order-out-of-chaos.md new file mode 100644 index 0000000..53c125d --- /dev/null +++ b/content/smena/order-out-of-chaos.md @@ -0,0 +1,10 @@ +Title: order out of chaos +Date: 2006-02-24 07:57 +Author: paulo.ribeiro +Category: smena +Slug: order-out-of-chaos +Status: published + +![order out of chaos](https://diffraction.pt/blog/images/photos/06/order_out_of_chaos_i.jpg) + +![order out of chaos](https://diffraction.pt/blog/images/photos/06/order_out_of_chaos_ii.jpg) diff --git a/content/smena/out-of-time.md b/content/smena/out-of-time.md new file mode 100644 index 0000000..51bab63 --- /dev/null +++ b/content/smena/out-of-time.md @@ -0,0 +1,10 @@ +Title: out of time +Date: 2007-01-02 23:44 +Author: paulo.ribeiro +Category: smena +Slug: out-of-time +Status: published + +![out of time](https://diffraction.pt/blog/images/photos/07/out_of_time_i.jpg) + +![out of time](https://diffraction.pt/blog/images/photos/07/out_of_time_ii.jpg) diff --git a/content/smena/the-persistence-of-loss-part-ii.md b/content/smena/the-persistence-of-loss-part-ii.md new file mode 100644 index 0000000..8857b4e --- /dev/null +++ b/content/smena/the-persistence-of-loss-part-ii.md @@ -0,0 +1,10 @@ +Title: the persistence of loss, part ii +Date: 2018-09-20 21:23 +Author: paulo.ribeiro +Category: smena +Slug: the-persistence-of-loss-part-ii +Status: published + +![the persistence of loss, part ii](https://diffraction.pt/blog/images/photos/18/the_persistence_of_loss,_part_ii.jpg) + +[+](/blog/2014/10/12/the-persistence-of-loss/) diff --git a/content/smena/whispering-wind.md b/content/smena/whispering-wind.md new file mode 100644 index 0000000..e588c55 --- /dev/null +++ b/content/smena/whispering-wind.md @@ -0,0 +1,10 @@ +Title: whispering wind +Date: 2007-02-23 00:18 +Author: paulo.ribeiro +Category: smena +Slug: whispering-wind +Status: published + +![whispering wind](https://diffraction.pt/blog/images/photos/07/whispering_wind_i.jpg) + +![whispering wind](https://diffraction.pt/blog/images/photos/07/whispering_wind_ii.jpg) diff --git a/content/video/nowhere-to-go.md b/content/video/nowhere-to-go.md new file mode 100644 index 0000000..207d039 --- /dev/null +++ b/content/video/nowhere-to-go.md @@ -0,0 +1,14 @@ +Title: nowhere to go +Date: 2005-08-28 03:43 +Author: paulo.ribeiro +Category: video +Slug: nowhere-to-go +Status: published + +runtime: 45 seconds +audio track: *"leaving hope"*, nine inch nails +  +  +**download** + + - [mpeg1](https://diffraction.pt/blog/images/videos/05/nowhere_to_go.mpg) (8.1 mb) diff --git a/content/video/passenger.md b/content/video/passenger.md new file mode 100644 index 0000000..f20a54e --- /dev/null +++ b/content/video/passenger.md @@ -0,0 +1,14 @@ +Title: passenger +Date: 2005-08-16 08:19 +Author: paulo.ribeiro +Category: video +Slug: passenger +Status: published + +runtime: 48 seconds +audio track: *"ghost train"*, ellen allien +  +  +**download** + + - [mpeg1](https://diffraction.pt/blog/images/videos/05/passenger.mpg) (8.4 mb) diff --git a/content/video/summer-afternoon-ii.md b/content/video/summer-afternoon-ii.md new file mode 100644 index 0000000..c8584c5 --- /dev/null +++ b/content/video/summer-afternoon-ii.md @@ -0,0 +1,14 @@ +Title: summer afternoon ii +Date: 2005-08-07 02:52 +Author: paulo.ribeiro +Category: video +Slug: summer-afternoon-ii +Status: published + +runtime: 38 seconds +audio track: *"foetus"*, efterklang +  +  +**download** + + - [mpeg1](https://diffraction.pt/blog/images/videos/05/summer_afternoon_ii.mpg) (6.7 mb) diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..b415349 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,46 @@ +import attila + +AUTHOR = 'paulo ribeiro' +SITENAME = 'd i f f r a c t i o n' +SITEURL = "" + +PATH = "content" + +TIMEZONE = 'Europe/Lisbon' + +DEFAULT_LANG = 'en' + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Theme +THEME = attila.get_path() +HOME_COLOR = '#222222' # fallback header color when no cover image is set + +# Plugins +PLUGINS = [] # explicit list turns off auto-discovery + +# Social +SOCIAL = ( + ('github', 'https://github.com/prcr'), +) + +DEFAULT_PAGINATION = False + +CATEGORIES_URL = 'categories.html' +CATEGORIES_SAVE_AS = 'categories.html' +TAGS_URL = 'tags.html' +TAGS_SAVE_AS = 'tags.html' +AUTHORS_URL = 'authors.html' +AUTHORS_SAVE_AS = 'authors.html' + +ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}/' +ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html' +PAGE_URL = '{slug}/' +PAGE_SAVE_AS = '{slug}/index.html' + +RELATIVE_URLS = True diff --git a/publishconf.py b/publishconf.py new file mode 100644 index 0000000..51e0f9c --- /dev/null +++ b/publishconf.py @@ -0,0 +1,22 @@ +# This file is only used if you use `make publish` or +# explicitly specify it as your config file. + +import os +import sys + +sys.path.append(os.curdir) +from pelicanconf import * + +# If your site is available via HTTPS, make sure SITEURL begins with https:// +SITEURL = "https://diffraction.pt/blog" +RELATIVE_URLS = False + +FEED_ALL_ATOM = "feeds/all.atom.xml" +CATEGORY_FEED_ATOM = "feeds/{slug}.atom.xml" + +DELETE_OUTPUT_DIRECTORY = True + +# Following items are often useful when publishing + +# DISQUS_SITENAME = "" +# GOOGLE_ANALYTICS = "" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..aa66987 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,8 @@ +[project] +name = "diffraction" +version = "0.1.0" +requires-python = ">=3.10" +dependencies = [ + "pelican[markdown]>=4.11", + "attila @ git+https://github.com/arulrajnet/attila.git@6a6484f422132380b61d2b8ef66e16938338f0ba", +] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..529070b --- /dev/null +++ b/uv.lock @@ -0,0 +1,818 @@ +version = 1 +revision = 3 +requires-python = ">=3.10" + +[[package]] +name = "anyio" +version = "4.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "idna" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, +] + +[[package]] +name = "attila" +version = "2.0" +source = { git = "https://github.com/arulrajnet/attila.git?rev=6a6484f422132380b61d2b8ef66e16938338f0ba#6a6484f422132380b61d2b8ef66e16938338f0ba" } +dependencies = [ + { name = "pelican" }, + { name = "pelican-image-process" }, + { name = "pelican-minify" }, + { name = "pelican-neighbors" }, + { name = "pelican-related-posts" }, + { name = "pelican-seo" }, + { name = "pelican-sitemap" }, + { name = "pelican-statistics" }, + { name = "pelican-webassets" }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, +] + +[[package]] +name = "blinker" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", size = 22460, upload-time = "2024-11-08T17:25:47.436Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/cb/f2ad4230dc2eb1a74edf38f1a38b9b52277f75bef262d8908e60d957e13c/blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc", size = 8458, upload-time = "2024-11-08T17:25:46.184Z" }, +] + +[[package]] +name = "diffraction" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "attila" }, + { name = "pelican", extra = ["markdown"] }, +] + +[package.metadata] +requires-dist = [ + { name = "attila", git = "https://github.com/arulrajnet/attila.git?rev=6a6484f422132380b61d2b8ef66e16938338f0ba" }, + { name = "pelican", extras = ["markdown"], specifier = ">=4.11" }, +] + +[[package]] +name = "docutils" +version = "0.22.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/b6/03bb70946330e88ffec97aefd3ea75ba575cb2e762061e0e62a213befee8/docutils-0.22.4.tar.gz", hash = "sha256:4db53b1fde9abecbb74d91230d32ab626d94f6badfc575d6db9194a49df29968", size = 2291750, upload-time = "2025-12-18T19:00:26.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/10/5da547df7a391dcde17f59520a231527b8571e6f46fc8efb02ccb370ab12/docutils-0.22.4-py3-none-any.whl", hash = "sha256:d0013f540772d1420576855455d050a2180186c91c15779301ac2ccb3eeb68de", size = 633196, upload-time = "2025-12-18T19:00:18.077Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "feedgenerator" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b0/d2/f05e9f4628cb0df988de66f8a97dd52877490e6ebf8e7b41cd341bf2ad6b/feedgenerator-2.2.1.tar.gz", hash = "sha256:0eaa955f1f0bcb5b87ac195af740f06ff9fff4a40ed30b8a7c6bbebb264d4dd1", size = 20872, upload-time = "2025-08-17T19:36:53.48Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/08/6f74bef4663fb137fa10b493facce85bee8c055b67fbd9a7695d88e3d1a3/feedgenerator-2.2.1-py3-none-any.whl", hash = "sha256:0d8bb321e49dd43c916b659e137c1eab1b1c053dd4535a03ef8d47e5f3358ba5", size = 18495, upload-time = "2025-08-17T19:36:52.036Z" }, +] + +[[package]] +name = "idna" +version = "3.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/77/7b3966d0b9d1d31a36ddf1746926a11dface89a83409bf1483f0237aa758/idna-3.15.tar.gz", hash = "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc", size = 199245, upload-time = "2026-05-12T22:45:57.011Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/23/408243171aa9aaba178d3e2559159c24c1171a641aa83b67bdd3394ead8e/idna-3.15-py3-none-any.whl", hash = "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8", size = 72340, upload-time = "2026-05-12T22:45:55.733Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "lxml" +version = "6.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/28/30/9abc9e34c657c33834eaf6cd02124c61bdf5944d802aa48e69be8da3585d/lxml-6.1.0.tar.gz", hash = "sha256:bfd57d8008c4965709a919c3e9a98f76c2c7cb319086b3d26858250620023b13", size = 4197006, upload-time = "2026-04-18T04:32:51.613Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/6e/ee8fc0e01202eb3dd2b9e1ea4f0910d72425d35c66187c63931d7a3ea73f/lxml-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:41dcc4c7b10484257cbd6c37b83ddb26df2b0e5aff5ac00d095689015af868ec", size = 8540733, upload-time = "2026-04-18T04:27:33.185Z" }, + { url = "https://files.pythonhosted.org/packages/54/e8/325fe9b942824c773dffe1baf0c35b046a763851fdff4393af4450bceeb7/lxml-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a31286dbb5e74c8e9a5344465b77ab4c5bd511a253b355b5ca2fae7e579fafec", size = 4602805, upload-time = "2026-04-18T04:27:36.097Z" }, + { url = "https://files.pythonhosted.org/packages/2d/81/221aa3ea4a40370bb0358fa454cbe7e5a837e522f7630c24dfef3f9a73b0/lxml-6.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1bc4cc83fb7f66ffb16f74d6dd0162e144333fc36ebcce32246f80c8735b2551", size = 5002652, upload-time = "2026-04-18T04:27:30.603Z" }, + { url = "https://files.pythonhosted.org/packages/c6/e1/fdbfb9019542f1875c093576df7f37adc2983c8ba7ecf17e5f14490bc107/lxml-6.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:20cf4d0651987c906a2f5cba4e3a8d6ba4bfdf973cfe2a96c0d6053888ea2ecd", size = 5155332, upload-time = "2026-04-18T04:27:33.507Z" }, + { url = "https://files.pythonhosted.org/packages/56/b1/4087c782fff397cd03abf9c551069be59bb04a7e548c50fb7b9c4cdaca28/lxml-6.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ffb34ea45a82dd637c2c97ae1bbb920850c1e59bcae79ce1c15af531d83e7215", size = 5057226, upload-time = "2026-04-18T04:27:37.567Z" }, + { url = "https://files.pythonhosted.org/packages/5d/66/516c79dec8417f3a972327330254c0b5fac93d5c3ecfd8a5b43650a5a4d9/lxml-6.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a1d9b99e5b2597e4f5aed2484fef835256fa1b68a19e4265c97628ef4bf8bcf4", size = 5287588, upload-time = "2026-04-18T04:27:41.4Z" }, + { url = "https://files.pythonhosted.org/packages/94/1d/e578f4cbeb42b9df9f29b0d44a45a7cdfa3a5ae300dd59ec68e3602d29bb/lxml-6.1.0-cp310-cp310-manylinux_2_28_i686.whl", hash = "sha256:d43aa26dcda363f21e79afa0668f5029ed7394b3bb8c92a6927a3d34e8b610ea", size = 5412438, upload-time = "2026-04-18T04:27:45.589Z" }, + { url = "https://files.pythonhosted.org/packages/47/5b/2aa68307d6d15959e84d4882f9c04f2da63127eac463e1594166f681ef77/lxml-6.1.0-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:6262b87f9e5c1e5fe501d6c153247289af42eb44ad7660b9b3de17baaf92d6f6", size = 4770997, upload-time = "2026-04-18T04:27:49.853Z" }, + { url = "https://files.pythonhosted.org/packages/ae/c9/3e51fc1228310a836b4eb32595ae00154ab12197fca944676a3ab3b163ea/lxml-6.1.0-cp310-cp310-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d1392c569c032f78a11a25d1de1c43fff13294c793b39e19d84fade3045cbbc3", size = 5359678, upload-time = "2026-04-18T04:31:56.184Z" }, + { url = "https://files.pythonhosted.org/packages/b5/91/ab8bc834f977fbbd310e697b120787c153db026f9151e02a88d2645d4e5b/lxml-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:045e387d1f4f42a418380930fa3f45c73c9b392faf67e495e58902e68e8f44a7", size = 5107890, upload-time = "2026-04-18T04:32:00.387Z" }, + { url = "https://files.pythonhosted.org/packages/bb/10/8a143cfa3ac99cb5b0523ff6d0429a9c9dddf25ffeae09caa3866c7964d9/lxml-6.1.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:9f93d5b8b07f73e8c77e3c6556a3db269918390c804b5e5fcdd4858232cc8f16", size = 4803977, upload-time = "2026-04-18T04:32:05.099Z" }, + { url = "https://files.pythonhosted.org/packages/45/fd/ee02faf52fa39c2fe32f824628958b9aa86dff21343dc3161f0e3c6ccd15/lxml-6.1.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:de550d129f18d8ab819651ffe4f38b1b713c7e116707de3c0c6400d0ef34fbc1", size = 5350277, upload-time = "2026-04-18T04:32:09.176Z" }, + { url = "https://files.pythonhosted.org/packages/85/8c/b3481364b8554b5d36d540189a87fc71e94b0b01c24f8f152bd662dd2e45/lxml-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c08da09dc003c9e8c70e06b53a11db6fb3b250c21c4236b03c7d7b443c318e7a", size = 5309717, upload-time = "2026-04-18T04:32:13.303Z" }, + { url = "https://files.pythonhosted.org/packages/74/e8/a6b21927077a9127afa17473b6576b322616f34ac50ee4f577e763b75ec0/lxml-6.1.0-cp310-cp310-win32.whl", hash = "sha256:37448bf9c7d7adfc5254763901e2bbd6bb876228dfc1fc7f66e58c06368a7544", size = 3598491, upload-time = "2026-04-18T04:27:24.288Z" }, + { url = "https://files.pythonhosted.org/packages/ea/82/14dea800d041274d96c07d49ff9191f011d1427450850de19bf541e2cc12/lxml-6.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:2593a0a6621545b9095b71ad74ed4226eba438a7d9fc3712a99bdb15508cf93a", size = 4020906, upload-time = "2026-04-18T04:27:27.53Z" }, + { url = "https://files.pythonhosted.org/packages/f2/ba/d3539aaf4d9d21456b9a7b902816623227d05d63e7c5aafd8834c4b9bed6/lxml-6.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:e80807d72f96b96ad5588cb85c75616e4f2795a7737d4630784c51497beb7776", size = 3667787, upload-time = "2026-04-18T04:27:29.407Z" }, + { url = "https://files.pythonhosted.org/packages/5e/5d/3bccad330292946f97962df9d5f2d3ae129cce6e212732a781e856b91e07/lxml-6.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cec05be8c876f92a5aa07b01d60bbb4d11cfbdd654cad0561c0d7b5c043a61b9", size = 8526232, upload-time = "2026-04-18T04:27:40.389Z" }, + { url = "https://files.pythonhosted.org/packages/a7/51/adc8826570a112f83bb4ddb3a2ab510bbc2ccd62c1b9fe1f34fae2d90b57/lxml-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9c03e048b6ce8e77b09c734e931584894ecd58d08296804ca2d0b184c933ce50", size = 4595448, upload-time = "2026-04-18T04:27:44.208Z" }, + { url = "https://files.pythonhosted.org/packages/54/84/5a9ec07cbe1d2334a6465f863b949a520d2699a755738986dcd3b6b89e3f/lxml-6.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:942454ff253da14218f972b23dc72fa4edf6c943f37edd19cd697618b626fac5", size = 4923771, upload-time = "2026-04-18T04:32:17.402Z" }, + { url = "https://files.pythonhosted.org/packages/a7/23/851cfa33b6b38adb628e45ad51fb27105fa34b2b3ba9d1d4aa7a9428dfe0/lxml-6.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d036ee7b99d5148072ac7c9b847193decdfeac633db350363f7bce4fff108f0e", size = 5068101, upload-time = "2026-04-18T04:32:21.437Z" }, + { url = "https://files.pythonhosted.org/packages/b0/38/41bf99c2023c6b79916ba057d83e9db21d642f473cac210201222882d38b/lxml-6.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ae5d8d5427f3cc317e7950f2da7ad276df0cfa37b8de2f5658959e618ea8512", size = 5002573, upload-time = "2026-04-18T04:32:25.373Z" }, + { url = "https://files.pythonhosted.org/packages/c2/20/053aa10bdc39747e1e923ce2d45413075e84f70a136045bb09e5eaca41d3/lxml-6.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:363e47283bde87051b821826e71dde47f107e08614e1aa312ba0c5711e77738c", size = 5202816, upload-time = "2026-04-18T04:32:29.393Z" }, + { url = "https://files.pythonhosted.org/packages/9a/da/bc710fad8bf04b93baee752c192eaa2210cd3a84f969d0be7830fea55802/lxml-6.1.0-cp311-cp311-manylinux_2_28_i686.whl", hash = "sha256:f504d861d9f2a8f94020130adac88d66de93841707a23a86244263d1e54682f5", size = 5329999, upload-time = "2026-04-18T04:32:34.019Z" }, + { url = "https://files.pythonhosted.org/packages/b3/cb/bf035dedbdf7fab49411aa52e4236f3445e98d38647d85419e6c0d2806b9/lxml-6.1.0-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:23a5dc68e08ed13331d61815c08f260f46b4a60fdd1640bbeb82cf89a9d90289", size = 4659643, upload-time = "2026-04-18T04:32:37.932Z" }, + { url = "https://files.pythonhosted.org/packages/5c/4f/22be31f33727a5e4c7b01b0a874503026e50329b259d3587e0b923cf964b/lxml-6.1.0-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f15401d8d3dbf239e23c818afc10c7207f7b95f9a307e092122b6f86dd43209a", size = 5265963, upload-time = "2026-04-18T04:32:41.881Z" }, + { url = "https://files.pythonhosted.org/packages/c8/2b/d44d0e5c79226017f4ab8c87a802ebe4f89f97e6585a8e4166dffcdd7b6e/lxml-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fcf3da95e93349e0647d48d4b36a12783105bcc74cb0c416952f9988410846a3", size = 5045444, upload-time = "2026-04-18T04:32:44.512Z" }, + { url = "https://files.pythonhosted.org/packages/d3/c3/3f034fec1594c331a6dbf9491238fdcc9d66f68cc529e109ec75b97197e1/lxml-6.1.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:0d082495c5fcf426e425a6e28daaba1fcb6d8f854a4ff01effb1f1f381203eb9", size = 4712703, upload-time = "2026-04-18T04:32:47.16Z" }, + { url = "https://files.pythonhosted.org/packages/12/16/0b83fccc158218aca75a7aa33e97441df737950734246b9fffa39301603d/lxml-6.1.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:e3c4f84b24a1fcba435157d111c4b755099c6ff00a3daee1ad281817de75ed11", size = 5252745, upload-time = "2026-04-18T04:32:50.427Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ee/12e6c1b39a77666c02eaa77f94a870aaf63c4ac3a497b2d52319448b01c6/lxml-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:976a6b39b1b13e8c354ad8d3f261f3a4ac6609518af91bdb5094760a08f132c4", size = 5226822, upload-time = "2026-04-18T04:32:53.437Z" }, + { url = "https://files.pythonhosted.org/packages/34/20/c7852904858b4723af01d2fc14b5d38ff57cb92f01934a127ebd9a9e51aa/lxml-6.1.0-cp311-cp311-win32.whl", hash = "sha256:857efde87d365706590847b916baff69c0bc9252dc5af030e378c9800c0b10e3", size = 3594026, upload-time = "2026-04-18T04:27:31.903Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/d60c732b56da5085175c07c74b2df4e6d181b0c9a61e1691474f06ef4b39/lxml-6.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:183bfb45a493081943be7ea2b5adfc2b611e1cf377cefa8b8a8be404f45ef9a7", size = 4025114, upload-time = "2026-04-18T04:27:34.077Z" }, + { url = "https://files.pythonhosted.org/packages/c2/df/c84dcc175fd690823436d15b41cb920cd5ba5e14cd8bfb00949d5903b320/lxml-6.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:19f4164243fc206d12ed3d866e80e74f5bc3627966520da1a5f97e42c32a3f39", size = 3667742, upload-time = "2026-04-18T04:27:38.45Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d4/9326838b59dc36dfae42eec9656b97520f9997eee1de47b8316aaeed169c/lxml-6.1.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d2f17a16cd8751e8eb233a7e41aecdf8e511712e00088bf9be455f604cd0d28d", size = 8570663, upload-time = "2026-04-18T04:27:48.253Z" }, + { url = "https://files.pythonhosted.org/packages/d8/a4/053745ce1f8303ccbb788b86c0db3a91b973675cefc42566a188637b7c40/lxml-6.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f0cea5b1d3e6e77d71bd2b9972eb2446221a69dc52bb0b9c3c6f6e5700592d93", size = 4624024, upload-time = "2026-04-18T04:27:52.594Z" }, + { url = "https://files.pythonhosted.org/packages/90/97/a517944b20f8fd0932ad2109482bee4e29fe721416387a363306667941f6/lxml-6.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fc46da94826188ed45cb53bd8e3fc076ae22675aea2087843d4735627f867c6d", size = 4930895, upload-time = "2026-04-18T04:32:56.29Z" }, + { url = "https://files.pythonhosted.org/packages/94/7c/e08a970727d556caa040a44773c7b7e3ad0f0d73dedc863543e9a8b931f2/lxml-6.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9147d8e386ec3b82c3b15d88927f734f565b0aaadef7def562b853adca45784a", size = 5093820, upload-time = "2026-04-18T04:32:58.94Z" }, + { url = "https://files.pythonhosted.org/packages/88/ee/2a5c2aa2c32016a226ca25d3e1056a8102ea6e1fe308bf50213586635400/lxml-6.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5715e0e28736a070f3f34a7ccc09e2fdcba0e3060abbcf61a1a5718ff6d6b105", size = 5005790, upload-time = "2026-04-18T04:33:01.272Z" }, + { url = "https://files.pythonhosted.org/packages/e3/38/a0db9be8f38ad6043ab9429487c128dd1d30f07956ef43040402f8da49e8/lxml-6.1.0-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4937460dc5df0cdd2f06a86c285c28afda06aefa3af949f9477d3e8df430c485", size = 5630827, upload-time = "2026-04-18T04:33:04.036Z" }, + { url = "https://files.pythonhosted.org/packages/31/ba/3c13d3fc24b7cacf675f808a3a1baabf43a30d0cd24c98f94548e9aa58eb/lxml-6.1.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bc783ee3147e60a25aa0445ea82b3e8aabb83b240f2b95d32cb75587ff781814", size = 5240445, upload-time = "2026-04-18T04:33:06.87Z" }, + { url = "https://files.pythonhosted.org/packages/55/ba/eeef4ccba09b2212fe239f46c1692a98db1878e0872ae320756488878a94/lxml-6.1.0-cp312-cp312-manylinux_2_28_i686.whl", hash = "sha256:40d9189f80075f2e1f88db21ef815a2b17b28adf8e50aaf5c789bfe737027f32", size = 5350121, upload-time = "2026-04-18T04:33:09.365Z" }, + { url = "https://files.pythonhosted.org/packages/7e/01/1da87c7b587c38d0cbe77a01aae3b9c1c49ed47d76918ef3db8fc151b1ca/lxml-6.1.0-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:05b9b8787e35bec69e68daf4952b2e6dfcfb0db7ecf1a06f8cdfbbac4eb71aad", size = 4694949, upload-time = "2026-04-18T04:33:11.628Z" }, + { url = "https://files.pythonhosted.org/packages/a1/88/7db0fe66d5aaf128443ee1623dec3db1576f3e4c17751ec0ef5866468590/lxml-6.1.0-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0f0f08beb0182e3e9a86fae124b3c47a7b41b7b69b225e1377db983802404e54", size = 5243901, upload-time = "2026-04-18T04:33:13.95Z" }, + { url = "https://files.pythonhosted.org/packages/00/a8/1346726af7d1f6fca1f11223ba34001462b0a3660416986d37641708d57c/lxml-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73becf6d8c81d4c76b1014dbd3584cb26d904492dcf73ca85dc8bff08dcd6d2d", size = 5048054, upload-time = "2026-04-18T04:33:16.965Z" }, + { url = "https://files.pythonhosted.org/packages/2e/b7/85057012f035d1a0c87e02f8c723ca3c3e6e0728bcf4cb62080b21b1c1e3/lxml-6.1.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:1ae225f66e5938f4fa29d37e009a3bb3b13032ac57eb4eb42afa44f6e4054e69", size = 4777324, upload-time = "2026-04-18T04:33:19.832Z" }, + { url = "https://files.pythonhosted.org/packages/75/6c/ad2f94a91073ef570f33718040e8e160d5fb93331cf1ab3ca1323f939e2d/lxml-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:690022c7fae793b0489aa68a658822cea83e0d5933781811cabbf5ea3bcfe73d", size = 5645702, upload-time = "2026-04-18T04:33:22.436Z" }, + { url = "https://files.pythonhosted.org/packages/3b/89/0bb6c0bd549c19004c60eea9dc554dd78fd647b72314ef25d460e0d208c6/lxml-6.1.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:63aeafc26aac0be8aff14af7871249e87ea1319be92090bfd632ec68e03b16a5", size = 5232901, upload-time = "2026-04-18T04:33:26.21Z" }, + { url = "https://files.pythonhosted.org/packages/a1/d9/d609a11fb567da9399f525193e2b49847b5a409cdebe737f06a8b7126bdc/lxml-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:264c605ab9c0e4aa1a679636f4582c4d3313700009fac3ec9c3412ed0d8f3e1d", size = 5261333, upload-time = "2026-04-18T04:33:28.984Z" }, + { url = "https://files.pythonhosted.org/packages/a6/3a/ac3f99ec8ac93089e7dd556f279e0d14c24de0a74a507e143a2e4b496e7c/lxml-6.1.0-cp312-cp312-win32.whl", hash = "sha256:56971379bc5ee8037c5a0f09fa88f66cdb7d37c3e38af3e45cf539f41131ac1f", size = 3596289, upload-time = "2026-04-18T04:27:42.819Z" }, + { url = "https://files.pythonhosted.org/packages/f2/a7/0a915557538593cb1bbeedcd40e13c7a261822c26fecbbdb71dad0c2f540/lxml-6.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:bba078de0031c219e5dd06cf3e6bf8fb8e6e64a77819b358f53bb132e3e03366", size = 3997059, upload-time = "2026-04-18T04:27:46.764Z" }, + { url = "https://files.pythonhosted.org/packages/92/96/a5dc078cf0126fbfbc35611d77ecd5da80054b5893e28fb213a5613b9e1d/lxml-6.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:c3592631e652afa34999a088f98ba7dfc7d6aff0d535c410bea77a71743f3819", size = 3659552, upload-time = "2026-04-18T04:27:51.133Z" }, + { url = "https://files.pythonhosted.org/packages/08/03/69347590f1cf4a6d5a4944bb6099e6d37f334784f16062234e1f892fdb1d/lxml-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a0092f2b107b69601adf562a57c956fbb596e05e3e6651cabd3054113b007e45", size = 8559689, upload-time = "2026-04-18T04:31:57.785Z" }, + { url = "https://files.pythonhosted.org/packages/3f/58/25e00bb40b185c974cfe156c110474d9a8a8390d5f7c92a4e328189bb60e/lxml-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc7140d7a7386e6b545d41b7358f4d02b656d4053f5fa6859f92f4b9c2572c4d", size = 4617892, upload-time = "2026-04-18T04:32:01.78Z" }, + { url = "https://files.pythonhosted.org/packages/f5/54/92ad98a94ac318dc4f97aaac22ff8d1b94212b2ae8af5b6e9b354bf825f7/lxml-6.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:419c58fc92cc3a2c3fa5f78c63dbf5da70c1fa9c1b25f25727ecee89a96c7de2", size = 4923489, upload-time = "2026-04-18T04:33:31.401Z" }, + { url = "https://files.pythonhosted.org/packages/15/3b/a20aecfab42bdf4f9b390590d345857ad3ffd7c51988d1c89c53a0c73faf/lxml-6.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:37fabd1452852636cf38ecdcc9dd5ca4bba7a35d6c53fa09725deeb894a87491", size = 5082162, upload-time = "2026-04-18T04:33:34.262Z" }, + { url = "https://files.pythonhosted.org/packages/45/26/2cdb3d281ac1bd175603e290cbe4bad6eff127c0f8de90bafd6f8548f0fd/lxml-6.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a2853c8b2170cc6cd54a6b4d50d2c1a8a7aeca201f23804b4898525c7a152cfc", size = 4993247, upload-time = "2026-04-18T04:33:36.674Z" }, + { url = "https://files.pythonhosted.org/packages/f6/05/d735aef963740022a08185c84821f689fc903acb3d50326e6b1e9886cc22/lxml-6.1.0-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8e369cbd690e788c8d15e56222d91a09c6a417f49cbc543040cba0fe2e25a79e", size = 5613042, upload-time = "2026-04-18T04:33:39.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/b8/ead7c10efff731738c72e59ed6eb5791854879fbed7ae98781a12006263a/lxml-6.1.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e69aa6805905807186eb00e66c6d97a935c928275182eb02ee40ba00da9623b2", size = 5228304, upload-time = "2026-04-18T04:33:41.647Z" }, + { url = "https://files.pythonhosted.org/packages/6b/10/e9842d2ec322ea65f0a7270aa0315a53abed06058b88ef1b027f620e7a5f/lxml-6.1.0-cp313-cp313-manylinux_2_28_i686.whl", hash = "sha256:4bd1bdb8a9e0e2dd229de19b5f8aebac80e916921b4b2c6ef8a52bc131d0c1f9", size = 5341578, upload-time = "2026-04-18T04:33:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/89/54/40d9403d7c2775fa7301d3ddd3464689bfe9ba71acc17dfff777071b4fdc/lxml-6.1.0-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:cbd7b79cdcb4986ad78a2662625882747f09db5e4cd7b2ae178a88c9c51b3dfe", size = 4700209, upload-time = "2026-04-18T04:33:47.552Z" }, + { url = "https://files.pythonhosted.org/packages/85/b2/bbdcc2cf45dfc7dfffef4fd97e5c47b15919b6a365247d95d6f684ef5e82/lxml-6.1.0-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:43e4d297f11080ec9d64a4b1ad7ac02b4484c9f0e2179d9c4ef78e886e747b88", size = 5232365, upload-time = "2026-04-18T04:33:50.249Z" }, + { url = "https://files.pythonhosted.org/packages/48/5a/b06875665e53aaba7127611a7bed3b7b9658e20b22bc2dd217a0b7ab0091/lxml-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cc16682cc987a3da00aa56a3aa3075b08edb10d9b1e476938cfdbee8f3b67181", size = 5043654, upload-time = "2026-04-18T04:33:52.71Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9c/e71a069d09641c1a7abeb30e693f828c7c90a41cbe3d650b2d734d876f85/lxml-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:d6d8efe71429635f0559579092bb5e60560d7b9115ee38c4adbea35632e7fa24", size = 4769326, upload-time = "2026-04-18T04:33:55.244Z" }, + { url = "https://files.pythonhosted.org/packages/cc/06/7a9cd84b3d4ed79adf35f874750abb697dec0b4a81a836037b36e47c091a/lxml-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e39ab3a28af7784e206d8606ec0e4bcad0190f63a492bca95e94e5a4aef7f6e", size = 5635879, upload-time = "2026-04-18T04:33:58.509Z" }, + { url = "https://files.pythonhosted.org/packages/cc/f0/9d57916befc1e54c451712c7ee48e9e74e80ae4d03bdce49914e0aee42cd/lxml-6.1.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:9eb667bf50856c4a58145f8ca2d5e5be160191e79eb9e30855a476191b3c3495", size = 5224048, upload-time = "2026-04-18T04:34:00.943Z" }, + { url = "https://files.pythonhosted.org/packages/99/75/90c4eefda0c08c92221fe0753db2d6699a4c628f76ff4465ec20dea84cc1/lxml-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7f4a77d6f7edf9230cee3e1f7f6764722a41604ee5681844f18db9a81ea0ec33", size = 5250241, upload-time = "2026-04-18T04:34:03.365Z" }, + { url = "https://files.pythonhosted.org/packages/5e/73/16596f7e4e38fa33084b9ccbccc22a15f82a290a055126f2c1541236d2ff/lxml-6.1.0-cp313-cp313-win32.whl", hash = "sha256:28902146ffbe5222df411c5d19e5352490122e14447e98cd118907ee3fd6ee62", size = 3596938, upload-time = "2026-04-18T04:31:56.206Z" }, + { url = "https://files.pythonhosted.org/packages/8e/63/981401c5680c1eb30893f00a19641ac80db5d1e7086c62cb4b13ed813038/lxml-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:4a1503c56e4e2b38dc76f2f2da7bae69670c0f1933e27cfa34b2fa5876410b16", size = 3995728, upload-time = "2026-04-18T04:31:58.763Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e8/c358a38ac3e541d16a1b527e4e9cb78c0419b0506a070ace11777e5e8404/lxml-6.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:e0af85773850417d994d019741239b901b22c6680206f46a34766926e466141d", size = 3658372, upload-time = "2026-04-18T04:32:03.629Z" }, + { url = "https://files.pythonhosted.org/packages/eb/45/cee4cf203ef0bab5c52afc118da61d6b460c928f2893d40023cfa27e0b80/lxml-6.1.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:ab863fd37458fed6456525f297d21239d987800c46e67da5ef04fc6b3dd93ac8", size = 8576713, upload-time = "2026-04-18T04:32:06.831Z" }, + { url = "https://files.pythonhosted.org/packages/8a/a7/eda05babeb7e046839204eaf254cd4d7c9130ce2bbf0d9e90ea41af5654d/lxml-6.1.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:6fd8b1df8254ff4fd93fd31da1fc15770bde23ac045be9bb1f87425702f61cc9", size = 4623874, upload-time = "2026-04-18T04:32:10.755Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e9/db5846de9b436b91890a62f29d80cd849ea17948a49bf532d5278ee69a9e/lxml-6.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:47024feaae386a92a146af0d2aeed65229bf6fff738e6a11dda6b0015fb8fd03", size = 4949535, upload-time = "2026-04-18T04:34:06.657Z" }, + { url = "https://files.pythonhosted.org/packages/5a/ba/0d3593373dcae1d68f40dc3c41a5a92f2544e68115eb2f62319a4c2a6500/lxml-6.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3f00972f84450204cd5d93a5395965e348956aaceaadec693a22ec743f8ae3eb", size = 5086881, upload-time = "2026-04-18T04:34:09.556Z" }, + { url = "https://files.pythonhosted.org/packages/43/76/759a7484539ad1af0d125a9afe9c3fb5f82a8779fd1f5f56319d9e4ea2fd/lxml-6.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97faa0860e13b05b15a51fb4986421ef7a30f0b3334061c416e0981e9450ca4c", size = 5031305, upload-time = "2026-04-18T04:34:12.336Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b9/c1f0daf981a11e47636126901fd4ab82429e18c57aeb0fc3ad2940b42d8b/lxml-6.1.0-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:972a6451204798675407beaad97b868d0c733d9a74dafefc63120b81b8c2de28", size = 5647522, upload-time = "2026-04-18T04:34:14.89Z" }, + { url = "https://files.pythonhosted.org/packages/31/e6/1f533dcd205275363d9ba3511bcec52fa2df86abf8abe6a5f2c599f0dc31/lxml-6.1.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fe022f20bc4569ec66b63b3fb275a3d628d9d32da6326b2982584104db6d3086", size = 5239310, upload-time = "2026-04-18T04:34:17.652Z" }, + { url = "https://files.pythonhosted.org/packages/c3/8c/4175fb709c78a6e315ed814ed33be3defd8b8721067e70419a6cf6f971da/lxml-6.1.0-cp314-cp314-manylinux_2_28_i686.whl", hash = "sha256:75c4c7c619a744f972f4451bf5adf6d0fb00992a1ffc9fd78e13b0bc817cc99f", size = 5350799, upload-time = "2026-04-18T04:34:20.529Z" }, + { url = "https://files.pythonhosted.org/packages/fd/77/6ffdebc5994975f0dde4acb59761902bd9d9bb84422b9a0bd239a7da9ca8/lxml-6.1.0-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:3648f20d25102a22b6061c688beb3a805099ea4beb0a01ce62975d926944d292", size = 4697693, upload-time = "2026-04-18T04:34:23.541Z" }, + { url = "https://files.pythonhosted.org/packages/f8/f1/565f36bd5c73294602d48e04d23f81ff4c8736be6ba5e1d1ec670ac9be80/lxml-6.1.0-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:77b9f99b17cbf14026d1e618035077060fc7195dd940d025149f3e2e830fbfcb", size = 5250708, upload-time = "2026-04-18T04:34:26.001Z" }, + { url = "https://files.pythonhosted.org/packages/5a/11/a68ab9dd18c5c499404deb4005f4bc4e0e88e5b72cd755ad96efec81d18d/lxml-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:32662519149fd7a9db354175aa5e417d83485a8039b8aaa62f873ceee7ea4cad", size = 5084737, upload-time = "2026-04-18T04:34:28.32Z" }, + { url = "https://files.pythonhosted.org/packages/ab/78/e8f41e2c74f4af564e6a0348aea69fb6daaefa64bc071ef469823d22cc18/lxml-6.1.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:73d658216fc173cf2c939e90e07b941c5e12736b0bf6a99e7af95459cfe8eabb", size = 4737817, upload-time = "2026-04-18T04:34:30.784Z" }, + { url = "https://files.pythonhosted.org/packages/06/2d/aa4e117aa2ce2f3b35d9ff246be74a2f8e853baba5d2a92c64744474603a/lxml-6.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ac4db068889f8772a4a698c5980ec302771bb545e10c4b095d4c8be26749616f", size = 5670753, upload-time = "2026-04-18T04:34:33.675Z" }, + { url = "https://files.pythonhosted.org/packages/08/f5/dd745d50c0409031dbfcc4881740542a01e54d6f0110bd420fa7782110b8/lxml-6.1.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:45e9dfbd1b661eb64ba0d4dbe762bd210c42d86dd1e5bd2bdf89d634231beb43", size = 5238071, upload-time = "2026-04-18T04:34:36.12Z" }, + { url = "https://files.pythonhosted.org/packages/3e/74/ad424f36d0340a904665867dab310a3f1f4c96ff4039698de83b77f44c1f/lxml-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:89e8d73d09ac696a5ba42ec69787913d53284f12092f651506779314f10ba585", size = 5264319, upload-time = "2026-04-18T04:34:39.035Z" }, + { url = "https://files.pythonhosted.org/packages/53/36/a15d8b3514ec889bfd6aa3609107fcb6c9189f8dc347f1c0b81eded8d87c/lxml-6.1.0-cp314-cp314-win32.whl", hash = "sha256:ebe33f4ec1b2de38ceb225a1749a2965855bffeef435ba93cd2d5d540783bf2f", size = 3657139, upload-time = "2026-04-18T04:32:20.006Z" }, + { url = "https://files.pythonhosted.org/packages/1a/a4/263ebb0710851a3c6c937180a9a86df1206fdfe53cc43005aa2237fd7736/lxml-6.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:398443df51c538bd578529aa7e5f7afc6c292644174b47961f3bf87fe5741120", size = 4064195, upload-time = "2026-04-18T04:32:23.876Z" }, + { url = "https://files.pythonhosted.org/packages/80/68/2000f29d323b6c286de077ad20b429fc52272e44eae6d295467043e56012/lxml-6.1.0-cp314-cp314-win_arm64.whl", hash = "sha256:8c8984e1d8c4b3949e419158fda14d921ff703a9ed8a47236c6eb7a2b6cb4946", size = 3741870, upload-time = "2026-04-18T04:32:27.922Z" }, + { url = "https://files.pythonhosted.org/packages/30/e9/21383c7c8d43799f0da90224c0d7c921870d476ec9b3e01e1b2c0b8237c5/lxml-6.1.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:1081dd10bc6fa437db2500e13993abf7cc30716d0a2f40e65abb935f02ec559c", size = 8827548, upload-time = "2026-04-18T04:32:15.094Z" }, + { url = "https://files.pythonhosted.org/packages/a5/01/c6bc11cd587030dd4f719f65c5657960649fe3e19196c844c75bf32cd0d6/lxml-6.1.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:dabecc48db5f42ba348d1f5d5afdc54c6c4cc758e676926c7cd327045749517d", size = 4735866, upload-time = "2026-04-18T04:32:18.924Z" }, + { url = "https://files.pythonhosted.org/packages/f3/01/757132fff5f4acf25463b5298f1a46099f3a94480b806547b29ce5e385de/lxml-6.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e3dd5fe19c9e0ac818a9c7f132a5e43c1339ec1cbbfecb1a938bd3a47875b7c9", size = 4969476, upload-time = "2026-04-18T04:34:41.889Z" }, + { url = "https://files.pythonhosted.org/packages/fd/fb/1bc8b9d27ed64be7c8903db6c89e74dc8c2cd9ec630a7462e4654316dc5b/lxml-6.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9e7b0a4ca6dcc007a4cef00a761bba2dea959de4bd2df98f926b33c92ca5dfb9", size = 5103719, upload-time = "2026-04-18T04:34:44.797Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e7/5bf82fa28133536a54601aae633b14988e89ed61d4c1eb6b899b023233aa/lxml-6.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d27bbe326c6b539c64b42638b18bc6003a8d88f76213a97ac9ed4f885efeab7", size = 5027890, upload-time = "2026-04-18T04:34:47.634Z" }, + { url = "https://files.pythonhosted.org/packages/2d/20/e048db5d4b4ea0366648aa595f26bb764b2670903fc585b87436d0a5032c/lxml-6.1.0-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4e425db0c5445ef0ad56b0eec54f89b88b2d884656e536a90b2f52aecb4ca86", size = 5596008, upload-time = "2026-04-18T04:34:51.503Z" }, + { url = "https://files.pythonhosted.org/packages/9a/c2/d10807bc8da4824b39e5bd01b5d05c077b6fd01bd91584167edf6b269d22/lxml-6.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4b89b098105b8599dc57adac95d1813409ac476d3c948a498775d3d0c6124bfb", size = 5224451, upload-time = "2026-04-18T04:34:54.263Z" }, + { url = "https://files.pythonhosted.org/packages/3c/15/2ebea45bea427e7f0057e9ce7b2d62c5aba20c6b001cca89ed0aadb3ad41/lxml-6.1.0-cp314-cp314t-manylinux_2_28_i686.whl", hash = "sha256:c4a699432846df86cc3de502ee85f445ebad748a1c6021d445f3e514d2cd4b1c", size = 5312135, upload-time = "2026-04-18T04:34:56.818Z" }, + { url = "https://files.pythonhosted.org/packages/31/e2/87eeae151b0be2a308d49a7ec444ff3eb192b14251e62addb29d0bf3778f/lxml-6.1.0-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:30e7b2ed63b6c8e97cca8af048589a788ab5c9c905f36d9cf1c2bb549f450d2f", size = 4639126, upload-time = "2026-04-18T04:34:59.704Z" }, + { url = "https://files.pythonhosted.org/packages/a3/51/8a3f6a20902ad604dd746ec7b4000311b240d389dac5e9d95adefd349e0c/lxml-6.1.0-cp314-cp314t-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:022981127642fe19866d2907d76241bb07ed21749601f727d5d5dd1ce5d1b773", size = 5232579, upload-time = "2026-04-18T04:35:02.658Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d2/650d619bdbe048d2c3f2c31edb00e35670a5e2d65b4fe3b61bce37b19121/lxml-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:23cad0cc86046d4222f7f418910e46b89971c5a45d3c8abfad0f64b7b05e4a9b", size = 5084206, upload-time = "2026-04-18T04:35:05.175Z" }, + { url = "https://files.pythonhosted.org/packages/dd/8a/672ca1a3cbeabd1f511ca275a916c0514b747f4b85bdaae103b8fa92f307/lxml-6.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:21c3302068f50d1e8728c67c87ba92aa87043abee517aa2576cca1855326b405", size = 4758906, upload-time = "2026-04-18T04:35:08.098Z" }, + { url = "https://files.pythonhosted.org/packages/be/f1/ef4b691da85c916cb2feb1eec7414f678162798ac85e042fa164419ac05c/lxml-6.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:be10838781cb3be19251e276910cd508fe127e27c3242e50521521a0f3781690", size = 5620553, upload-time = "2026-04-18T04:35:11.23Z" }, + { url = "https://files.pythonhosted.org/packages/59/17/94e81def74107809755ac2782fdad4404420f1c92ca83433d117a6d5acf0/lxml-6.1.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:2173a7bffe97667bbf0767f8a99e587740a8c56fdf3befac4b09cb29a80276fd", size = 5229458, upload-time = "2026-04-18T04:35:14.254Z" }, + { url = "https://files.pythonhosted.org/packages/21/55/c4be91b0f830a871fc1b0d730943d56013b683d4671d5198260e2eae722b/lxml-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c6854e9cf99c84beb004eecd7d3a3868ef1109bf2b1df92d7bc11e96a36c2180", size = 5247861, upload-time = "2026-04-18T04:35:17.006Z" }, + { url = "https://files.pythonhosted.org/packages/c2/ca/77123e4d77df3cb1e968ade7b1f808f5d3a5c1c96b18a33895397de292c1/lxml-6.1.0-cp314-cp314t-win32.whl", hash = "sha256:00750d63ef0031a05331b9223463b1c7c02b9004cef2346a5b2877f0f9494dd2", size = 3897377, upload-time = "2026-04-18T04:32:07.656Z" }, + { url = "https://files.pythonhosted.org/packages/64/ce/3554833989d074267c063209bae8b09815e5656456a2d332b947806b05ff/lxml-6.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:80410c3a7e3c617af04de17caa9f9f20adaa817093293d69eae7d7d0522836f5", size = 4392701, upload-time = "2026-04-18T04:32:12.113Z" }, + { url = "https://files.pythonhosted.org/packages/2b/a0/9b916c68c0e57752c07f8f64b30138d9d4059dbeb27b90274dedbea128ff/lxml-6.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:26dd9f57ee3bd41e7d35b4c98a2ffd89ed11591649f421f0ec19f67d50ec67ac", size = 3817120, upload-time = "2026-04-18T04:32:15.803Z" }, + { url = "https://files.pythonhosted.org/packages/f2/88/55143966481409b1740a3ac669e611055f49efd68087a5ce41582325db3e/lxml-6.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:546b66c0dd1bb8d9fa89d7123e5fa19a8aff3a1f2141eb22df96112afb17b842", size = 3930134, upload-time = "2026-04-18T04:32:35.008Z" }, + { url = "https://files.pythonhosted.org/packages/b5/97/28b985c2983938d3cb696dd5501423afb90a8c3e869ef5d3c62569282c0f/lxml-6.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5cfa1a34df366d9dc0d5eaf420f4cf2bb1e1bebe1066d1c2fc28c179f8a4004c", size = 4210749, upload-time = "2026-04-18T04:36:03.626Z" }, + { url = "https://files.pythonhosted.org/packages/29/67/dfab2b7d58214921935ccea7ce9b3df9b7d46f305d12f0f532ac7cf6b804/lxml-6.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:db88156fcf544cdbf0d95588051515cfdfd4c876fc66444eb98bceb5d6db76de", size = 4318463, upload-time = "2026-04-18T04:36:06.309Z" }, + { url = "https://files.pythonhosted.org/packages/32/a2/4ac7eb32a4d997dd352c32c32399aae27b3f268d440e6f9cfa405b575d2f/lxml-6.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:07f98f5496f96bf724b1e3c933c107f0cbf2745db18c03d2e13a291c3afd2635", size = 4251124, upload-time = "2026-04-18T04:36:09.056Z" }, + { url = "https://files.pythonhosted.org/packages/33/ef/d6abd850bb4822f9b720cfe36b547a558e694881010ff7d012191e8769c6/lxml-6.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4642e04449a1e164b5ff71ffd901ddb772dfabf5c9adf1b7be5dffe1212bc037", size = 4401758, upload-time = "2026-04-18T04:36:11.803Z" }, + { url = "https://files.pythonhosted.org/packages/40/44/3ee09a5b60cb44c4f2fbc1c9015cfd6ff5afc08f991cab295d3024dcbf2d/lxml-6.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:7da13bb6fbadfafb474e0226a30570a3445cfd47c86296f2446dafbd77079ace", size = 3508860, upload-time = "2026-04-18T04:32:48.619Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, + { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, + { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, + { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, + { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, + { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, + { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, + { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, + { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "minify-html" +version = "0.18.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/77/b7/83dc18bef0cd6f4268d1a63dd682730d3c1150d77a973a34c8de63610bdc/minify_html-0.18.1.tar.gz", hash = "sha256:43998530ef537701f003a8e908b756d78eff303c86b041a95855e290518ba79c", size = 96577, upload-time = "2025-10-25T22:27:18.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/52/cf9e710af2cec7ad7a2b0a09732d2be348720ac38eb2a552ea2d8e22129e/minify_html-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eb592b6b03e747f6b4807b64527cf36491c208fd8f414841fbcdc28c9dbc1296", size = 3063312, upload-time = "2025-10-25T23:01:15.111Z" }, + { url = "https://files.pythonhosted.org/packages/84/3f/d088a428c446bc6ee15106f9df53a9b1025968a57e593825c1ee5a1eecf5/minify_html-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9103ce2b90edb4ba2961a7ddf95a1c6e262ec14845d88d0bfaf9f01560698005", size = 2829090, upload-time = "2025-10-25T23:10:14.355Z" }, + { url = "https://files.pythonhosted.org/packages/ac/3e/f8fd984fb7e8f4dcc056fa24fbc87f076ca8ebc577f59da80394918a5311/minify_html-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90c8d3267e69db2a5f041cc15d92d5991973b6dee6a08458d4e9b72e2524c846", size = 2900814, upload-time = "2025-10-25T22:32:37.951Z" }, + { url = "https://files.pythonhosted.org/packages/b2/28/9089be4d9bc84fed9699575c4ebccf9313d3b46836c8ad031a07ed7f61da/minify_html-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af58fe4ef6fa050e36fefdac2a7d0c35c3656fb1d55c07d521b6fa3d137e3f68", size = 3083144, upload-time = "2025-10-25T22:27:23.289Z" }, + { url = "https://files.pythonhosted.org/packages/1a/16/8c0d06133c15672c000afa1df84898943032fcc378a395a7f34f832b1aed/minify_html-0.18.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:354fb1dbf9b5b596d249b6dba5b95ed819f70064f36b6a28e5e470e90d859ceb", size = 3082646, upload-time = "2025-10-25T22:31:11.599Z" }, + { url = "https://files.pythonhosted.org/packages/3e/23/963e10490c1a0845c0811f39fa11f76049336b8e9214c0973e8b6741ac53/minify_html-0.18.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:17d20b79e4218a19ef11b608d8702e23fdeca624444ba1684364255a00a12c07", size = 3327846, upload-time = "2025-10-25T22:27:26.71Z" }, + { url = "https://files.pythonhosted.org/packages/53/5a/86da37dbf975977dc371eff2ccb6304a158623df89deaaedf6ac8b3bdf37/minify_html-0.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:0c81fc35cf81926d603af04e9dfb9db57aa912d20da615f9d6e19d840c0ef006", size = 3118856, upload-time = "2025-10-25T22:33:41.117Z" }, + { url = "https://files.pythonhosted.org/packages/a4/f1/03fa8d0f8801c9a13a3330715890a88424c5e4277b895713f8aeea9c3543/minify_html-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:aa9ce0978b03b4040ef72f4eb6a367bd615165d88b5c2363c098efa3d60d7855", size = 3062942, upload-time = "2025-10-25T22:39:42.716Z" }, + { url = "https://files.pythonhosted.org/packages/21/d0/3403a9a782b8012196e138f963be0d0f8d9e244af6069486860afbac9944/minify_html-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:91791ea8a6c5f6cc227dc9febd036382e3ac7f93c157d48599f9668a5e813339", size = 2828941, upload-time = "2025-10-25T22:58:22.088Z" }, + { url = "https://files.pythonhosted.org/packages/e9/e6/bc21600265679476da5f90d74212aa84ee413eb1e4068238d5f34d8cb531/minify_html-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a20c648f26b600a55ea2f3f8e8c1c2797408890cfe453e58a151c3bcd1a088fb", size = 2900823, upload-time = "2025-10-25T22:27:51.596Z" }, + { url = "https://files.pythonhosted.org/packages/7b/0b/81e7135dd922bd9a0d3c835d829e9a145193da6ac5cc21b1e8bc9c8c9f9f/minify_html-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b92f40bab8178cbc39a0e2c602513b6478b9489e4b99c5452a680342881db7d8", size = 3083123, upload-time = "2025-10-25T22:27:24.31Z" }, + { url = "https://files.pythonhosted.org/packages/23/97/7468805064065af619db0a5bba8490ccdad976607e7b1abf671be85c3b3e/minify_html-0.18.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:af83d722fe73e1e571da1130d09f06358cf507a18c153c72a4e56c276e7305af", size = 3082360, upload-time = "2025-10-25T22:31:09.786Z" }, + { url = "https://files.pythonhosted.org/packages/4c/53/05b2d57a2cd1f5da5e8848f180074d4b2963025c57082d87b9c472d82177/minify_html-0.18.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f5c3e4a711cd51643cb0b76d24fdd74646e55f0a92ae3c3ef2f8a6746f6b7ae4", size = 3328307, upload-time = "2025-10-25T22:27:19.346Z" }, + { url = "https://files.pythonhosted.org/packages/60/c7/fb44633a499fda905b176405cc82917a4ce7261a21f135a5cf20465d341c/minify_html-0.18.1-cp311-cp311-win_amd64.whl", hash = "sha256:d99db3db6208729aea917a884413eed0850148792bc33fc81f70ec9e41465906", size = 3118683, upload-time = "2025-10-25T22:36:42.195Z" }, + { url = "https://files.pythonhosted.org/packages/4e/2b/b6f715517caeae632977d89e4d213df3a125c976112e17704ee3e18f511e/minify_html-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:fe625fae576d20f0fe5981f0f7a5fe6d96608bbb8daf4815f7a0b28be7d62472", size = 3061927, upload-time = "2025-10-25T22:41:31.329Z" }, + { url = "https://files.pythonhosted.org/packages/30/37/ffef9cb491b0830a56ec29d4a13bc09a7a92e0ca9d48dd5690ba7304a91f/minify_html-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3e9a91dc200c0a99e0b3c577b44aee0aa449aaf510464197f198e94b7bdf2d48", size = 2828402, upload-time = "2025-10-25T22:52:37.004Z" }, + { url = "https://files.pythonhosted.org/packages/17/cc/07587b26e266cacfa2d640d479a0a7978632a4b38cac55ef93aac0b3ad91/minify_html-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:854590f1fc1b2ba8f8cd26e925030a37fb6e042545d0cef2b44d0d1942d02943", size = 2900527, upload-time = "2025-10-25T22:27:48.511Z" }, + { url = "https://files.pythonhosted.org/packages/c7/1a/2861184a8fc568fcc323a91486f269701752a47cb4750a31c861d6586a25/minify_html-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:568aa4fea1918408ffa2a4f7aad1c35cdcdadb7e1a50ca06bcdce9fa8a4a648a", size = 3083388, upload-time = "2025-10-25T22:27:26.465Z" }, + { url = "https://files.pythonhosted.org/packages/4a/82/d849a3da2b45439fb1062a7ef52f78ad5e69bf2e5f44c8dead889c5cfb88/minify_html-0.18.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:98c8a76f35394f3ba125cb1b645e9a4a18080f0a12912346c7ded9711d96d045", size = 3082234, upload-time = "2025-10-25T22:30:47.184Z" }, + { url = "https://files.pythonhosted.org/packages/92/3b/26ee72b299f5b308d629c76e35b1065b95c99d3bd63302138820bf883a57/minify_html-0.18.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:72960df65a518f3a8a1c9cdba4d22fe75cdd599ac6f39d806441fe8f00d9ce5f", size = 3328226, upload-time = "2025-10-25T22:34:09.559Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c2/e0a6843fe795382b3f39bd34ef3125b3213682a2223a0b1f643ee6999828/minify_html-0.18.1-cp312-cp312-win_amd64.whl", hash = "sha256:55de95959c5b0a5b816e3a071fe8cd781bc015921e4d1fd8ca169a6729d86cd6", size = 3117419, upload-time = "2025-10-25T22:36:52.725Z" }, + { url = "https://files.pythonhosted.org/packages/bd/c4/d718d624832721c1714eb0090d9913bb63492d2c7a109162812374a8b8d8/minify_html-0.18.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:d476ad2a54055d71bb7a94e1c1fad1e8e53f0b33a91cf800d8df4ebbce1d7dd9", size = 3061221, upload-time = "2025-10-25T22:44:03.283Z" }, + { url = "https://files.pythonhosted.org/packages/43/f0/f2aa69a6a9e9d9010afff2aae07734a534de4e2246a114e53f141dd83883/minify_html-0.18.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:21790c2e578918f390aeebc865c94bd2f50eb790e27cc61d4e7725501b551250", size = 2828172, upload-time = "2025-10-25T23:18:11.743Z" }, + { url = "https://files.pythonhosted.org/packages/2f/59/5aa912eee1860895a016dc2e93fe8522fcf10590f12dc6a50c790b3997ed/minify_html-0.18.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00f407d32f3f8369901f0e6c92610f351f69dacf4ed594d373924f54fbf01ded", size = 2900261, upload-time = "2025-10-25T22:27:50.473Z" }, + { url = "https://files.pythonhosted.org/packages/4f/e2/8520c2f183084752174a7a4528b604748c4f7353496bce5fbe96b760c79e/minify_html-0.18.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c952a8f9e5a6403611b338b75bbf9469cf4ce04f15426a9ef9da87456fd55bd6", size = 3082847, upload-time = "2025-10-25T22:30:48.972Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c0/ed804ea3722cdc828518556e9b40ea21230e0ccc8d326bacb8b98f90004f/minify_html-0.18.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0e1592a4efc56848129d60f95bdcf79e32e1cce045aa004ab57233b7b16e126f", size = 3082149, upload-time = "2025-10-25T22:31:14.339Z" }, + { url = "https://files.pythonhosted.org/packages/55/4f/dc937c47aab7d7b692a916bd85b90830244c0b17a988bde019063a832b11/minify_html-0.18.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a0e557e7e43b233b5416cd0b0874ac369ce168f2024f7199925350f5bc09af15", size = 3327698, upload-time = "2025-10-25T22:27:16.688Z" }, + { url = "https://files.pythonhosted.org/packages/aa/22/59c7751f8b029dee05b3b46c3b21f1fe4bb1fa9450176533d92da823bb5e/minify_html-0.18.1-cp313-cp313-win_amd64.whl", hash = "sha256:f8fca598b171ee603b8ed399bedd2de00d202cfcb0e98feadb21deb11d5d669b", size = 3116928, upload-time = "2025-10-25T22:37:01.598Z" }, + { url = "https://files.pythonhosted.org/packages/91/a4/61b966701e1d5fb06a7564d17ac53cc5990b083649748a249833e73d3d6a/minify_html-0.18.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:e34af8574ed701555561fcc29d14ff6e8969df5281d51b62cdf556ca0ca7a56e", size = 3061250, upload-time = "2025-10-25T23:04:30.374Z" }, + { url = "https://files.pythonhosted.org/packages/40/14/ee02ac4f89afa8b888d5fe36c2f6261831b0bb191d3579b68286a9ef6364/minify_html-0.18.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e93301610f6c78ff83cf9d556d779ed4dee1c8aadf45a12dc4b40cebbe477a2e", size = 2828096, upload-time = "2025-10-25T22:55:15.804Z" }, + { url = "https://files.pythonhosted.org/packages/5a/d9/5e34d74abadf89e40caf5f06e9b52b49d96da1bff437b1f2f05aa454c665/minify_html-0.18.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f3f167339638f26af34a56027b24e7e2daa03670b84a1ba661975d6d4536481", size = 2900061, upload-time = "2025-10-25T22:27:53.055Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b9/45023457cd150be87fa6893e4e524929f36a46a1de92b7ce95d40e685e0d/minify_html-0.18.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e862f89f1493c17fe74d8c7a75bbd480aa7784bbf47ec396d9db4871101f94e4", size = 3082816, upload-time = "2025-10-25T22:27:26.023Z" }, + { url = "https://files.pythonhosted.org/packages/a7/42/c5015b02b5ee8b8194870f3beace2b14ac0e197d754e43f0973a36a3c6df/minify_html-0.18.1-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:045dd5640e988cc385d350e224e13f609a606a6cf9fa5f5011a1d860d4ebe607", size = 3082224, upload-time = "2025-10-25T22:30:42.538Z" }, + { url = "https://files.pythonhosted.org/packages/6a/04/cf74fd1f980c42068d229e9657415b008b3a65504fb2fa22b09cdf579e88/minify_html-0.18.1-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:3a11a926b2c236f527d8295b7f6e20c41728bdf870732273e2471e8c693f6109", size = 3327448, upload-time = "2025-10-25T22:30:55.968Z" }, + { url = "https://files.pythonhosted.org/packages/67/22/35ed1e1f733573de2988924bebc7a6e7b37027e37e43e8a3ac35e00fd960/minify_html-0.18.1-cp314-cp314-win_amd64.whl", hash = "sha256:41f46915ce2634dd70138488a96d6b36e8b8cc2c2ee2953d89c525658394500a", size = 3116545, upload-time = "2025-10-25T22:36:25.166Z" }, +] + +[[package]] +name = "ordered-set" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/ca/bfac8bc689799bcca4157e0e0ced07e70ce125193fc2e166d2e685b7e2fe/ordered-set-4.1.0.tar.gz", hash = "sha256:694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8", size = 12826, upload-time = "2022-01-26T14:38:56.6Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/55/af02708f230eb77084a299d7b08175cff006dea4f2721074b92cdb0296c0/ordered_set-4.1.0-py3-none-any.whl", hash = "sha256:046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562", size = 7634, upload-time = "2022-01-26T14:38:48.677Z" }, +] + +[[package]] +name = "pelican" +version = "4.11.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blinker" }, + { name = "docutils" }, + { name = "feedgenerator" }, + { name = "jinja2" }, + { name = "ordered-set" }, + { name = "pygments" }, + { name = "python-dateutil" }, + { name = "rich" }, + { name = "tzdata", marker = "sys_platform == 'win32'" }, + { name = "unidecode" }, + { name = "watchfiles" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cf/ab/a5e863de66054c561e111687b4c1f7cb2ad5f2d4805d2bb12863f0f637cd/pelican-4.11.0.post0.tar.gz", hash = "sha256:0d5e9c0cc9c6713ab6c25b2c4b64844f34d9be8c8c8cc7f42c3a8aa6b3bbbe33", size = 1547126, upload-time = "2025-10-30T10:21:34.396Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/30/c3/a6bf5a88ec27887d31c740117b72df4f7a66910552ae3f6ccadaba5ae934/pelican-4.11.0.post0-py3-none-any.whl", hash = "sha256:522a26598d3555a48b8392a582843f96bc9dafd5efe16b8f6a0b292441290620", size = 1351261, upload-time = "2025-10-30T10:21:29.688Z" }, +] + +[package.optional-dependencies] +markdown = [ + { name = "markdown" }, +] + +[[package]] +name = "pelican-image-process" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "lxml" }, + { name = "pelican" }, + { name = "pillow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/58/95b1c7f61e434e0520e7250214a034628a283103d6c2d5afe68fc88e9a06/pelican_image_process-3.3.0.tar.gz", hash = "sha256:88cfa983896879ab866a7ce6ca1dbb47e432b7e4d9e782f4f255d93a143aae48", size = 6493839, upload-time = "2025-11-18T08:50:34.497Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/1f/5362b20b345d7cb3cdbf0870bbf3e98eab040cfd40f8107ea5ae1982aa5d/pelican_image_process-3.3.0-py3-none-any.whl", hash = "sha256:b220799ff60a59acbdd8aacdda9311957b4b87dd1eea9b9320be7db3f542a461", size = 6522840, upload-time = "2025-11-18T08:50:32.331Z" }, +] + +[[package]] +name = "pelican-minify" +version = "2.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "minify-html" }, + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/28/fb71a16c86aecbc76936327fd206355d4a4657fc9e6d3dbec92756def6bb/pelican_minify-2.0.1.tar.gz", hash = "sha256:dd8f07bb264cfb0b784f1f88ab22a990d14f6d21e6d504017eb53f27e2cfd1b1", size = 5809, upload-time = "2025-10-31T09:39:30.466Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/3d/78a0e03be59c04478d0720173a9083e525574c04eb148661cce9a490b883/pelican_minify-2.0.1-py3-none-any.whl", hash = "sha256:87bacb03f8a75a03e40c93d6cea986271841a4f5f1214d2f35ce741019327bb0", size = 6082, upload-time = "2025-10-31T09:39:28.435Z" }, +] + +[[package]] +name = "pelican-neighbors" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/e1/d5dfde3080c9ef32984da5001ecdec181d135013edeef2931532d7dcd855/pelican-neighbors-1.2.0.tar.gz", hash = "sha256:1cbeee08f4d2e135452c044924c3f8e5e39ff083dcfb7485e8eeafdab9d2e445", size = 16834, upload-time = "2021-05-04T15:26:19.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/ad/f2ad5fa3c1d35681707cf809a4573dda85a67dac007c59ff9371dae87b29/pelican_neighbors-1.2.0-py3-none-any.whl", hash = "sha256:963df1d27dd8b34ac7b85320e63184d3f4e396e4570a3d49f5911246387a35bb", size = 16792, upload-time = "2021-05-04T15:26:20.979Z" }, +] + +[[package]] +name = "pelican-related-posts" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3f/f3/d8beebc2c39c7b95d3711bea72d3c7dfd6913169eb150b2dc29fed7230fa/pelican-related-posts-1.0.0.tar.gz", hash = "sha256:e106487e279368ccc7ab74609197a5f298d54f6d4e1eeb36f8bc0c2291227222", size = 3734, upload-time = "2020-08-29T17:23:03.167Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/db/680ae2076b7caa5abcaa1234ea08e8fed98569752198d2d221f5e8d8e425/pelican_related_posts-1.0.0-py3-none-any.whl", hash = "sha256:0f1dcdf34f90c41f275aba428879a5fde24e166cf0154d3a07d59cc5071976d5", size = 3449, upload-time = "2020-08-29T17:23:05.15Z" }, +] + +[[package]] +name = "pelican-seo" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/d5/a06835ee4b4069c7ca985599cd4ee813f6bfa44651f13bab3fe6fcd50b88/pelican_seo-1.4.0.tar.gz", hash = "sha256:a4d8b12fd9a333e6a32d93afd17ff80b90f3ef32e65e49425aab01e8bc7fce74", size = 27747, upload-time = "2025-04-25T11:21:39.152Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/9c/73ad808165ecd8935206f358ca8c20e94b73d2dd3045abfb7f2db04412a3/pelican_seo-1.4.0-py3-none-any.whl", hash = "sha256:c0c69e83f5e4eacbe9d2128d0884f79432bd537e0928066f5e08d312d358d319", size = 36353, upload-time = "2025-04-25T11:21:37.784Z" }, +] + +[[package]] +name = "pelican-sitemap" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/c1/d9e1d539decfba947d711bcb37427ad15914557a728418bd928d56e58a32/pelican_sitemap-1.2.2.tar.gz", hash = "sha256:93f72d035dd0ec2f5cee38b2766bbd7f6a54bf186635ae1261a6deac422dcfb7", size = 8013, upload-time = "2025-10-12T15:24:36.727Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/c2/d2f98364b49a40bac9f315f29d8c22322b47bc4ebdec6a8e3a4f657ebc24/pelican_sitemap-1.2.2-py3-none-any.whl", hash = "sha256:09ba150dd1b54ef855f18e7ec920160d7118e932e0dac1c6e8bf3a41e938e682", size = 8046, upload-time = "2025-10-12T15:24:35.678Z" }, +] + +[[package]] +name = "pelican-statistics" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5e/b5/ff348ea371553423afd666bc6544509b6b4ed267f77887972088cac0109f/pelican_statistics-1.0.0.tar.gz", hash = "sha256:d9d20b262bb8e9af975c68fb73169fd9d588f26ff340260387ec4dc81f2d13b0", size = 5410, upload-time = "2025-01-12T09:54:35.008Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/94/cea69c4042022106cf9ae93c6d1af32770bf8f154903d09a63d305f01043/pelican_statistics-1.0.0-py3-none-any.whl", hash = "sha256:f2397fc1cee0731e65057d755c5aa8811d075b20c11b2bdc07a88ea7b7dc40e1", size = 6242, upload-time = "2025-01-12T09:54:32.484Z" }, +] + +[[package]] +name = "pelican-webassets" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pelican" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/22/6241f976879780ec6f89bf45df36952169f305cdddbaabcba2ae797e699e/pelican_webassets-2.1.0.tar.gz", hash = "sha256:0a418b88ebd6d96efae4d666394552bcacc8d30d2f0abb5bb4db26064e8cfed0", size = 133756, upload-time = "2024-11-03T01:41:05.387Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d6/844e251c8da875d6ff4a86715394f43f8ad2141d70577f7e77e4058576b2/pelican_webassets-2.1.0-py3-none-any.whl", hash = "sha256:9df6659ecb565af88df55df4aac27cafc948299ef3d4fc743f7385db2e274475", size = 149769, upload-time = "2024-11-03T01:41:03.253Z" }, +] + +[[package]] +name = "pillow" +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, + { url = "https://files.pythonhosted.org/packages/68/e1/748f5663efe6edcfc4e74b2b93edfb9b8b99b67f21a854c3ae416500a2d9/pillow-12.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:8be29e59487a79f173507c30ddf57e733a357f67881430449bb32614075a40ab", size = 5354347, upload-time = "2026-04-01T14:42:44.255Z" }, + { url = "https://files.pythonhosted.org/packages/47/a1/d5ff69e747374c33a3b53b9f98cca7889fce1fd03d79cdc4e1bccc6c5a87/pillow-12.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:71cde9a1e1551df7d34a25462fc60325e8a11a82cc2e2f54578e5e9a1e153d65", size = 4695873, upload-time = "2026-04-01T14:42:46.452Z" }, + { url = "https://files.pythonhosted.org/packages/df/21/e3fbdf54408a973c7f7f89a23b2cb97a7ef30c61ab4142af31eee6aebc88/pillow-12.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f490f9368b6fc026f021db16d7ec2fbf7d89e2edb42e8ec09d2c60505f5729c7", size = 6280168, upload-time = "2026-04-01T14:42:49.228Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f1/00b7278c7dd52b17ad4329153748f87b6756ec195ff786c2bdf12518337d/pillow-12.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8bd7903a5f2a4545f6fd5935c90058b89d30045568985a71c79f5fd6edf9b91e", size = 8088188, upload-time = "2026-04-01T14:42:51.735Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cf/220a5994ef1b10e70e85748b75649d77d506499352be135a4989c957b701/pillow-12.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3997232e10d2920a68d25191392e3a4487d8183039e1c74c2297f00ed1c50705", size = 6394401, upload-time = "2026-04-01T14:42:54.343Z" }, + { url = "https://files.pythonhosted.org/packages/e9/bd/e51a61b1054f09437acfbc2ff9106c30d1eb76bc1453d428399946781253/pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e74473c875d78b8e9d5da2a70f7099549f9eb37ded4e2f6a463e60125bccd176", size = 7079655, upload-time = "2026-04-01T14:42:56.954Z" }, + { url = "https://files.pythonhosted.org/packages/6b/3d/45132c57d5fb4b5744567c3817026480ac7fc3ce5d4c47902bc0e7f6f853/pillow-12.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:56a3f9c60a13133a98ecff6197af34d7824de9b7b38c3654861a725c970c197b", size = 6503105, upload-time = "2026-04-01T14:42:59.847Z" }, + { url = "https://files.pythonhosted.org/packages/7d/2e/9df2fc1e82097b1df3dce58dc43286aa01068e918c07574711fcc53e6fb4/pillow-12.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90e6f81de50ad6b534cab6e5aef77ff6e37722b2f5d908686f4a5c9eba17a909", size = 7203402, upload-time = "2026-04-01T14:43:02.664Z" }, + { url = "https://files.pythonhosted.org/packages/bd/2e/2941e42858ebb67e50ae741473de81c2984e6eff7b397017623c676e2e8d/pillow-12.2.0-cp311-cp311-win32.whl", hash = "sha256:8c984051042858021a54926eb597d6ee3012393ce9c181814115df4c60b9a808", size = 6378149, upload-time = "2026-04-01T14:43:05.274Z" }, + { url = "https://files.pythonhosted.org/packages/69/42/836b6f3cd7f3e5fa10a1f1a5420447c17966044c8fbf589cc0452d5502db/pillow-12.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6e6b2a0c538fc200b38ff9eb6628228b77908c319a005815f2dde585a0664b60", size = 7082626, upload-time = "2026-04-01T14:43:08.557Z" }, + { url = "https://files.pythonhosted.org/packages/c2/88/549194b5d6f1f494b485e493edc6693c0a16f4ada488e5bd974ed1f42fad/pillow-12.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:9a8a34cc89c67a65ea7437ce257cea81a9dad65b29805f3ecee8c8fe8ff25ffe", size = 2463531, upload-time = "2026-04-01T14:43:10.743Z" }, + { url = "https://files.pythonhosted.org/packages/58/be/7482c8a5ebebbc6470b3eb791812fff7d5e0216c2be3827b30b8bb6603ed/pillow-12.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2d192a155bbcec180f8564f693e6fd9bccff5a7af9b32e2e4bf8c9c69dbad6b5", size = 5308279, upload-time = "2026-04-01T14:43:13.246Z" }, + { url = "https://files.pythonhosted.org/packages/d8/95/0a351b9289c2b5cbde0bacd4a83ebc44023e835490a727b2a3bd60ddc0f4/pillow-12.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f3f40b3c5a968281fd507d519e444c35f0ff171237f4fdde090dd60699458421", size = 4695490, upload-time = "2026-04-01T14:43:15.584Z" }, + { url = "https://files.pythonhosted.org/packages/de/af/4e8e6869cbed569d43c416fad3dc4ecb944cb5d9492defaed89ddd6fe871/pillow-12.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:03e7e372d5240cc23e9f07deca4d775c0817bffc641b01e9c3af208dbd300987", size = 6284462, upload-time = "2026-04-01T14:43:18.268Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9e/c05e19657fd57841e476be1ab46c4d501bffbadbafdc31a6d665f8b737b6/pillow-12.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b86024e52a1b269467a802258c25521e6d742349d760728092e1bc2d135b4d76", size = 8094744, upload-time = "2026-04-01T14:43:20.716Z" }, + { url = "https://files.pythonhosted.org/packages/2b/54/1789c455ed10176066b6e7e6da1b01e50e36f94ba584dc68d9eebfe9156d/pillow-12.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7371b48c4fa448d20d2714c9a1f775a81155050d383333e0a6c15b1123dda005", size = 6398371, upload-time = "2026-04-01T14:43:23.443Z" }, + { url = "https://files.pythonhosted.org/packages/43/e3/fdc657359e919462369869f1c9f0e973f353f9a9ee295a39b1fea8ee1a77/pillow-12.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62f5409336adb0663b7caa0da5c7d9e7bdbaae9ce761d34669420c2a801b2780", size = 7087215, upload-time = "2026-04-01T14:43:26.758Z" }, + { url = "https://files.pythonhosted.org/packages/8b/f8/2f6825e441d5b1959d2ca5adec984210f1ec086435b0ed5f52c19b3b8a6e/pillow-12.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:01afa7cf67f74f09523699b4e88c73fb55c13346d212a59a2db1f86b0a63e8c5", size = 6509783, upload-time = "2026-04-01T14:43:29.56Z" }, + { url = "https://files.pythonhosted.org/packages/67/f9/029a27095ad20f854f9dba026b3ea6428548316e057e6fc3545409e86651/pillow-12.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc3d34d4a8fbec3e88a79b92e5465e0f9b842b628675850d860b8bd300b159f5", size = 7212112, upload-time = "2026-04-01T14:43:32.091Z" }, + { url = "https://files.pythonhosted.org/packages/be/42/025cfe05d1be22dbfdb4f264fe9de1ccda83f66e4fc3aac94748e784af04/pillow-12.2.0-cp312-cp312-win32.whl", hash = "sha256:58f62cc0f00fd29e64b29f4fd923ffdb3859c9f9e6105bfc37ba1d08994e8940", size = 6378489, upload-time = "2026-04-01T14:43:34.601Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7b/25a221d2c761c6a8ae21bfa3874988ff2583e19cf8a27bf2fee358df7942/pillow-12.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:7f84204dee22a783350679a0333981df803dac21a0190d706a50475e361c93f5", size = 7084129, upload-time = "2026-04-01T14:43:37.213Z" }, + { url = "https://files.pythonhosted.org/packages/10/e1/542a474affab20fd4a0f1836cb234e8493519da6b76899e30bcc5d990b8b/pillow-12.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:af73337013e0b3b46f175e79492d96845b16126ddf79c438d7ea7ff27783a414", size = 2463612, upload-time = "2026-04-01T14:43:39.421Z" }, + { url = "https://files.pythonhosted.org/packages/4a/01/53d10cf0dbad820a8db274d259a37ba50b88b24768ddccec07355382d5ad/pillow-12.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:8297651f5b5679c19968abefd6bb84d95fe30ef712eb1b2d9b2d31ca61267f4c", size = 4100837, upload-time = "2026-04-01T14:43:41.506Z" }, + { url = "https://files.pythonhosted.org/packages/0f/98/f3a6657ecb698c937f6c76ee564882945f29b79bad496abcba0e84659ec5/pillow-12.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:50d8520da2a6ce0af445fa6d648c4273c3eeefbc32d7ce049f22e8b5c3daecc2", size = 4176528, upload-time = "2026-04-01T14:43:43.773Z" }, + { url = "https://files.pythonhosted.org/packages/69/bc/8986948f05e3ea490b8442ea1c1d4d990b24a7e43d8a51b2c7d8b1dced36/pillow-12.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:766cef22385fa1091258ad7e6216792b156dc16d8d3fa607e7545b2b72061f1c", size = 3640401, upload-time = "2026-04-01T14:43:45.87Z" }, + { url = "https://files.pythonhosted.org/packages/34/46/6c717baadcd62bc8ed51d238d521ab651eaa74838291bda1f86fe1f864c9/pillow-12.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5d2fd0fa6b5d9d1de415060363433f28da8b1526c1c129020435e186794b3795", size = 5308094, upload-time = "2026-04-01T14:43:48.438Z" }, + { url = "https://files.pythonhosted.org/packages/71/43/905a14a8b17fdb1ccb58d282454490662d2cb89a6bfec26af6d3520da5ec/pillow-12.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56b25336f502b6ed02e889f4ece894a72612fe885889a6e8c4c80239ff6e5f5f", size = 4695402, upload-time = "2026-04-01T14:43:51.292Z" }, + { url = "https://files.pythonhosted.org/packages/73/dd/42107efcb777b16fa0393317eac58f5b5cf30e8392e266e76e51cff28c3d/pillow-12.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f1c943e96e85df3d3478f7b691f229887e143f81fedab9b20205349ab04d73ed", size = 6280005, upload-time = "2026-04-01T14:43:54.242Z" }, + { url = "https://files.pythonhosted.org/packages/a8/68/b93e09e5e8549019e61acf49f65b1a8530765a7f812c77a7461bca7e4494/pillow-12.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:03f6fab9219220f041c74aeaa2939ff0062bd5c364ba9ce037197f4c6d498cd9", size = 8090669, upload-time = "2026-04-01T14:43:57.335Z" }, + { url = "https://files.pythonhosted.org/packages/4b/6e/3ccb54ce8ec4ddd1accd2d89004308b7b0b21c4ac3d20fa70af4760a4330/pillow-12.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cdfebd752ec52bf5bb4e35d9c64b40826bc5b40a13df7c3cda20a2c03a0f5ed", size = 6395194, upload-time = "2026-04-01T14:43:59.864Z" }, + { url = "https://files.pythonhosted.org/packages/67/ee/21d4e8536afd1a328f01b359b4d3997b291ffd35a237c877b331c1c3b71c/pillow-12.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eedf4b74eda2b5a4b2b2fb4c006d6295df3bf29e459e198c90ea48e130dc75c3", size = 7082423, upload-time = "2026-04-01T14:44:02.74Z" }, + { url = "https://files.pythonhosted.org/packages/78/5f/e9f86ab0146464e8c133fe85df987ed9e77e08b29d8d35f9f9f4d6f917ba/pillow-12.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:00a2865911330191c0b818c59103b58a5e697cae67042366970a6b6f1b20b7f9", size = 6505667, upload-time = "2026-04-01T14:44:05.381Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1e/409007f56a2fdce61584fd3acbc2bbc259857d555196cedcadc68c015c82/pillow-12.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1e1757442ed87f4912397c6d35a0db6a7b52592156014706f17658ff58bbf795", size = 7208580, upload-time = "2026-04-01T14:44:08.39Z" }, + { url = "https://files.pythonhosted.org/packages/23/c4/7349421080b12fb35414607b8871e9534546c128a11965fd4a7002ccfbee/pillow-12.2.0-cp313-cp313-win32.whl", hash = "sha256:144748b3af2d1b358d41286056d0003f47cb339b8c43a9ea42f5fea4d8c66b6e", size = 6375896, upload-time = "2026-04-01T14:44:11.197Z" }, + { url = "https://files.pythonhosted.org/packages/3f/82/8a3739a5e470b3c6cbb1d21d315800d8e16bff503d1f16b03a4ec3212786/pillow-12.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:390ede346628ccc626e5730107cde16c42d3836b89662a115a921f28440e6a3b", size = 7081266, upload-time = "2026-04-01T14:44:13.947Z" }, + { url = "https://files.pythonhosted.org/packages/c3/25/f968f618a062574294592f668218f8af564830ccebdd1fa6200f598e65c5/pillow-12.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:8023abc91fba39036dbce14a7d6535632f99c0b857807cbbbf21ecc9f4717f06", size = 2463508, upload-time = "2026-04-01T14:44:16.312Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a4/b342930964e3cb4dce5038ae34b0eab4653334995336cd486c5a8c25a00c/pillow-12.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:042db20a421b9bafecc4b84a8b6e444686bd9d836c7fd24542db3e7df7baad9b", size = 5309927, upload-time = "2026-04-01T14:44:18.89Z" }, + { url = "https://files.pythonhosted.org/packages/9f/de/23198e0a65a9cf06123f5435a5d95cea62a635697f8f03d134d3f3a96151/pillow-12.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:dd025009355c926a84a612fecf58bb315a3f6814b17ead51a8e48d3823d9087f", size = 4698624, upload-time = "2026-04-01T14:44:21.115Z" }, + { url = "https://files.pythonhosted.org/packages/01/a6/1265e977f17d93ea37aa28aa81bad4fa597933879fac2520d24e021c8da3/pillow-12.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:88ddbc66737e277852913bd1e07c150cc7bb124539f94c4e2df5344494e0a612", size = 6321252, upload-time = "2026-04-01T14:44:23.663Z" }, + { url = "https://files.pythonhosted.org/packages/3c/83/5982eb4a285967baa70340320be9f88e57665a387e3a53a7f0db8231a0cd/pillow-12.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d362d1878f00c142b7e1a16e6e5e780f02be8195123f164edf7eddd911eefe7c", size = 8126550, upload-time = "2026-04-01T14:44:26.772Z" }, + { url = "https://files.pythonhosted.org/packages/4e/48/6ffc514adce69f6050d0753b1a18fd920fce8cac87620d5a31231b04bfc5/pillow-12.2.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2c727a6d53cb0018aadd8018c2b938376af27914a68a492f59dfcaca650d5eea", size = 6433114, upload-time = "2026-04-01T14:44:29.615Z" }, + { url = "https://files.pythonhosted.org/packages/36/a3/f9a77144231fb8d40ee27107b4463e205fa4677e2ca2548e14da5cf18dce/pillow-12.2.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:efd8c21c98c5cc60653bcb311bef2ce0401642b7ce9d09e03a7da87c878289d4", size = 7115667, upload-time = "2026-04-01T14:44:32.773Z" }, + { url = "https://files.pythonhosted.org/packages/c1/fc/ac4ee3041e7d5a565e1c4fd72a113f03b6394cc72ab7089d27608f8aaccb/pillow-12.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9f08483a632889536b8139663db60f6724bfcb443c96f1b18855860d7d5c0fd4", size = 6538966, upload-time = "2026-04-01T14:44:35.252Z" }, + { url = "https://files.pythonhosted.org/packages/c0/a8/27fb307055087f3668f6d0a8ccb636e7431d56ed0750e07a60547b1e083e/pillow-12.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dac8d77255a37e81a2efcbd1fc05f1c15ee82200e6c240d7e127e25e365c39ea", size = 7238241, upload-time = "2026-04-01T14:44:37.875Z" }, + { url = "https://files.pythonhosted.org/packages/ad/4b/926ab182c07fccae9fcb120043464e1ff1564775ec8864f21a0ebce6ac25/pillow-12.2.0-cp313-cp313t-win32.whl", hash = "sha256:ee3120ae9dff32f121610bb08e4313be87e03efeadfc6c0d18f89127e24d0c24", size = 6379592, upload-time = "2026-04-01T14:44:40.336Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c4/f9e476451a098181b30050cc4c9a3556b64c02cf6497ea421ac047e89e4b/pillow-12.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:325ca0528c6788d2a6c3d40e3568639398137346c3d6e66bb61db96b96511c98", size = 7085542, upload-time = "2026-04-01T14:44:43.251Z" }, + { url = "https://files.pythonhosted.org/packages/00/a4/285f12aeacbe2d6dc36c407dfbbe9e96d4a80b0fb710a337f6d2ad978c75/pillow-12.2.0-cp313-cp313t-win_arm64.whl", hash = "sha256:2e5a76d03a6c6dcef67edabda7a52494afa4035021a79c8558e14af25313d453", size = 2465765, upload-time = "2026-04-01T14:44:45.996Z" }, + { url = "https://files.pythonhosted.org/packages/bf/98/4595daa2365416a86cb0d495248a393dfc84e96d62ad080c8546256cb9c0/pillow-12.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:3adc9215e8be0448ed6e814966ecf3d9952f0ea40eb14e89a102b87f450660d8", size = 4100848, upload-time = "2026-04-01T14:44:48.48Z" }, + { url = "https://files.pythonhosted.org/packages/0b/79/40184d464cf89f6663e18dfcf7ca21aae2491fff1a16127681bf1fa9b8cf/pillow-12.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:6a9adfc6d24b10f89588096364cc726174118c62130c817c2837c60cf08a392b", size = 4176515, upload-time = "2026-04-01T14:44:51.353Z" }, + { url = "https://files.pythonhosted.org/packages/b0/63/703f86fd4c422a9cf722833670f4f71418fb116b2853ff7da722ea43f184/pillow-12.2.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:6a6e67ea2e6feda684ed370f9a1c52e7a243631c025ba42149a2cc5934dec295", size = 3640159, upload-time = "2026-04-01T14:44:53.588Z" }, + { url = "https://files.pythonhosted.org/packages/71/e0/fb22f797187d0be2270f83500aab851536101b254bfa1eae10795709d283/pillow-12.2.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2bb4a8d594eacdfc59d9e5ad972aa8afdd48d584ffd5f13a937a664c3e7db0ed", size = 5312185, upload-time = "2026-04-01T14:44:56.039Z" }, + { url = "https://files.pythonhosted.org/packages/ba/8c/1a9e46228571de18f8e28f16fabdfc20212a5d019f3e3303452b3f0a580d/pillow-12.2.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:80b2da48193b2f33ed0c32c38140f9d3186583ce7d516526d462645fd98660ae", size = 4695386, upload-time = "2026-04-01T14:44:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/70/62/98f6b7f0c88b9addd0e87c217ded307b36be024d4ff8869a812b241d1345/pillow-12.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22db17c68434de69d8ecfc2fe821569195c0c373b25cccb9cbdacf2c6e53c601", size = 6280384, upload-time = "2026-04-01T14:45:01.5Z" }, + { url = "https://files.pythonhosted.org/packages/5e/03/688747d2e91cfbe0e64f316cd2e8005698f76ada3130d0194664174fa5de/pillow-12.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7b14cc0106cd9aecda615dd6903840a058b4700fcb817687d0ee4fc8b6e389be", size = 8091599, upload-time = "2026-04-01T14:45:04.5Z" }, + { url = "https://files.pythonhosted.org/packages/f6/35/577e22b936fcdd66537329b33af0b4ccfefaeabd8aec04b266528cddb33c/pillow-12.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8cbeb542b2ebc6fcdacabf8aca8c1a97c9b3ad3927d46b8723f9d4f033288a0f", size = 6396021, upload-time = "2026-04-01T14:45:07.117Z" }, + { url = "https://files.pythonhosted.org/packages/11/8d/d2532ad2a603ca2b93ad9f5135732124e57811d0168155852f37fbce2458/pillow-12.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4bfd07bc812fbd20395212969e41931001fd59eb55a60658b0e5710872e95286", size = 7083360, upload-time = "2026-04-01T14:45:09.763Z" }, + { url = "https://files.pythonhosted.org/packages/5e/26/d325f9f56c7e039034897e7380e9cc202b1e368bfd04d4cbe6a441f02885/pillow-12.2.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:9aba9a17b623ef750a4d11b742cbafffeb48a869821252b30ee21b5e91392c50", size = 6507628, upload-time = "2026-04-01T14:45:12.378Z" }, + { url = "https://files.pythonhosted.org/packages/5f/f7/769d5632ffb0988f1c5e7660b3e731e30f7f8ec4318e94d0a5d674eb65a4/pillow-12.2.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:deede7c263feb25dba4e82ea23058a235dcc2fe1f6021025dc71f2b618e26104", size = 7209321, upload-time = "2026-04-01T14:45:15.122Z" }, + { url = "https://files.pythonhosted.org/packages/6a/7a/c253e3c645cd47f1aceea6a8bacdba9991bf45bb7dfe927f7c893e89c93c/pillow-12.2.0-cp314-cp314-win32.whl", hash = "sha256:632ff19b2778e43162304d50da0181ce24ac5bb8180122cbe1bf4673428328c7", size = 6479723, upload-time = "2026-04-01T14:45:17.797Z" }, + { url = "https://files.pythonhosted.org/packages/cd/8b/601e6566b957ca50e28725cb6c355c59c2c8609751efbecd980db44e0349/pillow-12.2.0-cp314-cp314-win_amd64.whl", hash = "sha256:4e6c62e9d237e9b65fac06857d511e90d8461a32adcc1b9065ea0c0fa3a28150", size = 7217400, upload-time = "2026-04-01T14:45:20.529Z" }, + { url = "https://files.pythonhosted.org/packages/d6/94/220e46c73065c3e2951bb91c11a1fb636c8c9ad427ac3ce7d7f3359b9b2f/pillow-12.2.0-cp314-cp314-win_arm64.whl", hash = "sha256:b1c1fbd8a5a1af3412a0810d060a78b5136ec0836c8a4ef9aa11807f2a22f4e1", size = 2554835, upload-time = "2026-04-01T14:45:23.162Z" }, + { url = "https://files.pythonhosted.org/packages/b6/ab/1b426a3974cb0e7da5c29ccff4807871d48110933a57207b5a676cccc155/pillow-12.2.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:57850958fe9c751670e49b2cecf6294acc99e562531f4bd317fa5ddee2068463", size = 5314225, upload-time = "2026-04-01T14:45:25.637Z" }, + { url = "https://files.pythonhosted.org/packages/19/1e/dce46f371be2438eecfee2a1960ee2a243bbe5e961890146d2dee1ff0f12/pillow-12.2.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d5d38f1411c0ed9f97bcb49b7bd59b6b7c314e0e27420e34d99d844b9ce3b6f3", size = 4698541, upload-time = "2026-04-01T14:45:28.355Z" }, + { url = "https://files.pythonhosted.org/packages/55/c3/7fbecf70adb3a0c33b77a300dc52e424dc22ad8cdc06557a2e49523b703d/pillow-12.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5c0a9f29ca8e79f09de89293f82fc9b0270bb4af1d58bc98f540cc4aedf03166", size = 6322251, upload-time = "2026-04-01T14:45:30.924Z" }, + { url = "https://files.pythonhosted.org/packages/1c/3c/7fbc17cfb7e4fe0ef1642e0abc17fc6c94c9f7a16be41498e12e2ba60408/pillow-12.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1610dd6c61621ae1cf811bef44d77e149ce3f7b95afe66a4512f8c59f25d9ebe", size = 8127807, upload-time = "2026-04-01T14:45:33.908Z" }, + { url = "https://files.pythonhosted.org/packages/ff/c3/a8ae14d6defd2e448493ff512fae903b1e9bd40b72efb6ec55ce0048c8ce/pillow-12.2.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0a34329707af4f73cf1782a36cd2289c0368880654a2c11f027bcee9052d35dd", size = 6433935, upload-time = "2026-04-01T14:45:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/6e/32/2880fb3a074847ac159d8f902cb43278a61e85f681661e7419e6596803ed/pillow-12.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e9c4f5b3c546fa3458a29ab22646c1c6c787ea8f5ef51300e5a60300736905e", size = 7116720, upload-time = "2026-04-01T14:45:39.258Z" }, + { url = "https://files.pythonhosted.org/packages/46/87/495cc9c30e0129501643f24d320076f4cc54f718341df18cc70ec94c44e1/pillow-12.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:fb043ee2f06b41473269765c2feae53fc2e2fbf96e5e22ca94fb5ad677856f06", size = 6540498, upload-time = "2026-04-01T14:45:41.879Z" }, + { url = "https://files.pythonhosted.org/packages/18/53/773f5edca692009d883a72211b60fdaf8871cbef075eaa9d577f0a2f989e/pillow-12.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f278f034eb75b4e8a13a54a876cc4a5ab39173d2cdd93a638e1b467fc545ac43", size = 7239413, upload-time = "2026-04-01T14:45:44.705Z" }, + { url = "https://files.pythonhosted.org/packages/c9/e4/4b64a97d71b2a83158134abbb2f5bd3f8a2ea691361282f010998f339ec7/pillow-12.2.0-cp314-cp314t-win32.whl", hash = "sha256:6bb77b2dcb06b20f9f4b4a8454caa581cd4dd0643a08bacf821216a16d9c8354", size = 6482084, upload-time = "2026-04-01T14:45:47.568Z" }, + { url = "https://files.pythonhosted.org/packages/ba/13/306d275efd3a3453f72114b7431c877d10b1154014c1ebbedd067770d629/pillow-12.2.0-cp314-cp314t-win_amd64.whl", hash = "sha256:6562ace0d3fb5f20ed7290f1f929cae41b25ae29528f2af1722966a0a02e2aa1", size = 7225152, upload-time = "2026-04-01T14:45:50.032Z" }, + { url = "https://files.pythonhosted.org/packages/ff/6e/cf826fae916b8658848d7b9f38d88da6396895c676e8086fc0988073aaf8/pillow-12.2.0-cp314-cp314t-win_arm64.whl", hash = "sha256:aa88ccfe4e32d362816319ed727a004423aab09c5cea43c01a4b435643fa34eb", size = 2556579, upload-time = "2026-04-01T14:45:52.529Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b7/2437044fb910f499610356d1352e3423753c98e34f915252aafecc64889f/pillow-12.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0538bd5e05efec03ae613fd89c4ce0368ecd2ba239cc25b9f9be7ed426b0af1f", size = 5273969, upload-time = "2026-04-01T14:45:55.538Z" }, + { url = "https://files.pythonhosted.org/packages/f6/f4/8316e31de11b780f4ac08ef3654a75555e624a98db1056ecb2122d008d5a/pillow-12.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:394167b21da716608eac917c60aa9b969421b5dcbbe02ae7f013e7b85811c69d", size = 4659674, upload-time = "2026-04-01T14:45:58.093Z" }, + { url = "https://files.pythonhosted.org/packages/d4/37/664fca7201f8bb2aa1d20e2c3d5564a62e6ae5111741966c8319ca802361/pillow-12.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5d04bfa02cc2d23b497d1e90a0f927070043f6cbf303e738300532379a4b4e0f", size = 5288479, upload-time = "2026-04-01T14:46:01.141Z" }, + { url = "https://files.pythonhosted.org/packages/49/62/5b0ed78fce87346be7a5cfcfaaad91f6a1f98c26f86bdbafa2066c647ef6/pillow-12.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0c838a5125cee37e68edec915651521191cef1e6aa336b855f495766e77a366e", size = 7032230, upload-time = "2026-04-01T14:46:03.874Z" }, + { url = "https://files.pythonhosted.org/packages/c3/28/ec0fc38107fc32536908034e990c47914c57cd7c5a3ece4d8d8f7ffd7e27/pillow-12.2.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a6c9fa44005fa37a91ebfc95d081e8079757d2e904b27103f4f5fa6f0bf78c0", size = 5355404, upload-time = "2026-04-01T14:46:06.33Z" }, + { url = "https://files.pythonhosted.org/packages/5e/8b/51b0eddcfa2180d60e41f06bd6d0a62202b20b59c68f5a132e615b75aecf/pillow-12.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:25373b66e0dd5905ed63fa3cae13c82fbddf3079f2c8bf15c6fb6a35586324c1", size = 6002215, upload-time = "2026-04-01T14:46:08.83Z" }, + { url = "https://files.pythonhosted.org/packages/bc/60/5382c03e1970de634027cee8e1b7d39776b778b81812aaf45b694dfe9e28/pillow-12.2.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:bfa9c230d2fe991bed5318a5f119bd6780cda2915cca595393649fc118ab895e", size = 7080946, upload-time = "2026-04-01T14:46:11.734Z" }, +] + +[[package]] +name = "pygments" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905, upload-time = "2024-05-04T13:42:02.013Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513, upload-time = "2024-05-04T13:41:57.345Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/f5/cd531b2d15a671a40c0f66cf06bc3570a12cd56eef98960068ebbad1bf5a/tzdata-2026.1.tar.gz", hash = "sha256:67658a1903c75917309e753fdc349ac0efd8c27db7a0cb406a25be4840f87f98", size = 197639, upload-time = "2026-04-03T11:25:22.002Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/70/d460bd685a170790ec89317e9bd33047988e4bce507b831f5db771e142de/tzdata-2026.1-py2.py3-none-any.whl", hash = "sha256:4b1d2be7ac37ceafd7327b961aa3a54e467efbdb563a23655fbfe0d39cfc42a9", size = 348952, upload-time = "2026-04-03T11:25:20.313Z" }, +] + +[[package]] +name = "unidecode" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/7d/a8a765761bbc0c836e397a2e48d498305a865b70a8600fd7a942e85dcf63/Unidecode-1.4.0.tar.gz", hash = "sha256:ce35985008338b676573023acc382d62c264f307c8f7963733405add37ea2b23", size = 200149, upload-time = "2025-04-24T08:45:03.798Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/b7/559f59d57d18b44c6d1250d2eeaa676e028b9c527431f5d0736478a73ba1/Unidecode-1.4.0-py3-none-any.whl", hash = "sha256:c3c7606c27503ad8d501270406e345ddb480a7b5f38827eafe4fa82a137f0021", size = 235837, upload-time = "2025-04-24T08:45:01.609Z" }, +] + +[[package]] +name = "watchfiles" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c2/c9/8869df9b2a2d6c59d79220a4db37679e74f807c559ffe5265e08b227a210/watchfiles-1.1.1.tar.gz", hash = "sha256:a173cb5c16c4f40ab19cecf48a534c409f7ea983ab8fed0741304a1c0a31b3f2", size = 94440, upload-time = "2025-10-14T15:06:21.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/1a/206e8cf2dd86fddf939165a57b4df61607a1e0add2785f170a3f616b7d9f/watchfiles-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eef58232d32daf2ac67f42dea51a2c80f0d03379075d44a587051e63cc2e368c", size = 407318, upload-time = "2025-10-14T15:04:18.753Z" }, + { url = "https://files.pythonhosted.org/packages/b3/0f/abaf5262b9c496b5dad4ed3c0e799cbecb1f8ea512ecb6ddd46646a9fca3/watchfiles-1.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03fa0f5237118a0c5e496185cafa92878568b652a2e9a9382a5151b1a0380a43", size = 394478, upload-time = "2025-10-14T15:04:20.297Z" }, + { url = "https://files.pythonhosted.org/packages/b1/04/9cc0ba88697b34b755371f5ace8d3a4d9a15719c07bdc7bd13d7d8c6a341/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca65483439f9c791897f7db49202301deb6e15fe9f8fe2fed555bf986d10c31", size = 449894, upload-time = "2025-10-14T15:04:21.527Z" }, + { url = "https://files.pythonhosted.org/packages/d2/9c/eda4615863cd8621e89aed4df680d8c3ec3da6a4cf1da113c17decd87c7f/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f0ab1c1af0cb38e3f598244c17919fb1a84d1629cc08355b0074b6d7f53138ac", size = 459065, upload-time = "2025-10-14T15:04:22.795Z" }, + { url = "https://files.pythonhosted.org/packages/84/13/f28b3f340157d03cbc8197629bc109d1098764abe1e60874622a0be5c112/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bc570d6c01c206c46deb6e935a260be44f186a2f05179f52f7fcd2be086a94d", size = 488377, upload-time = "2025-10-14T15:04:24.138Z" }, + { url = "https://files.pythonhosted.org/packages/86/93/cfa597fa9389e122488f7ffdbd6db505b3b915ca7435ecd7542e855898c2/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e84087b432b6ac94778de547e08611266f1f8ffad28c0ee4c82e028b0fc5966d", size = 595837, upload-time = "2025-10-14T15:04:25.057Z" }, + { url = "https://files.pythonhosted.org/packages/57/1e/68c1ed5652b48d89fc24d6af905d88ee4f82fa8bc491e2666004e307ded1/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:620bae625f4cb18427b1bb1a2d9426dc0dd5a5ba74c7c2cdb9de405f7b129863", size = 473456, upload-time = "2025-10-14T15:04:26.497Z" }, + { url = "https://files.pythonhosted.org/packages/d5/dc/1a680b7458ffa3b14bb64878112aefc8f2e4f73c5af763cbf0bd43100658/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:544364b2b51a9b0c7000a4b4b02f90e9423d97fbbf7e06689236443ebcad81ab", size = 455614, upload-time = "2025-10-14T15:04:27.539Z" }, + { url = "https://files.pythonhosted.org/packages/61/a5/3d782a666512e01eaa6541a72ebac1d3aae191ff4a31274a66b8dd85760c/watchfiles-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bbe1ef33d45bc71cf21364df962af171f96ecaeca06bd9e3d0b583efb12aec82", size = 630690, upload-time = "2025-10-14T15:04:28.495Z" }, + { url = "https://files.pythonhosted.org/packages/9b/73/bb5f38590e34687b2a9c47a244aa4dd50c56a825969c92c9c5fc7387cea1/watchfiles-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a0bb430adb19ef49389e1ad368450193a90038b5b752f4ac089ec6942c4dff4", size = 622459, upload-time = "2025-10-14T15:04:29.491Z" }, + { url = "https://files.pythonhosted.org/packages/f1/ac/c9bb0ec696e07a20bd58af5399aeadaef195fb2c73d26baf55180fe4a942/watchfiles-1.1.1-cp310-cp310-win32.whl", hash = "sha256:3f6d37644155fb5beca5378feb8c1708d5783145f2a0f1c4d5a061a210254844", size = 272663, upload-time = "2025-10-14T15:04:30.435Z" }, + { url = "https://files.pythonhosted.org/packages/11/a0/a60c5a7c2ec59fa062d9a9c61d02e3b6abd94d32aac2d8344c4bdd033326/watchfiles-1.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:a36d8efe0f290835fd0f33da35042a1bb5dc0e83cbc092dcf69bce442579e88e", size = 287453, upload-time = "2025-10-14T15:04:31.53Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f8/2c5f479fb531ce2f0564eda479faecf253d886b1ab3630a39b7bf7362d46/watchfiles-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f57b396167a2565a4e8b5e56a5a1c537571733992b226f4f1197d79e94cf0ae5", size = 406529, upload-time = "2025-10-14T15:04:32.899Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cd/f515660b1f32f65df671ddf6f85bfaca621aee177712874dc30a97397977/watchfiles-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:421e29339983e1bebc281fab40d812742268ad057db4aee8c4d2bce0af43b741", size = 394384, upload-time = "2025-10-14T15:04:33.761Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c3/28b7dc99733eab43fca2d10f55c86e03bd6ab11ca31b802abac26b23d161/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e43d39a741e972bab5d8100b5cdacf69db64e34eb19b6e9af162bccf63c5cc6", size = 448789, upload-time = "2025-10-14T15:04:34.679Z" }, + { url = "https://files.pythonhosted.org/packages/4a/24/33e71113b320030011c8e4316ccca04194bf0cbbaeee207f00cbc7d6b9f5/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f537afb3276d12814082a2e9b242bdcf416c2e8fd9f799a737990a1dbe906e5b", size = 460521, upload-time = "2025-10-14T15:04:35.963Z" }, + { url = "https://files.pythonhosted.org/packages/f4/c3/3c9a55f255aa57b91579ae9e98c88704955fa9dac3e5614fb378291155df/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2cd9e04277e756a2e2d2543d65d1e2166d6fd4c9b183f8808634fda23f17b14", size = 488722, upload-time = "2025-10-14T15:04:37.091Z" }, + { url = "https://files.pythonhosted.org/packages/49/36/506447b73eb46c120169dc1717fe2eff07c234bb3232a7200b5f5bd816e9/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f3f58818dc0b07f7d9aa7fe9eb1037aecb9700e63e1f6acfed13e9fef648f5d", size = 596088, upload-time = "2025-10-14T15:04:38.39Z" }, + { url = "https://files.pythonhosted.org/packages/82/ab/5f39e752a9838ec4d52e9b87c1e80f1ee3ccdbe92e183c15b6577ab9de16/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bb9f66367023ae783551042d31b1d7fd422e8289eedd91f26754a66f44d5cff", size = 472923, upload-time = "2025-10-14T15:04:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/af/b9/a419292f05e302dea372fa7e6fda5178a92998411f8581b9830d28fb9edb/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aebfd0861a83e6c3d1110b78ad54704486555246e542be3e2bb94195eabb2606", size = 456080, upload-time = "2025-10-14T15:04:40.643Z" }, + { url = "https://files.pythonhosted.org/packages/b0/c3/d5932fd62bde1a30c36e10c409dc5d54506726f08cb3e1d8d0ba5e2bc8db/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5fac835b4ab3c6487b5dbad78c4b3724e26bcc468e886f8ba8cc4306f68f6701", size = 629432, upload-time = "2025-10-14T15:04:41.789Z" }, + { url = "https://files.pythonhosted.org/packages/f7/77/16bddd9779fafb795f1a94319dc965209c5641db5bf1edbbccace6d1b3c0/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:399600947b170270e80134ac854e21b3ccdefa11a9529a3decc1327088180f10", size = 623046, upload-time = "2025-10-14T15:04:42.718Z" }, + { url = "https://files.pythonhosted.org/packages/46/ef/f2ecb9a0f342b4bfad13a2787155c6ee7ce792140eac63a34676a2feeef2/watchfiles-1.1.1-cp311-cp311-win32.whl", hash = "sha256:de6da501c883f58ad50db3a32ad397b09ad29865b5f26f64c24d3e3281685849", size = 271473, upload-time = "2025-10-14T15:04:43.624Z" }, + { url = "https://files.pythonhosted.org/packages/94/bc/f42d71125f19731ea435c3948cad148d31a64fccde3867e5ba4edee901f9/watchfiles-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:35c53bd62a0b885bf653ebf6b700d1bf05debb78ad9292cf2a942b23513dc4c4", size = 287598, upload-time = "2025-10-14T15:04:44.516Z" }, + { url = "https://files.pythonhosted.org/packages/57/c9/a30f897351f95bbbfb6abcadafbaca711ce1162f4db95fc908c98a9165f3/watchfiles-1.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:57ca5281a8b5e27593cb7d82c2ac927ad88a96ed406aa446f6344e4328208e9e", size = 277210, upload-time = "2025-10-14T15:04:45.883Z" }, + { url = "https://files.pythonhosted.org/packages/74/d5/f039e7e3c639d9b1d09b07ea412a6806d38123f0508e5f9b48a87b0a76cc/watchfiles-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:8c89f9f2f740a6b7dcc753140dd5e1ab9215966f7a3530d0c0705c83b401bd7d", size = 404745, upload-time = "2025-10-14T15:04:46.731Z" }, + { url = "https://files.pythonhosted.org/packages/a5/96/a881a13aa1349827490dab2d363c8039527060cfcc2c92cc6d13d1b1049e/watchfiles-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd404be08018c37350f0d6e34676bd1e2889990117a2b90070b3007f172d0610", size = 391769, upload-time = "2025-10-14T15:04:48.003Z" }, + { url = "https://files.pythonhosted.org/packages/4b/5b/d3b460364aeb8da471c1989238ea0e56bec24b6042a68046adf3d9ddb01c/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8526e8f916bb5b9a0a777c8317c23ce65de259422bba5b31325a6fa6029d33af", size = 449374, upload-time = "2025-10-14T15:04:49.179Z" }, + { url = "https://files.pythonhosted.org/packages/b9/44/5769cb62d4ed055cb17417c0a109a92f007114a4e07f30812a73a4efdb11/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2edc3553362b1c38d9f06242416a5d8e9fe235c204a4072e988ce2e5bb1f69f6", size = 459485, upload-time = "2025-10-14T15:04:50.155Z" }, + { url = "https://files.pythonhosted.org/packages/19/0c/286b6301ded2eccd4ffd0041a1b726afda999926cf720aab63adb68a1e36/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30f7da3fb3f2844259cba4720c3fc7138eb0f7b659c38f3bfa65084c7fc7abce", size = 488813, upload-time = "2025-10-14T15:04:51.059Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2b/8530ed41112dd4a22f4dcfdb5ccf6a1baad1ff6eed8dc5a5f09e7e8c41c7/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8979280bdafff686ba5e4d8f97840f929a87ed9cdf133cbbd42f7766774d2aa", size = 594816, upload-time = "2025-10-14T15:04:52.031Z" }, + { url = "https://files.pythonhosted.org/packages/ce/d2/f5f9fb49489f184f18470d4f99f4e862a4b3e9ac2865688eb2099e3d837a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dcc5c24523771db3a294c77d94771abcfcb82a0e0ee8efd910c37c59ec1b31bb", size = 475186, upload-time = "2025-10-14T15:04:53.064Z" }, + { url = "https://files.pythonhosted.org/packages/cf/68/5707da262a119fb06fbe214d82dd1fe4a6f4af32d2d14de368d0349eb52a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db5d7ae38ff20153d542460752ff397fcf5c96090c1230803713cf3147a6803", size = 456812, upload-time = "2025-10-14T15:04:55.174Z" }, + { url = "https://files.pythonhosted.org/packages/66/ab/3cbb8756323e8f9b6f9acb9ef4ec26d42b2109bce830cc1f3468df20511d/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:28475ddbde92df1874b6c5c8aaeb24ad5be47a11f87cde5a28ef3835932e3e94", size = 630196, upload-time = "2025-10-14T15:04:56.22Z" }, + { url = "https://files.pythonhosted.org/packages/78/46/7152ec29b8335f80167928944a94955015a345440f524d2dfe63fc2f437b/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:36193ed342f5b9842edd3532729a2ad55c4160ffcfa3700e0d54be496b70dd43", size = 622657, upload-time = "2025-10-14T15:04:57.521Z" }, + { url = "https://files.pythonhosted.org/packages/0a/bf/95895e78dd75efe9a7f31733607f384b42eb5feb54bd2eb6ed57cc2e94f4/watchfiles-1.1.1-cp312-cp312-win32.whl", hash = "sha256:859e43a1951717cc8de7f4c77674a6d389b106361585951d9e69572823f311d9", size = 272042, upload-time = "2025-10-14T15:04:59.046Z" }, + { url = "https://files.pythonhosted.org/packages/87/0a/90eb755f568de2688cb220171c4191df932232c20946966c27a59c400850/watchfiles-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:91d4c9a823a8c987cce8fa2690923b069966dabb196dd8d137ea2cede885fde9", size = 288410, upload-time = "2025-10-14T15:05:00.081Z" }, + { url = "https://files.pythonhosted.org/packages/36/76/f322701530586922fbd6723c4f91ace21364924822a8772c549483abed13/watchfiles-1.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:a625815d4a2bdca61953dbba5a39d60164451ef34c88d751f6c368c3ea73d404", size = 278209, upload-time = "2025-10-14T15:05:01.168Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/f750b29225fe77139f7ae5de89d4949f5a99f934c65a1f1c0b248f26f747/watchfiles-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:130e4876309e8686a5e37dba7d5e9bc77e6ed908266996ca26572437a5271e18", size = 404321, upload-time = "2025-10-14T15:05:02.063Z" }, + { url = "https://files.pythonhosted.org/packages/2b/f9/f07a295cde762644aa4c4bb0f88921d2d141af45e735b965fb2e87858328/watchfiles-1.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5f3bde70f157f84ece3765b42b4a52c6ac1a50334903c6eaf765362f6ccca88a", size = 391783, upload-time = "2025-10-14T15:05:03.052Z" }, + { url = "https://files.pythonhosted.org/packages/bc/11/fc2502457e0bea39a5c958d86d2cb69e407a4d00b85735ca724bfa6e0d1a/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14e0b1fe858430fc0251737ef3824c54027bedb8c37c38114488b8e131cf8219", size = 449279, upload-time = "2025-10-14T15:05:04.004Z" }, + { url = "https://files.pythonhosted.org/packages/e3/1f/d66bc15ea0b728df3ed96a539c777acfcad0eb78555ad9efcaa1274688f0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f27db948078f3823a6bb3b465180db8ebecf26dd5dae6f6180bd87383b6b4428", size = 459405, upload-time = "2025-10-14T15:05:04.942Z" }, + { url = "https://files.pythonhosted.org/packages/be/90/9f4a65c0aec3ccf032703e6db02d89a157462fbb2cf20dd415128251cac0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:059098c3a429f62fc98e8ec62b982230ef2c8df68c79e826e37b895bc359a9c0", size = 488976, upload-time = "2025-10-14T15:05:05.905Z" }, + { url = "https://files.pythonhosted.org/packages/37/57/ee347af605d867f712be7029bb94c8c071732a4b44792e3176fa3c612d39/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfb5862016acc9b869bb57284e6cb35fdf8e22fe59f7548858e2f971d045f150", size = 595506, upload-time = "2025-10-14T15:05:06.906Z" }, + { url = "https://files.pythonhosted.org/packages/a8/78/cc5ab0b86c122047f75e8fc471c67a04dee395daf847d3e59381996c8707/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:319b27255aacd9923b8a276bb14d21a5f7ff82564c744235fc5eae58d95422ae", size = 474936, upload-time = "2025-10-14T15:05:07.906Z" }, + { url = "https://files.pythonhosted.org/packages/62/da/def65b170a3815af7bd40a3e7010bf6ab53089ef1b75d05dd5385b87cf08/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c755367e51db90e75b19454b680903631d41f9e3607fbd941d296a020c2d752d", size = 456147, upload-time = "2025-10-14T15:05:09.138Z" }, + { url = "https://files.pythonhosted.org/packages/57/99/da6573ba71166e82d288d4df0839128004c67d2778d3b566c138695f5c0b/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c22c776292a23bfc7237a98f791b9ad3144b02116ff10d820829ce62dff46d0b", size = 630007, upload-time = "2025-10-14T15:05:10.117Z" }, + { url = "https://files.pythonhosted.org/packages/a8/51/7439c4dd39511368849eb1e53279cd3454b4a4dbace80bab88feeb83c6b5/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:3a476189be23c3686bc2f4321dd501cb329c0a0469e77b7b534ee10129ae6374", size = 622280, upload-time = "2025-10-14T15:05:11.146Z" }, + { url = "https://files.pythonhosted.org/packages/95/9c/8ed97d4bba5db6fdcdb2b298d3898f2dd5c20f6b73aee04eabe56c59677e/watchfiles-1.1.1-cp313-cp313-win32.whl", hash = "sha256:bf0a91bfb5574a2f7fc223cf95eeea79abfefa404bf1ea5e339c0c1560ae99a0", size = 272056, upload-time = "2025-10-14T15:05:12.156Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/c14e28429f744a260d8ceae18bf58c1d5fa56b50d006a7a9f80e1882cb0d/watchfiles-1.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:52e06553899e11e8074503c8e716d574adeeb7e68913115c4b3653c53f9bae42", size = 288162, upload-time = "2025-10-14T15:05:13.208Z" }, + { url = "https://files.pythonhosted.org/packages/dc/61/fe0e56c40d5cd29523e398d31153218718c5786b5e636d9ae8ae79453d27/watchfiles-1.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:ac3cc5759570cd02662b15fbcd9d917f7ecd47efe0d6b40474eafd246f91ea18", size = 277909, upload-time = "2025-10-14T15:05:14.49Z" }, + { url = "https://files.pythonhosted.org/packages/79/42/e0a7d749626f1e28c7108a99fb9bf524b501bbbeb9b261ceecde644d5a07/watchfiles-1.1.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:563b116874a9a7ce6f96f87cd0b94f7faf92d08d0021e837796f0a14318ef8da", size = 403389, upload-time = "2025-10-14T15:05:15.777Z" }, + { url = "https://files.pythonhosted.org/packages/15/49/08732f90ce0fbbc13913f9f215c689cfc9ced345fb1bcd8829a50007cc8d/watchfiles-1.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ad9fe1dae4ab4212d8c91e80b832425e24f421703b5a42ef2e4a1e215aff051", size = 389964, upload-time = "2025-10-14T15:05:16.85Z" }, + { url = "https://files.pythonhosted.org/packages/27/0d/7c315d4bd5f2538910491a0393c56bf70d333d51bc5b34bee8e68e8cea19/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce70f96a46b894b36eba678f153f052967a0d06d5b5a19b336ab0dbbd029f73e", size = 448114, upload-time = "2025-10-14T15:05:17.876Z" }, + { url = "https://files.pythonhosted.org/packages/c3/24/9e096de47a4d11bc4df41e9d1e61776393eac4cb6eb11b3e23315b78b2cc/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cb467c999c2eff23a6417e58d75e5828716f42ed8289fe6b77a7e5a91036ca70", size = 460264, upload-time = "2025-10-14T15:05:18.962Z" }, + { url = "https://files.pythonhosted.org/packages/cc/0f/e8dea6375f1d3ba5fcb0b3583e2b493e77379834c74fd5a22d66d85d6540/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:836398932192dae4146c8f6f737d74baeac8b70ce14831a239bdb1ca882fc261", size = 487877, upload-time = "2025-10-14T15:05:20.094Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/df24cfc6424a12deb41503b64d42fbea6b8cb357ec62ca84a5a3476f654a/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:743185e7372b7bc7c389e1badcc606931a827112fbbd37f14c537320fca08620", size = 595176, upload-time = "2025-10-14T15:05:21.134Z" }, + { url = "https://files.pythonhosted.org/packages/8f/b5/853b6757f7347de4e9b37e8cc3289283fb983cba1ab4d2d7144694871d9c/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:afaeff7696e0ad9f02cbb8f56365ff4686ab205fcf9c4c5b6fdfaaa16549dd04", size = 473577, upload-time = "2025-10-14T15:05:22.306Z" }, + { url = "https://files.pythonhosted.org/packages/e1/f7/0a4467be0a56e80447c8529c9fce5b38eab4f513cb3d9bf82e7392a5696b/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f7eb7da0eb23aa2ba036d4f616d46906013a68caf61b7fdbe42fc8b25132e77", size = 455425, upload-time = "2025-10-14T15:05:23.348Z" }, + { url = "https://files.pythonhosted.org/packages/8e/e0/82583485ea00137ddf69bc84a2db88bd92ab4a6e3c405e5fb878ead8d0e7/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:831a62658609f0e5c64178211c942ace999517f5770fe9436be4c2faeba0c0ef", size = 628826, upload-time = "2025-10-14T15:05:24.398Z" }, + { url = "https://files.pythonhosted.org/packages/28/9a/a785356fccf9fae84c0cc90570f11702ae9571036fb25932f1242c82191c/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:f9a2ae5c91cecc9edd47e041a930490c31c3afb1f5e6d71de3dc671bfaca02bf", size = 622208, upload-time = "2025-10-14T15:05:25.45Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f4/0872229324ef69b2c3edec35e84bd57a1289e7d3fe74588048ed8947a323/watchfiles-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:d1715143123baeeaeadec0528bb7441103979a1d5f6fd0e1f915383fea7ea6d5", size = 404315, upload-time = "2025-10-14T15:05:26.501Z" }, + { url = "https://files.pythonhosted.org/packages/7b/22/16d5331eaed1cb107b873f6ae1b69e9ced582fcf0c59a50cd84f403b1c32/watchfiles-1.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:39574d6370c4579d7f5d0ad940ce5b20db0e4117444e39b6d8f99db5676c52fd", size = 390869, upload-time = "2025-10-14T15:05:27.649Z" }, + { url = "https://files.pythonhosted.org/packages/b2/7e/5643bfff5acb6539b18483128fdc0ef2cccc94a5b8fbda130c823e8ed636/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7365b92c2e69ee952902e8f70f3ba6360d0d596d9299d55d7d386df84b6941fb", size = 449919, upload-time = "2025-10-14T15:05:28.701Z" }, + { url = "https://files.pythonhosted.org/packages/51/2e/c410993ba5025a9f9357c376f48976ef0e1b1aefb73b97a5ae01a5972755/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfff9740c69c0e4ed32416f013f3c45e2ae42ccedd1167ef2d805c000b6c71a5", size = 460845, upload-time = "2025-10-14T15:05:30.064Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a4/2df3b404469122e8680f0fcd06079317e48db58a2da2950fb45020947734/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b27cf2eb1dda37b2089e3907d8ea92922b673c0c427886d4edc6b94d8dfe5db3", size = 489027, upload-time = "2025-10-14T15:05:31.064Z" }, + { url = "https://files.pythonhosted.org/packages/ea/84/4587ba5b1f267167ee715b7f66e6382cca6938e0a4b870adad93e44747e6/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:526e86aced14a65a5b0ec50827c745597c782ff46b571dbfe46192ab9e0b3c33", size = 595615, upload-time = "2025-10-14T15:05:32.074Z" }, + { url = "https://files.pythonhosted.org/packages/6a/0f/c6988c91d06e93cd0bb3d4a808bcf32375ca1904609835c3031799e3ecae/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04e78dd0b6352db95507fd8cb46f39d185cf8c74e4cf1e4fbad1d3df96faf510", size = 474836, upload-time = "2025-10-14T15:05:33.209Z" }, + { url = "https://files.pythonhosted.org/packages/b4/36/ded8aebea91919485b7bbabbd14f5f359326cb5ec218cd67074d1e426d74/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c85794a4cfa094714fb9c08d4a218375b2b95b8ed1666e8677c349906246c05", size = 455099, upload-time = "2025-10-14T15:05:34.189Z" }, + { url = "https://files.pythonhosted.org/packages/98/e0/8c9bdba88af756a2fce230dd365fab2baf927ba42cd47521ee7498fd5211/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:74d5012b7630714b66be7b7b7a78855ef7ad58e8650c73afc4c076a1f480a8d6", size = 630626, upload-time = "2025-10-14T15:05:35.216Z" }, + { url = "https://files.pythonhosted.org/packages/2a/84/a95db05354bf2d19e438520d92a8ca475e578c647f78f53197f5a2f17aaf/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:8fbe85cb3201c7d380d3d0b90e63d520f15d6afe217165d7f98c9c649654db81", size = 622519, upload-time = "2025-10-14T15:05:36.259Z" }, + { url = "https://files.pythonhosted.org/packages/1d/ce/d8acdc8de545de995c339be67711e474c77d643555a9bb74a9334252bd55/watchfiles-1.1.1-cp314-cp314-win32.whl", hash = "sha256:3fa0b59c92278b5a7800d3ee7733da9d096d4aabcfabb9a928918bd276ef9b9b", size = 272078, upload-time = "2025-10-14T15:05:37.63Z" }, + { url = "https://files.pythonhosted.org/packages/c4/c9/a74487f72d0451524be827e8edec251da0cc1fcf111646a511ae752e1a3d/watchfiles-1.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:c2047d0b6cea13b3316bdbafbfa0c4228ae593d995030fda39089d36e64fc03a", size = 287664, upload-time = "2025-10-14T15:05:38.95Z" }, + { url = "https://files.pythonhosted.org/packages/df/b8/8ac000702cdd496cdce998c6f4ee0ca1f15977bba51bdf07d872ebdfc34c/watchfiles-1.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:842178b126593addc05acf6fce960d28bc5fae7afbaa2c6c1b3a7b9460e5be02", size = 277154, upload-time = "2025-10-14T15:05:39.954Z" }, + { url = "https://files.pythonhosted.org/packages/47/a8/e3af2184707c29f0f14b1963c0aace6529f9d1b8582d5b99f31bbf42f59e/watchfiles-1.1.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:88863fbbc1a7312972f1c511f202eb30866370ebb8493aef2812b9ff28156a21", size = 403820, upload-time = "2025-10-14T15:05:40.932Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ec/e47e307c2f4bd75f9f9e8afbe3876679b18e1bcec449beca132a1c5ffb2d/watchfiles-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:55c7475190662e202c08c6c0f4d9e345a29367438cf8e8037f3155e10a88d5a5", size = 390510, upload-time = "2025-10-14T15:05:41.945Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a0/ad235642118090f66e7b2f18fd5c42082418404a79205cdfca50b6309c13/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f53fa183d53a1d7a8852277c92b967ae99c2d4dcee2bfacff8868e6e30b15f7", size = 448408, upload-time = "2025-10-14T15:05:43.385Z" }, + { url = "https://files.pythonhosted.org/packages/df/85/97fa10fd5ff3332ae17e7e40e20784e419e28521549780869f1413742e9d/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6aae418a8b323732fa89721d86f39ec8f092fc2af67f4217a2b07fd3e93c6101", size = 458968, upload-time = "2025-10-14T15:05:44.404Z" }, + { url = "https://files.pythonhosted.org/packages/47/c2/9059c2e8966ea5ce678166617a7f75ecba6164375f3b288e50a40dc6d489/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f096076119da54a6080e8920cbdaac3dbee667eb91dcc5e5b78840b87415bd44", size = 488096, upload-time = "2025-10-14T15:05:45.398Z" }, + { url = "https://files.pythonhosted.org/packages/94/44/d90a9ec8ac309bc26db808a13e7bfc0e4e78b6fc051078a554e132e80160/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00485f441d183717038ed2e887a7c868154f216877653121068107b227a2f64c", size = 596040, upload-time = "2025-10-14T15:05:46.502Z" }, + { url = "https://files.pythonhosted.org/packages/95/68/4e3479b20ca305cfc561db3ed207a8a1c745ee32bf24f2026a129d0ddb6e/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a55f3e9e493158d7bfdb60a1165035f1cf7d320914e7b7ea83fe22c6023b58fc", size = 473847, upload-time = "2025-10-14T15:05:47.484Z" }, + { url = "https://files.pythonhosted.org/packages/4f/55/2af26693fd15165c4ff7857e38330e1b61ab8c37d15dc79118cdba115b7a/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c91ed27800188c2ae96d16e3149f199d62f86c7af5f5f4d2c61a3ed8cd3666c", size = 455072, upload-time = "2025-10-14T15:05:48.928Z" }, + { url = "https://files.pythonhosted.org/packages/66/1d/d0d200b10c9311ec25d2273f8aad8c3ef7cc7ea11808022501811208a750/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:311ff15a0bae3714ffb603e6ba6dbfba4065ab60865d15a6ec544133bdb21099", size = 629104, upload-time = "2025-10-14T15:05:49.908Z" }, + { url = "https://files.pythonhosted.org/packages/e3/bd/fa9bb053192491b3867ba07d2343d9f2252e00811567d30ae8d0f78136fe/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:a916a2932da8f8ab582f242c065f5c81bed3462849ca79ee357dd9551b0e9b01", size = 622112, upload-time = "2025-10-14T15:05:50.941Z" }, + { url = "https://files.pythonhosted.org/packages/ba/4c/a888c91e2e326872fa4705095d64acd8aa2fb9c1f7b9bd0588f33850516c/watchfiles-1.1.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:17ef139237dfced9da49fb7f2232c86ca9421f666d78c264c7ffca6601d154c3", size = 409611, upload-time = "2025-10-14T15:06:05.809Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c7/5420d1943c8e3ce1a21c0a9330bcf7edafb6aa65d26b21dbb3267c9e8112/watchfiles-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:672b8adf25b1a0d35c96b5888b7b18699d27d4194bac8beeae75be4b7a3fc9b2", size = 396889, upload-time = "2025-10-14T15:06:07.035Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e5/0072cef3804ce8d3aaddbfe7788aadff6b3d3f98a286fdbee9fd74ca59a7/watchfiles-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77a13aea58bc2b90173bc69f2a90de8e282648939a00a602e1dc4ee23e26b66d", size = 451616, upload-time = "2025-10-14T15:06:08.072Z" }, + { url = "https://files.pythonhosted.org/packages/83/4e/b87b71cbdfad81ad7e83358b3e447fedd281b880a03d64a760fe0a11fc2e/watchfiles-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b495de0bb386df6a12b18335a0285dda90260f51bdb505503c02bcd1ce27a8b", size = 458413, upload-time = "2025-10-14T15:06:09.209Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8e/e500f8b0b77be4ff753ac94dc06b33d8f0d839377fee1b78e8c8d8f031bf/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:db476ab59b6765134de1d4fe96a1a9c96ddf091683599be0f26147ea1b2e4b88", size = 408250, upload-time = "2025-10-14T15:06:10.264Z" }, + { url = "https://files.pythonhosted.org/packages/bd/95/615e72cd27b85b61eec764a5ca51bd94d40b5adea5ff47567d9ebc4d275a/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:89eef07eee5e9d1fda06e38822ad167a044153457e6fd997f8a858ab7564a336", size = 396117, upload-time = "2025-10-14T15:06:11.28Z" }, + { url = "https://files.pythonhosted.org/packages/c9/81/e7fe958ce8a7fb5c73cc9fb07f5aeaf755e6aa72498c57d760af760c91f8/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce19e06cbda693e9e7686358af9cd6f5d61312ab8b00488bc36f5aabbaf77e24", size = 450493, upload-time = "2025-10-14T15:06:12.321Z" }, + { url = "https://files.pythonhosted.org/packages/6e/d4/ed38dd3b1767193de971e694aa544356e63353c33a85d948166b5ff58b9e/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e6f39af2eab0118338902798b5aa6664f46ff66bc0280de76fca67a7f262a49", size = 457546, upload-time = "2025-10-14T15:06:13.372Z" }, +]