Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • j1/intro-qc
  • ili16/intro-qc
  • unruh/script-intro-qc
3 results
Select Git revision
Loading items
Show changes
Commits on Source (14)
Showing
with 4097 additions and 4 deletions
# Directories for latex files and outputs
LATEX_DIR := content/latex
IMG_DIR := content/img
# Get all .tex files in the LaTeX source directory
TEX_FILES := $(wildcard $(LATEX_DIR)/*.tex)
# Define target PDF, DVI and SVG files in the image output directory
PDF_TARGETS := $(patsubst $(LATEX_DIR)/%.tex,$(IMG_DIR)/%.pdf,$(TEX_FILES))
DVI_TARGETS := $(patsubst $(LATEX_DIR)/%.tex,$(IMG_DIR)/%.dvi,$(TEX_FILES))
SVG_TARGETS := $(patsubst $(LATEX_DIR)/%.tex,$(IMG_DIR)/%.svg,$(TEX_FILES))
# Default removal command for Unix-like systems
RMDEL = rm -f
# Default command to create the output directory if it doesn't exist for Unix-like systems
MKDIR_IMG = mkdir -p $(IMG_DIR)
# Default command to delete all PDFs and SVGs to which a .tex file belongs
RM_CLEAN = \
@for texfile in $(TEX_FILES); do \
filename=$$(basename $$texfile .tex); \
pdf="$(IMG_DIR)/$$filename.pdf"; \
svg="$(IMG_DIR)/$$filename.svg"; \
[ -f "$$pdf" ] && $(RMDEL) "$$pdf"; \
[ -f "$$svg" ] && $(RMDEL) "$$svg"; \
done
# Generated files to clean up
AUX_FILES = $(IMG_DIR)/*.aux
LOG_FILES = $(IMG_DIR)/*.log
PDF_FILES = $(IMG_DIR)/*.pdf
DVI_FILES = $(IMG_DIR)/*.dvi
SVG_FILES = $(IMG_DIR)/*.svg
# Windows-specific settings: commands and backslash path separator
ifeq ($(OS),Windows_NT)
RMDEL = del /Q
MKDIR_IMG = if not exist $(subst /,\,$(IMG_DIR)) mkdir $(subst /,\,$(IMG_DIR))
RM_CLEAN = \
@for %%f in ($(TEX_FILES)) do ( \
if exist "$(IMG_DIR)\%%~nf.pdf" $(RMDEL) "$(IMG_DIR)\%%~nf.pdf" & \
if exist "$(IMG_DIR)\%%~nf.svg" $(RMDEL) "$(IMG_DIR)\%%~nf.svg" )
AUX_FILES = $(subst /,\\,$(IMG_DIR))\\*.aux
LOG_FILES = $(subst /,\\,$(IMG_DIR))\\*.log
DVI_FILES = $(subst /,\\,$(IMG_DIR))\\*.dvi
SVG_FILES = $(subst /,\\,$(IMG_DIR))\\*.svg
PDF_FILES = $(subst /,\\,$(IMG_DIR))\\*.pdf
endif
.PHONY: all preview clean clean-temp clean-dvi
# Default target: build all PDFs and SVGs, then clean .aux and .log files and run quarto render
all: $(PDF_TARGETS) $(SVG_TARGETS)
-@$(RMDEL) $(AUX_FILES)
-@$(RMDEL) $(LOG_FILES)
quarto render --to all
# Rule to live-preview the script in the browser
preview: $(PDF_TARGETS) $(SVG_TARGETS)
quarto preview index.qmd
# Rule to build PDFs: run pdflatex with output to IMG_DIR
$(IMG_DIR)/%.pdf: $(LATEX_DIR)/%.tex | $(IMG_DIR)
pdflatex -output-directory=$(IMG_DIR) $<
# Rule to build DVI files: run latex with output to IMG_DIR
$(IMG_DIR)/%.dvi: $(LATEX_DIR)/%.tex | $(IMG_DIR)
latex -output-directory=$(IMG_DIR) $<
# Rule to build SVG files from DVI files: run dvisvgm
$(IMG_DIR)/%.svg: $(IMG_DIR)/%.dvi
dvisvgm --no-fonts -o $@ $<
# Ensure output directory exists before building targets that depend on it
$(IMG_DIR):
$(MKDIR_IMG)
# Clean only final output files (SVGs and PDFs)
clean:
$(RM_CLEAN)
# Clean auxiliary files generated during LaTeX compilation
clean-temp:
-@$(RMDEL) $(AUX_FILES)
-@$(RMDEL) $(LOG_FILES)
# Clean intermediate DVI files
clean-dvi:
-@$(RMDEL) $(DVI_FILES)
# Introduction to Quantum Computing - Lecture notes # Introduction to Quantum Computing - Lecture notes
Lecture note for the lecture "Introduction to Quantum Computing" by Dominique Unruh at RWTH Aachen. Lecture note for the lecture "Introduction to Quantum Computing" by Dominique Unruh at RWTH Aachen.
## Installation guide
This guide is for VS Code. There may be other extensions for other development environments.
### 1. Install Quarto
Download and install Quarto from the official website:
<https://quarto.org/docs/get-started/>
### 2. Install the VS Code extension
Install the Quarto Extension for Visual Studio Code:
https://quarto.org/docs/get-started/
You can also find it in the Extensions tab by searching for `"Quarto"`.
### 3. Preview the script
To live-preview the project, use the following command in your terminal:
`"make preview"`
This will open your browser.
### 4. Render the script
To render the entire project to .pdf and .html use:
`"make"`
The output will be generated in the _book folder.
### 5. Add pictures to the lecture notes
Not all LaTeX packages are supported for output as HTML, so graphics and similar elements created with LaTeX must be included via external files. For HTML, the preferred format is **SVG** and for PDF documents, it is **PDF**.
The easiest way is to create LaTeX files in the `content/latex` folder. These are automatically converted to SVG and PDF by **make**.
The resulting files can then be integrated using:
`"![Figure description](img/filename){width=xxx%}"`
**Important:**
The SVGs and PDFs have the same name as the LaTeX files, and no file extension should be specified when including them.
## Project structure
The main components of the project are:
### `_quarto.yml`
This is the main configuration file for your project. It contains:
- **Title**, **authors**, **output formats** and other metadata
- The **structure** of the script is under the `chapters:` section
You can **toggle chapter visibility** by commenting/uncommenting lines using `#`. This is useful for revealing content gradually throughout the semester.
### `index.qmd`
This file contains the **introduction** of the script.
It must be located in the same directory as the `quarto.yml` file.
### `Makefile`
Generates all the required images and the lecture notes from them, regardless of the operating system.
The Makefile is explained with comments.
### `content/`
This folder contains all the **chapters** of the script, as individual `.qmd` files.
### `content/img/`
Subfolder that contains all **images** and **pdfs** used throughout the script.
### `content/latex/`
Subfolder that contains all **tex-files** for creating some PDFs and SVGs. Unfortunately, not all latex files are available anymore.
### `_extensions/`
This folder includes any **custom Quarto extensions** that add functionality or styling to your project.
### `_book/`
This is the **output folder** generated by Quarto after rendering.
It contains the final script in the formats **HTML** and **PDF**.
File deleted
No preview for this file type
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="196.551" height="72.605" viewBox="0 0 147.413 54.454"><path stroke-width=".797" stroke-linecap="round" stroke-miterlimit="10" fill="none" stroke="#000" d="M17.52 14.71H3.32M48.727 14.71h-14.2M87.29 14.71H64.586M109.994 14.71H87.29M17.493 43.745H3.319M48.727 43.745H34.554M78.76 43.745H64.585M119.957 43.745H95.82M144.093 43.745h-24.136"/><path d="M17.52 22.1h17.006V7.32H17.52z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M17.52 22.1h17.006V7.32H17.52z"/><symbol id="a"><path d="M.458.411.374.61.369.623c0 .006.017.025.059.029.01.001.02.002.02.019 0 .012-.012.012-.015.012L.307.68.195.683c-.006 0-.018 0-.018-.02C.177.652.187.652.2.652.26.652.266.642.275.62L.393.341.182.114.169.103A.202.202 0 0 0 .022.031C.009.03 0 .03 0 .011 0 .01 0 0 .013 0l.094.003L.219 0c.006 0 .018 0 .018.02 0 .01-.01.011-.012.011-.009.001-.04.003-.04.031 0 .016.015.032.027.045l.102.108.09.098.101-.239L.51.06C.51.052.491.035.452.031.441.03.432.029.432.012.432 0 .443 0 .447 0l.126.003L.684 0c.007 0 .019 0 .019.019 0 .012-.01.012-.018.012C.618.032.616.035.599.075.56.168.493.324.47.384c.068.07.173.189.205.217a.204.204 0 0 0 .127.051c.013.001.022.001.022.02 0 .001 0 .011-.013.011L.717.68.606.683C.6.683.587.683.587.663c0-.007.005-.01.012-.011.009-.001.04-.003.04-.031C.639.607.628.594.62.585L.458.411z"/></symbol><use xlink:href="#a" transform="matrix(9.9626 0 0 -9.9626 21.775 18.114)"/><path d="M48.727 51.134h15.859V7.32H48.727z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M48.727 51.134h15.859V7.32H48.727z"/><symbol id="b"><path d="M.568.6c.01.041.028.071.108.074.005 0 .017.001.017.02 0 .001 0 .011-.013.011L.578.702.474.705c-.006 0-.018 0-.018-.02 0-.011.01-.011.018-.011C.531.673.542.652.542.63A.152.152 0 0 0 .539.609L.449.252C.415.118.3.031.2.031c-.068 0-.122.044-.122.13 0 .002 0 .034.011.078l.097.389C.195.664.197.674.27.674c.026 0 .034 0 .034.02C.304.705.293.705.29.705L.162.702.033.705c-.008 0-.019 0-.019-.02 0-.011.009-.011.028-.011.002 0 .021 0 .038-.002C.098.67.107.669.107.656.107.65.096.608.09.585L.068.497.007.25C0 .222 0 .207 0 .192 0 .07.091 0 .196 0c.126 0 .25.113.283.245L.568.6z"/></symbol><use xlink:href="#b" transform="matrix(9.9626 0 0 -9.9626 53.38 32.85)"/><path d="M109.994 22.182h19.925V7.238h-19.925z" fill="#fff"/><clipPath id="c"><path transform="matrix(1 0 0 -1 73.706 29.186)" d="M36.288 7.004h19.925v14.944H36.288z"/></clipPath><g clip-path="url(#c)"><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M112.829 16.411c3.573-4.259 10.682-4.259 14.256 0M119.957 17.545l4.847-5.783"/><path d="M126.04 10.288c-.2.141-1.135.712-1.844.965l1.215 1.018c.125-.742.524-1.763.629-1.983z"/><path stroke-width=".78896844" stroke-miterlimit="10" fill="none" stroke="#000" d="M126.04 10.288c-.2.141-1.135.712-1.844.965l1.215 1.018c.125-.742.524-1.763.629-1.983z"/></g><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M109.994 22.182h19.925V7.238h-19.925z"/><path d="M17.493 51.134h17.06V36.356h-17.06z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M17.493 51.134h17.06V36.356h-17.06z"/><symbol id="d"><path d="M.724.606c.009.036.011.046.084.046.026 0 .034 0 .034.02 0 .011-.011.011-.014.011L.7.68.571.683c-.008 0-.019 0-.019-.02C.552.652.561.652.58.652c.002 0 .021 0 .038-.002C.636.648.645.647.645.634L.641.615.581.371H.276l.059.235c.009.036.012.046.084.046.026 0 .034 0 .034.02 0 .011-.011.011-.014.011L.311.68.182.683c-.008 0-.019 0-.019-.02 0-.011.009-.011.028-.011.002 0 .021 0 .038-.002C.247.648.256.647.256.634L.252.615.118.078C.108.039.106.031.027.031.009.031 0 .031 0 .011 0 0 .012 0 .014 0l.127.003.064-.001L.27 0c.008 0 .02 0 .02.02C.29.031.281.031.262.031c-.037 0-.065 0-.065.018C.197.055.199.06.2.066L.268.34h.305L.504.064C.494.032.475.031.413.031c-.015 0-.024 0-.024-.02C.389 0 .401 0 .403 0L.53.003.594.002.659 0c.008 0 .02 0 .02.02C.679.031.67.031.651.031c-.037 0-.065 0-.065.018 0 .006.002.011.003.017l.135.54z"/></symbol><use xlink:href="#d" transform="matrix(9.9626 0 0 -9.9626 21.868 47.148)"/><path d="M78.76 51.134h17.06V36.356H78.76z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M78.76 51.134h17.06V36.356H78.76z"/><use xlink:href="#d" transform="matrix(9.9626 0 0 -9.9626 83.134 47.148)"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="280.303" height="105.911" viewBox="0 0 210.227 79.433"><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="m29.401 32.918 4.536-6.803"/><symbol id="a"><path d="M.075.073a.378.378 0 0 1-.01-.041C.065.01.083 0 .099 0a.05.05 0 0 1 .039.022.408.408 0 0 1 .018.062l.022.09.017.067c.011.041.013.049.042.09.028.04.075.092.15.092.058 0 .059-.051.059-.07C.446.293.403.182.387.14.376.112.372.103.372.086.372.033.416 0 .467 0c.1 0 .144.138.144.153 0 .013-.013.013-.016.013C.581.166.58.16.576.149.553.069.51.028.47.028.449.028.445.042.445.063c0 .023.005.036.023.081a.733.733 0 0 1 .053.193c0 .097-.077.114-.13.114A.213.213 0 0 1 .222.36C.215.429.156.451.115.451.072.451.049.42.036.397A.355.355 0 0 1 0 .298C0 .285.014.285.017.285c.014 0 .015.003.022.03.015.059.034.108.073.108.026 0 .033-.022.033-.049A.442.442 0 0 0 .129.291a3.78 3.78 0 0 1-.022-.09L.075.073z"/></symbol><use xlink:href="#a" transform="matrix(6.9738 0 0 -6.9738 34.665 25.786)"/><path stroke-width=".797" stroke-linecap="round" stroke-miterlimit="10" fill="none" stroke="#000" d="M38.756 29.516H24.582M52.93 29.516H38.755M95.814 29.516H81.64M129.924 29.516h-14.173M172.809 29.516h-14.174M206.908 29.516h-14.174M38.756 63.712H24.582M58.754 63.712H38.756M95.814 63.712H75.815M144.28 63.712h-28.53M182.771 63.712H144.28M206.908 63.712H182.77"/><symbol id="b"><path d="M.04.964C.04.982.04 1 .02 1S0 .982 0 .964V.036C0 .018 0 0 .02 0s.02.018.02.036v.928z"/></symbol><use xlink:href="#b" transform="matrix(9.9626 0 0 -9.9626 4.507 34.768)"/><symbol id="c"><path d="M.421.342c0 .08-.005.16-.04.234A.185.185 0 0 1 .037.569.535.535 0 0 1 0 .342C0 .267.004.177.045.101A.183.183 0 0 1 .21 0c.054 0 .13.021.174.116a.533.533 0 0 1 .037.226M.21.022C.171.022.112.047.094.143.083.203.083.295.083.354c0 .064 0 .13.008.184C.11.657.185.666.21.666.243.666.309.648.328.549c.01-.056.01-.132.01-.195 0-.075 0-.143-.011-.207C.312.052.255.022.21.022z"/></symbol><use xlink:href="#c" transform="matrix(9.9626 0 0 -9.9626 6.477 32.496)"/><symbol id="d"><path d="M.218.483C.223.495.223.497.223.5c0 .003 0 .005-.005.017l-.175.46C.037.994.031 1 .02 1A.02.02 0 0 1 0 .98C0 .977 0 .975.005.964L.182.5.005.038C0 .027 0 .025 0 .02A.02.02 0 0 1 .02 0c.013 0 .017.01.021.02l.177.463z"/></symbol><use xlink:href="#d" transform="matrix(9.9626 0 0 -9.9626 11.617 34.768)"/><use xlink:href="#a" transform="matrix(6.9738 0 0 -6.9738 15.272 27.338)"/><path d="M52.93 37.467h28.71V21.565H52.93z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M52.93 37.467h28.71V21.565H52.93z"/><symbol id="e"><path d="M.724.606c.009.036.011.046.084.046.026 0 .034 0 .034.02 0 .011-.011.011-.014.011L.7.68.571.683c-.008 0-.019 0-.019-.02C.552.652.561.652.58.652c.002 0 .021 0 .038-.002C.636.648.645.647.645.634L.641.615.581.371H.276l.059.235c.009.036.012.046.084.046.026 0 .034 0 .034.02 0 .011-.011.011-.014.011L.311.68.182.683c-.008 0-.019 0-.019-.02 0-.011.009-.011.028-.011.002 0 .021 0 .038-.002C.247.648.256.647.256.634L.252.615.118.078C.108.039.106.031.027.031.009.031 0 .031 0 .011 0 0 .012 0 .014 0l.127.003.064-.001L.27 0c.008 0 .02 0 .02.02C.29.031.281.031.262.031c-.037 0-.065 0-.065.018C.197.055.199.06.2.066L.268.34h.305L.504.064C.494.032.475.031.413.031c-.015 0-.024 0-.024-.02C.389 0 .401 0 .403 0L.53.003.594.002.659 0c.008 0 .02 0 .02.02C.679.031.67.031.651.031c-.037 0-.065 0-.065.018 0 .006.002.011.003.017l.135.54z"/></symbol><use xlink:href="#e" transform="matrix(9.9626 0 0 -9.9626 57.304 33.483)"/><symbol id="f"><path d="M.738.368a.37.37 0 1 1-.739 0 .37.37 0 0 1 .739 0M.145.617a.336.336 0 0 0 .448 0L.369.393.145.617M.121.145a.328.328 0 0 0 0 .447L.345.369.121.145m.496.447a.328.328 0 0 0 0-.447L.393.368l.224.224M.593.12a.336.336 0 0 0-.448 0l.224.224L.593.12z"/></symbol><use xlink:href="#f" transform="matrix(6.9738 0 0 -6.9738 66.543 30.69)"/><use xlink:href="#a" transform="matrix(6.9738 0 0 -6.9738 72.56 29.937)"/><path d="M95.814 72.526h19.937V20.702H95.814z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M95.814 72.526h19.937V20.702H95.814z"/><symbol id="g"><path d="M.568.6c.01.041.028.071.108.074.005 0 .017.001.017.02 0 .001 0 .011-.013.011L.578.702.474.705c-.006 0-.018 0-.018-.02 0-.011.01-.011.018-.011C.531.673.542.652.542.63A.152.152 0 0 0 .539.609L.449.252C.415.118.3.031.2.031c-.068 0-.122.044-.122.13 0 .002 0 .034.011.078l.097.389C.195.664.197.674.27.674c.026 0 .034 0 .034.02C.304.705.293.705.29.705L.162.702.033.705c-.008 0-.019 0-.019-.02 0-.011.009-.011.028-.011.002 0 .021 0 .038-.002C.098.67.107.669.107.656.107.65.096.608.09.585L.068.497.007.25C0 .222 0 .207 0 .192 0 .07.091 0 .196 0c.126 0 .25.113.283.245L.568.6z"/></symbol><use xlink:href="#g" transform="matrix(9.9626 0 0 -9.9626 100.466 48.812)"/><symbol id="h"><path d="M.334.599h.098c.02 0 .033 0 .033.022 0 .014-.013.014-.031.014H.341C.364.762.372.808.38.837.385.859.407.88.431.88.432.88.459.88.478.868A.06.06 0 0 1 .434.813c0-.022.017-.037.04-.037a.06.06 0 0 1 .057.061c0 .046-.049.071-.1.071a.139.139 0 0 1-.12-.075C.291.796.283.751.262.635H.183C.163.635.15.635.15.613.15.599.163.599.181.599h.074A18.16 18.16 0 0 0 .167.126C.162.104.145.028.097.028c-.001 0-.025 0-.044.012a.06.06 0 0 1 .044.055c0 .022-.017.037-.04.037A.06.06 0 0 1 0 .071C0 .026.047 0 .097 0c.064 0 .108.066.12.088A.85.85 0 0 1 .278.29l.056.309z"/></symbol><use xlink:href="#h" transform="matrix(6.9738 0 0 -6.9738 107.11 51.51)"/><path d="M129.924 37.467h28.711V21.565h-28.71z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M129.924 37.467h28.711V21.565h-28.71z"/><use xlink:href="#e" transform="matrix(9.9626 0 0 -9.9626 134.298 33.483)"/><use xlink:href="#f" transform="matrix(6.9738 0 0 -6.9738 143.537 30.69)"/><use xlink:href="#a" transform="matrix(6.9738 0 0 -6.9738 149.555 29.937)"/><clipPath id="i"><path transform="matrix(1 0 0 -1 115.745 45.417)" d="M57.064 8.429h19.925v22.416H57.064z"/></clipPath><g clip-path="url(#i)"><path d="M173.207 36.59h19.129V22.044h-19.129z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M173.207 36.59h19.129V22.044h-19.129zM183.622 22.044v-7.472M181.921 22.044v-7.472"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M175.644 31.018c3.573-4.26 10.682-4.26 14.255 0M182.771 32.152l4.848-5.783"/><path d="M188.855 24.894c-.2.142-1.135.713-1.844.966l1.215 1.018c.125-.742.524-1.763.629-1.984z"/><path stroke-width=".78896844" stroke-miterlimit="10" fill="none" stroke="#000" d="M188.855 24.894c-.2.142-1.135.713-1.844.966l1.215 1.018c.125-.742.524-1.763.629-1.984z"/></g><symbol id="j"><path d="M.339.385C.311.384.291.362.291.34.291.326.3.311.322.311s.046.017.046.056c0 .045-.043.086-.119.086C.117.453.08.351.08.307.08.229.154.214.183.208.235.198.287.187.287.132c0-.026-.023-.11-.143-.11-.014 0-.091 0-.114.053a.055.055 0 0 1 .063.053c0 .023-.016.035-.037.035C.03.163 0 .142 0 .097 0 .04.057 0 .143 0c.162 0 .201.121.201.166a.104.104 0 0 1-.031.073C.286.267.257.272.213.281.177.289.137.296.137.341c0 .029.024.09.112.09.025 0 .075-.007.09-.046z"/></symbol><use xlink:href="#j" transform="matrix(9.9626 0 0 -9.9626 180.954 10.764)"/><use xlink:href="#b" transform="matrix(9.9626 0 0 -9.9626 9.929 68.693)"/><symbol id="k"><path d="M.205.64c0 .024 0 .026-.023.026C.12.602.032.602 0 .602V.571a.3.3 0 0 1 .131.026V.079C.131.043.128.031.038.031H.006V0c.035.003.122.003.162.003.04 0 .127 0 .162-.003v.031H.298c-.09 0-.093.011-.093.048V.64z"/></symbol><use xlink:href="#k" transform="matrix(9.9626 0 0 -9.9626 12.398 66.202)"/><use xlink:href="#d" transform="matrix(9.9626 0 0 -9.9626 17.04 68.693)"/><path d="M58.754 71.1h17.061V56.324h-17.06z" fill="#fff"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M58.754 71.1h17.061V56.324h-17.06z"/><use xlink:href="#e" transform="matrix(9.9626 0 0 -9.9626 63.129 67.115)"/><path stroke-width=".797" stroke-dasharray="4.98138,2.98883" stroke-miterlimit="10" fill="none" stroke="red" d="M45.842 14.788v64.247"/><use xlink:href="#k" transform="matrix(9.9626 0 0 -9.9626 44.24 10.405)"/><path stroke-width=".797" stroke-dasharray="4.98138,2.98883" stroke-miterlimit="10" fill="none" stroke="red" d="M88.727 14.788v64.247"/><symbol id="l"><path d="M.077.077.183.18c.156.138.216.192.216.292 0 .114-.09.194-.212.194A.185.185 0 0 1 0 .485C0 .429.05.429.053.429c.017 0 .052.012.052.053a.05.05 0 0 1-.053.052L.039.533a.144.144 0 0 0 .135.102C.265.635.308.554.308.472c0-.08-.05-.159-.105-.221L.011.037C0 .026 0 .024 0 0h.371l.028.174H.374C.369.144.362.1.352.085.345.077.279.077.257.077h-.18z"/></symbol><use xlink:href="#l" transform="matrix(9.9626 0 0 -9.9626 86.735 10.405)"/><path stroke-width=".797" stroke-dasharray="4.98138,2.98883" stroke-miterlimit="10" fill="none" stroke="red" d="M122.838 14.788v64.247"/><symbol id="m"><path d="M.248.374c.082.027.14.097.14.176C.388.632.3.688.204.688.103.688.027.628.027.552.027.519.049.5.078.5.109.5.129.522.129.551c0 .05-.047.05-.062.05C.098.65.164.663.2.663.241.663.296.641.296.551A.25.25 0 0 0 .268.437C.238.389.204.386.179.385A.554.554 0 0 0 .14.382C.132.381.125.38.125.37c0-.011.007-.011.024-.011h.044C.275.359.312.291.312.193.312.057.243.028.199.028.156.028.081.045.046.104.081.099.112.121.112.159a.054.054 0 0 1-.056.056C.032.215 0 .201 0 .157 0 .066.093 0 .202 0c.122 0 .213.091.213.193 0 .082-.063.16-.167.181z"/></symbol><use xlink:href="#m" transform="matrix(9.9626 0 0 -9.9626 120.765 10.624)"/><path stroke-width=".797" stroke-dasharray="4.98138,2.98883" stroke-miterlimit="10" fill="none" stroke="red" d="M165.722 14.788v64.247"/><symbol id="n"><path d="M.266.165V.078C.266.042.264.031.19.031H.169V0C.21.003.262.003.304.003.346.003.399.003.44 0v.031H.419C.345.031.343.042.343.078v.087h.1v.031h-.1v.455c0 .02 0 .026-.016.026-.009 0-.012 0-.02-.012L0 .196V.165h.266m.006.031H.028l.244.373V.196z"/></symbol><use xlink:href="#n" transform="matrix(9.9626 0 0 -9.9626 163.51 10.405)"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="58.985" height="44.623" viewBox="0 0 44.239 33.467"><path stroke-width=".797" stroke-linecap="round" stroke-miterlimit="10" fill="none" stroke="#000" d="M22.119 6.722v14.97M20.418 5.022H3.32M40.918 5.022H23.82M17.892 25.92H3.32M40.918 25.92H26.346"/><path d="M23.82 5.021a1.7 1.7 0 1 0-3.402 0 1.7 1.7 0 0 0 3.402 0zm-1.701 0"/><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M23.82 5.021a1.7 1.7 0 1 0-3.402 0 1.7 1.7 0 0 0 3.402 0zm-1.701 0"/><clipPath id="a"><path transform="matrix(1 0 0 -1 22.119 25.919)" d="M4.227 0a4.227 4.227 0 1 1-8.454 0 4.227 4.227 0 0 1 8.454 0zM0 0"/></clipPath><g clip-path="url(#a)"><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M22.119 21.692v8.454m-4.227-4.227h8.454"/></g><path stroke-width=".797" stroke-miterlimit="10" fill="none" stroke="#000" d="M26.346 25.919a4.227 4.227 0 1 0-8.454 0 4.227 4.227 0 0 0 8.454 0zm-4.227 0"/></svg>
\ No newline at end of file
This diff is collapsed.
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 3.4.3 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='159.778348pt' height='44.69151pt' viewBox='-68.680643 -65.160205 159.778348 44.69151'>
<defs>
<clipPath id='clip1'>
<path d='M56.6016-49.8164H76.5273V-64.7617H56.6016Z'/>
</clipPath>
<path id='g0-105' d='M2.719801-2.321295C2.769614-2.440847 2.769614-2.460772 2.769614-2.49066S2.769614-2.540473 2.719801-2.660025L.976339-7.242839C.916563-7.412204 .856787-7.47198 .747198-7.47198S.547945-7.382316 .547945-7.272727C.547945-7.242839 .547945-7.222914 .597758-7.113325L2.361146-2.49066L.597758 2.11208C.547945 2.221669 .547945 2.241594 .547945 2.291407C.547945 2.400996 .637609 2.49066 .747198 2.49066C.876712 2.49066 .916563 2.391034 .956413 2.291407L2.719801-2.321295Z'/>
<path id='g0-106' d='M1.58406-7.113325C1.58406-7.292653 1.58406-7.47198 1.384807-7.47198S1.185554-7.292653 1.185554-7.113325V2.132005C1.185554 2.311333 1.185554 2.49066 1.384807 2.49066S1.58406 2.311333 1.58406 2.132005V-7.113325Z'/>
<path id='g1-72' d='M7.601494-6.03736C7.691158-6.396015 7.711083-6.495641 8.438356-6.495641C8.697385-6.495641 8.777086-6.495641 8.777086-6.694894C8.777086-6.804483 8.667497-6.804483 8.637609-6.804483C8.358655-6.804483 7.641345-6.774595 7.362391-6.774595C7.073474-6.774595 6.366127-6.804483 6.07721-6.804483C5.997509-6.804483 5.88792-6.804483 5.88792-6.60523C5.88792-6.495641 5.977584-6.495641 6.166874-6.495641C6.1868-6.495641 6.37609-6.495641 6.545455-6.475716C6.724782-6.455791 6.814446-6.445828 6.814446-6.316314C6.814446-6.276463 6.804483-6.256538 6.774595-6.127024L6.176837-3.696139H3.138232L3.726027-6.03736C3.815691-6.396015 3.845579-6.495641 4.562889-6.495641C4.821918-6.495641 4.901619-6.495641 4.901619-6.694894C4.901619-6.804483 4.79203-6.804483 4.762142-6.804483C4.483188-6.804483 3.765878-6.774595 3.486924-6.774595C3.198007-6.774595 2.49066-6.804483 2.201743-6.804483C2.122042-6.804483 2.012453-6.804483 2.012453-6.60523C2.012453-6.495641 2.102117-6.495641 2.291407-6.495641C2.311333-6.495641 2.500623-6.495641 2.669988-6.475716C2.849315-6.455791 2.938979-6.445828 2.938979-6.316314C2.938979-6.276463 2.929016-6.246575 2.899128-6.127024L1.564134-.777086C1.464508-.388543 1.444583-.308842 .657534-.308842C.478207-.308842 .388543-.308842 .388543-.109589C.388543 0 .508095 0 .52802 0C.806974 0 1.514321-.029888 1.793275-.029888C2.002491-.029888 2.221669-.019925 2.430884-.019925C2.650062-.019925 2.86924 0 3.078456 0C3.158157 0 3.277709 0 3.277709-.199253C3.277709-.308842 3.188045-.308842 2.998755-.308842C2.630137-.308842 2.351183-.308842 2.351183-.488169C2.351183-.547945 2.371108-.597758 2.381071-.657534L3.058531-3.387298H6.097136C5.678705-1.733499 5.449564-.787049 5.409714-.637609C5.310087-.318804 5.120797-.308842 4.503113-.308842C4.353674-.308842 4.26401-.308842 4.26401-.109589C4.26401 0 4.383562 0 4.403487 0C4.682441 0 5.389788-.029888 5.668742-.029888C5.877958-.029888 6.097136-.019925 6.306351-.019925C6.525529-.019925 6.744707 0 6.953923 0C7.033624 0 7.153176 0 7.153176-.199253C7.153176-.308842 7.063512-.308842 6.874222-.308842C6.505604-.308842 6.22665-.308842 6.22665-.488169C6.22665-.547945 6.246575-.597758 6.256538-.657534L7.601494-6.03736Z'/>
<path id='g1-85' d='M6.326276-5.758406C6.425903-6.166874 6.60523-6.465753 7.402242-6.495641C7.452055-6.495641 7.571606-6.505604 7.571606-6.694894C7.571606-6.704857 7.571606-6.804483 7.442092-6.804483C7.113325-6.804483 6.764633-6.774595 6.425903-6.774595S5.718555-6.804483 5.389788-6.804483C5.330012-6.804483 5.210461-6.804483 5.210461-6.60523C5.210461-6.495641 5.310087-6.495641 5.389788-6.495641C5.957659-6.485679 6.067248-6.276463 6.067248-6.057285C6.067248-6.027397 6.047323-5.877958 6.03736-5.84807L5.140722-2.291407C4.801993-.956413 3.656289-.089664 2.660025-.089664C1.982565-.089664 1.444583-.52802 1.444583-1.384807C1.444583-1.404732 1.444583-1.723537 1.554172-2.161893L2.520548-6.03736C2.610212-6.396015 2.630137-6.495641 3.35741-6.495641C3.616438-6.495641 3.696139-6.495641 3.696139-6.694894C3.696139-6.804483 3.58655-6.804483 3.556663-6.804483C3.277709-6.804483 2.560399-6.774595 2.281445-6.774595C1.992528-6.774595 1.285181-6.804483 .996264-6.804483C.916563-6.804483 .806974-6.804483 .806974-6.60523C.806974-6.495641 .896638-6.495641 1.085928-6.495641C1.105853-6.495641 1.295143-6.495641 1.464508-6.475716C1.643836-6.455791 1.733499-6.445828 1.733499-6.316314C1.733499-6.256538 1.62391-5.838107 1.564134-5.608966L1.344956-4.732254C1.255293-4.343711 .777086-2.460772 .737235-2.271482C.667497-1.992528 .667497-1.843088 .667497-1.693649C.667497-.478207 1.574097 .219178 2.620174 .219178C3.875467 .219178 5.110834-.9066 5.439601-2.221669L6.326276-5.758406Z'/>
<path id='g1-88' d='M4.83188-4.094645L3.995019-6.07721C3.965131-6.156912 3.945205-6.196762 3.945205-6.206725C3.945205-6.266501 4.11457-6.455791 4.533001-6.495641C4.632628-6.505604 4.732254-6.515567 4.732254-6.684932C4.732254-6.804483 4.612702-6.804483 4.582814-6.804483C4.174346-6.804483 3.745953-6.774595 3.327522-6.774595C3.078456-6.774595 2.460772-6.804483 2.211706-6.804483C2.15193-6.804483 2.032379-6.804483 2.032379-6.60523C2.032379-6.495641 2.132005-6.495641 2.261519-6.495641C2.859278-6.495641 2.919054-6.396015 3.008717-6.176837L4.184309-3.39726L2.082192-1.135741L1.952677-1.026152C1.464508-.498132 .996264-.33873 .488169-.308842C.358655-.298879 .268991-.298879 .268991-.109589C.268991-.099626 .268991 0 .398506 0C.697385 0 1.026152-.029888 1.334994-.029888C1.703611-.029888 2.092154 0 2.450809 0C2.510585 0 2.630137 0 2.630137-.199253C2.630137-.298879 2.530511-.308842 2.510585-.308842C2.420922-.318804 2.11208-.33873 2.11208-.617684C2.11208-.777086 2.261519-.936488 2.381071-1.066002L3.39726-2.141968L4.293898-3.118306L5.300125-.737235C5.339975-.627646 5.349938-.617684 5.349938-.597758C5.349938-.518057 5.160648-.348692 4.772105-.308842C4.662516-.298879 4.572852-.288917 4.572852-.119552C4.572852 0 4.682441 0 4.722291 0C5.001245 0 5.69863-.029888 5.977584-.029888C6.22665-.029888 6.834371 0 7.083437 0C7.153176 0 7.272727 0 7.272727-.18929C7.272727-.308842 7.173101-.308842 7.0934-.308842C6.425903-.318804 6.405978-.348692 6.236613-.747198C5.84807-1.673724 5.180573-3.227895 4.951432-3.825654C5.628892-4.523039 6.674969-5.708593 6.993773-5.987547C7.28269-6.22665 7.66127-6.465753 8.259029-6.495641C8.388543-6.505604 8.478207-6.505604 8.478207-6.694894C8.478207-6.704857 8.478207-6.804483 8.348692-6.804483C8.049813-6.804483 7.721046-6.774595 7.412204-6.774595C7.043587-6.774595 6.665006-6.804483 6.306351-6.804483C6.246575-6.804483 6.117061-6.804483 6.117061-6.60523C6.117061-6.535492 6.166874-6.505604 6.236613-6.495641C6.326276-6.485679 6.635118-6.465753 6.635118-6.1868C6.635118-6.047323 6.525529-5.917808 6.445828-5.828144L4.83188-4.094645Z'/>
<path id='g2-43' d='M4.07472-2.291407H6.854296C6.993773-2.291407 7.183064-2.291407 7.183064-2.49066S6.993773-2.689913 6.854296-2.689913H4.07472V-5.479452C4.07472-5.618929 4.07472-5.808219 3.875467-5.808219S3.676214-5.618929 3.676214-5.479452V-2.689913H.886675C.747198-2.689913 .557908-2.689913 .557908-2.49066S.747198-2.291407 .886675-2.291407H3.676214V.498132C3.676214 .637609 3.676214 .826899 3.875467 .826899S4.07472 .637609 4.07472 .498132V-2.291407Z'/>
<path id='g2-48' d='M4.582814-3.188045C4.582814-3.985056 4.533001-4.782067 4.184309-5.519303C3.726027-6.475716 2.909091-6.635118 2.49066-6.635118C1.892902-6.635118 1.165629-6.37609 .757161-5.449564C.438356-4.762142 .388543-3.985056 .388543-3.188045C.388543-2.440847 .428394-1.544209 .836862-.787049C1.265255 .019925 1.992528 .219178 2.480697 .219178C3.01868 .219178 3.775841 .009963 4.214197-.936488C4.533001-1.62391 4.582814-2.400996 4.582814-3.188045ZM2.480697 0C2.092154 0 1.504359-.249066 1.325031-1.205479C1.215442-1.803238 1.215442-2.719801 1.215442-3.307597C1.215442-3.945205 1.215442-4.60274 1.295143-5.140722C1.484433-6.326276 2.231631-6.41594 2.480697-6.41594C2.809465-6.41594 3.466999-6.236613 3.656289-5.250311C3.755915-4.692403 3.755915-3.935243 3.755915-3.307597C3.755915-2.560399 3.755915-1.882939 3.646326-1.24533C3.496887-.298879 2.929016 0 2.480697 0Z'/>
</defs>
<g id='page1'>
<path d='M-35.8711-57.2891H-50.0742' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-4.6641-57.2891H-18.8672' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M33.8984-57.2891H11.19531' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M33.8984-57.2891H11.19531' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M56.6016-57.2891H33.8984' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M90.6992-57.2891H76.5273' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M90.6992-57.2891H76.5273' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-35.8984-28.2539H-50.0742' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-4.6641-28.2539H-18.8398' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-4.6641-28.2539H-18.8398' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M25.36719-28.2539H11.19531' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M66.5664-28.2539H42.4297' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M90.6992-28.2539H66.5664' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<g transform='matrix(1 0 0 1 -86.2273 -11.9851)'>
<use x='20.314157' y='-42.813661' xlink:href='#g0-106'/>
<use x='23.081565' y='-42.813661' xlink:href='#g2-48'/>
<use x='28.062905' y='-42.813661' xlink:href='#g0-105'/>
</g>
<path d='M-35.8711-49.90234H-18.8672V-64.6797H-35.8711Z' fill='#fff'/>
<path d='M-35.8711-49.90234H-18.8672V-64.6797H-35.8711Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -52.2007 -11.0718)'>
<use x='20.314157' y='-42.813661' xlink:href='#g1-88'/>
</g>
<path d='M-4.6641-20.8672H11.19531V-64.6797H-4.6641Z' fill='#fff'/>
<path d='M-4.6641-20.8672H11.19531V-64.6797H-4.6641Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -20.993741 3.4454)'>
<use x='20.314157' y='-42.813661' xlink:href='#g1-85'/>
</g>
<path d='M56.6016-49.8164H76.5273V-64.7617H56.6016Z' fill='#fff'/>
<path d='M59.4375-55.5898C63.0117-59.8477 70.1211-59.8477 73.6914-55.5898' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' clip-path='url(#clip1)'/>
<path d='M66.5664-54.4531L71.4102-60.2383' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' clip-path='url(#clip1)'/>
<path d='M72.648432-61.710976C72.449214-61.570345 71.51171-61.000034 70.804686-60.746128L72.019527-59.726599C72.144528-60.468786 72.542962-61.492224 72.648432-61.710976Z' clip-path='url(#clip1)'/>
<path d='M72.648432-61.710976C72.449214-61.570345 71.51171-61.000034 70.804686-60.746128L72.019527-59.726599C72.144528-60.468786 72.542962-61.492224 72.648432-61.710976Z' stroke='#000' fill='none' stroke-width='.788999' stroke-miterlimit='10' clip-path='url(#clip1)'/>
<path d='M56.6016-49.8164H76.5273V-64.7617H56.6016Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -88.9948 17.0494)'>
<use x='20.314157' y='-42.813661' xlink:href='#g0-106'/>
<use x='23.081565' y='-42.813661' xlink:href='#g2-43'/>
<use x='30.830313' y='-42.813661' xlink:href='#g0-105'/>
</g>
<path d='M-35.8984-20.8672H-18.8398V-35.64453H-35.8984Z' fill='#fff'/>
<path d='M-35.8984-20.8672H-18.8398V-35.64453H-35.8984Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 -52.2284 17.9627)'>
<use x='20.314157' y='-42.813661' xlink:href='#g1-72'/>
</g>
<path d='M25.36719-20.8672H42.4297V-35.64453H25.36719Z' fill='#fff'/>
<path d='M25.36719-20.8672H42.4297V-35.64453H25.36719Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<g transform='matrix(1 0 0 1 9.0384 17.9627)'>
<use x='20.314157' y='-42.813661' xlink:href='#g1-72'/>
</g>
</g>
</svg>
\ No newline at end of file
This diff is collapsed.
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 3.4.3 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='38.39471pt' height='27.62123pt' viewBox='-69.078205 -69.078205 38.39471 27.62123'>
<defs>
<clipPath id='clip1'>
<path d='M-45.65233-64.453139C-45.65233-66.78517-47.54686-68.6797-49.8828-68.6797C-52.21483-68.6797-54.10936-66.78517-54.10936-64.453139C-54.10936-62.1172-52.21483-60.22658-49.8828-60.22658C-47.54686-60.22658-45.65233-62.1172-45.65233-64.453139ZM-49.8828-64.453139'/>
</clipPath>
</defs>
<g id='page1'>
<path d='M-54.10938-64.45312H-68.6797' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-31.082-64.45312H-45.65234' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-49.878907-45.2539V-60.22656' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-51.58203-43.5547H-68.6797' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-31.082-43.5547H-48.17969' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-49.8828-68.6797V-60.22658M-54.10936-64.453139H-45.65233' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' clip-path='url(#clip1)'/>
<path d='M-45.65233-64.453139C-45.65233-66.78517-47.54686-68.6797-49.8828-68.6797C-52.21483-68.6797-54.10936-66.78517-54.10936-64.453139C-54.10936-62.1172-52.21483-60.22658-49.8828-60.22658C-47.54686-60.22658-45.65233-62.1172-45.65233-64.453139Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<path d='M-48.17967-43.554697C-48.17967-44.492197-48.941393-45.25392-49.8828-45.25392C-50.8203-45.25392-51.58202-44.492197-51.58202-43.554697C-51.58202-42.61329-50.8203-41.85548-49.8828-41.85548C-48.941393-41.85548-48.17967-42.61329-48.17967-43.554697Z'/>
<path d='M-48.17967-43.554697C-48.17967-44.492197-48.941393-45.25392-49.8828-45.25392C-50.8203-45.25392-51.58202-44.492197-51.58202-43.554697C-51.58202-42.61329-50.8203-41.85548-49.8828-41.85548C-48.941393-41.85548-48.17967-42.61329-48.17967-43.554697Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
</g>
</svg>
\ No newline at end of file
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 3.4.3 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='38.39471pt' height='27.62123pt' viewBox='-69.078205 -69.078225 38.39471 27.62123'>
<defs>
<clipPath id='clip1'>
<path d='M-45.65233-46.082028C-45.65233-48.41406-47.54686-50.30859-49.8828-50.30859C-52.21483-50.30859-54.10936-48.41406-54.10936-46.082028C-54.10936-43.74609-52.21483-41.85547-49.8828-41.85547C-47.54686-41.85547-45.65233-43.74609-45.65233-46.082028ZM-49.8828-46.082028'/>
</clipPath>
</defs>
<g id='page1'>
<path d='M-49.878907-65.2773V-50.30859' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-51.58203-66.9805H-68.6797' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-31.082-66.9805H-48.17969' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-54.10938-46.08203H-68.6797' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-31.082-46.08203H-45.65234' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' stroke-linecap='round'/>
<path d='M-48.17967-66.980471C-48.17967-67.917971-48.941393-68.67969-49.8828-68.67969C-50.8203-68.67969-51.58202-67.917971-51.58202-66.980471C-51.58202-66.039064-50.8203-65.27735-49.8828-65.27735C-48.941393-65.27735-48.17967-66.039064-48.17967-66.980471Z'/>
<path d='M-48.17967-66.980501C-48.17967-67.918001-48.941393-68.67972-49.8828-68.67972C-50.8203-68.67972-51.58202-67.918001-51.58202-66.980501C-51.58202-66.039094-50.8203-65.27738-49.8828-65.27738C-48.941393-65.27738-48.17967-66.039094-48.17967-66.980501Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
<path d='M-49.8828-50.30859V-41.85547M-54.10936-46.082028H-45.65233' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10' clip-path='url(#clip1)'/>
<path d='M-45.65233-46.082058C-45.65233-48.41409-47.54686-50.30862-49.8828-50.30862C-52.21483-50.30862-54.10936-48.41409-54.10936-46.082058C-54.10936-43.74612-52.21483-41.8555-49.8828-41.8555C-47.54686-41.8555-45.65233-43.74612-45.65233-46.082058Z' stroke='#000' fill='none' stroke-width='.79701' stroke-miterlimit='10'/>
</g>
</svg>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
_book/content/img/double_slit_comic.png

23.9 KiB

_book/content/img/double_slit_frames.png

360 KiB