Build report
- Start time:
- 2024-10-28 10:15:01 (UTC)
- End time:
- 2024-10-28 10:17:53 (UTC)
- Duration:
- 2 minutes 52 seconds
- Termination Status:
- Success
Previous builds
GIT changes: at 2024-10-28 10:15:07 (UTC)
Updating e993e4de3b..8eece40643 Fast-forward .../activities/apple-litigation/activity.en.xml | 20 ++++++++++++++++++++ .../apple-litigation/apple-litigation.sources | 4 ++++ fsfe.org/activities/deviceneutrality/index.en.xhtml | 10 +++++++++- fsfe.org/activities/dma/dma.en.xhtml | 16 ++++++++++++---- fsfe.org/graphics/logos/applelitigation-logo.png | Bin 0 -> 109159 bytes 5 files changed, 45 insertions(+), 5 deletions(-) create mode 100644 fsfe.org/activities/apple-litigation/activity.en.xml create mode 100644 fsfe.org/activities/apple-litigation/apple-litigation.sources create mode 100644 fsfe.org/graphics/logos/applelitigation-logo.pngchecked
Phase 1: 1 minute 5 seconds
[10:15:07] Starting phase 1 [10:15:08] * Spawning 4 processes [10:15:08] * Indexing 5416 files [10:15:24] * Indexation done in 16 seconds! [10:15:24] * Written index to /srv/www/fsfe.org_git/fsfe.org/search/index.js [10:15:24] * Creating search index [10:15:24] * Updating XSL stylesheets [10:15:25] * Preparing subdirectory fsfe.org/news [10:15:25] * Preparing subdirectory fsfe.org/events [10:15:25] * Updating default stylesheets [10:15:25] * Updating local menus [10:15:26] * Generating tag maps [10:15:56] * Updating tag policy [10:15:56] * Updating tag lists [10:16:02] * Updating XML lists [10:16:03] * Updating fsfe.org/about/people/.index.xmllist [10:16:03] * Updating fsfe.org/activities/.activities.xmllist [10:16:03] * Updating fsfe.org/activities/apple-litigation/.apple-litigation.xmllist [10:16:04] * Updating fsfe.org/activities/.awareness.xmllist [10:16:04] * Updating fsfe.org/activities/.legal.xmllist [10:16:04] * Updating fsfe.org/activities/.policy.xmllist [10:16:09] * Checking contents of XML lists [10:16:12] * Touching status.fsfe.org/translations/.index.xmllist [10:16:12] Finishing phase 1
Phase 2 Makefile: 0 minutes 1 second
# ----------------------------------------------------------------------------- # Makefile for FSFE website build, phase 2 # ----------------------------------------------------------------------------- .PHONY: all .DELETE_ON_ERROR: .SECONDEXPANSION: PROCESSOR = "/srv/www/fsfe.org_git/build/process_file.sh" PROCFLAGS = --build-env "fsfe.org" --source "/srv/www/fsfe.org_git" --domain "www.fsfe.org" INPUTDIR = /srv/www/fsfe.org_git OUTPUTDIR = /srv/www/fsfe.org_stage STATUSDIR = /srv/www/fsfe.org/status.fsfe.org/fsfe.org/data LANGUAGES = ar bg bs ca cs da de el en es et fa fi fr hr hu it ja mk nb nl nn pl pt ro ru sk sl sq sr sv tr uk zh # ----------------------------------------------------------------------------- # Build .html files from .xhtml sources # ----------------------------------------------------------------------------- # All .xhtml source files HTML_SRC_FILES := $(shell find "$(INPUTDIR)" -name '*.??.xhtml' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files (without .<lang>.xhtml ending) # Note: $(sort ...) is used to remove duplicates HTML_SRC_BASES := $(sort $(basename $(basename $(HTML_SRC_FILES)))) # All directories containing .xhtml source files HTML_SRC_DIRS := $(sort $(dir $(HTML_SRC_BASES))) # The same as above, but moved to the output directory HTML_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(HTML_SRC_BASES)) # List of .<lang>.html files to build HTML_DST_FILES := $(foreach base,$(HTML_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).html)) # .xmllist file used to build a html file XMLLIST_DEP = $(wildcard $(INPUTDIR)/$(dir $*).$(notdir $*).xmllist) # .xsl file used to build a html file XSL_DEP = $(firstword $(wildcard $(INPUTDIR)/$*.xsl) $(INPUTDIR)/$(dir $*).default.xsl) all: $(HTML_DST_FILES) $(filter %.ar.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ar.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ar.xml echo "* Building $*.ar.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" > "$@" $(filter %.bg.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.bg.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.bg.xml echo "* Building $*.bg.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" > "$@" $(filter %.bs.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.bs.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.bs.xml echo "* Building $*.bs.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" > "$@" $(filter %.ca.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ca.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ca.xml echo "* Building $*.ca.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" > "$@" $(filter %.cs.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.cs.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.cs.xml echo "* Building $*.cs.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" > "$@" $(filter %.da.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.da.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.da.xml echo "* Building $*.da.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" > "$@" $(filter %.de.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.de.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.de.xml echo "* Building $*.de.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" > "$@" $(filter %.el.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.el.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.el.xml echo "* Building $*.el.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" > "$@" $(filter %.en.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.en.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.en.xml echo "* Building $*.en.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" > "$@" $(filter %.es.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.es.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.es.xml echo "* Building $*.es.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" > "$@" $(filter %.et.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.et.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.et.xml echo "* Building $*.et.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" > "$@" $(filter %.fa.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fa.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fa.xml echo "* Building $*.fa.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.xhtml" > "$@" $(filter %.fi.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fi.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fi.xml echo "* Building $*.fi.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" > "$@" $(filter %.fr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.fr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.fr.xml echo "* Building $*.fr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" > "$@" $(filter %.hr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.hr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.hr.xml echo "* Building $*.hr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" > "$@" $(filter %.hu.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.hu.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.hu.xml echo "* Building $*.hu.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" > "$@" $(filter %.it.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.it.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.it.xml echo "* Building $*.it.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" > "$@" $(filter %.ja.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ja.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ja.xml echo "* Building $*.ja.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.xhtml" > "$@" $(filter %.mk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.mk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.mk.xml echo "* Building $*.mk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" > "$@" $(filter %.nb.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nb.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nb.xml echo "* Building $*.nb.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" > "$@" $(filter %.nl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nl.xml echo "* Building $*.nl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" > "$@" $(filter %.nn.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.nn.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.nn.xml echo "* Building $*.nn.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" > "$@" $(filter %.pl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.pl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.pl.xml echo "* Building $*.pl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" > "$@" $(filter %.pt.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.pt.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.pt.xml echo "* Building $*.pt.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" > "$@" $(filter %.ro.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ro.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ro.xml echo "* Building $*.ro.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" > "$@" $(filter %.ru.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.ru.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.ru.xml echo "* Building $*.ru.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" > "$@" $(filter %.sk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sk.xml echo "* Building $*.sk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" > "$@" $(filter %.sl.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sl.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sl.xml echo "* Building $*.sl.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" > "$@" $(filter %.sq.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sq.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sq.xml echo "* Building $*.sq.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" > "$@" $(filter %.sr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sr.xml echo "* Building $*.sr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" > "$@" $(filter %.sv.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.sv.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.sv.xml echo "* Building $*.sv.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" > "$@" $(filter %.tr.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.tr.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.tr.xml echo "* Building $*.tr.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" > "$@" $(filter %.uk.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.uk.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.uk.xml echo "* Building $*.uk.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" > "$@" $(filter %.zh.html,$(HTML_DST_FILES)): $(OUTPUTDIR)/%.zh.html: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $$(XSL_DEP) $(INPUTDIR)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.en.xml $(INPUTDIR)/global/data/topbanner/.topbanner.zh.xml echo "* Building $*.zh.html" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" > "$@" # ----------------------------------------------------------------------------- # Create index.* symlinks # ----------------------------------------------------------------------------- # All .xhtml source files with the same name as their parent directory INDEX_SRC_FILES := $(wildcard $(foreach directory,$(HTML_SRC_DIRS),$(directory)$(notdir $(directory:/=)).??.xhtml)) # All basenames of .xhtml source files with the same name as their parent # directory INDEX_SRC_BASES := $(sort $(basename $(basename $(INDEX_SRC_FILES)))) # All directories containing .xhtml source files with the same name as their # parent directory (that is, all directories in which index files should be # created) INDEX_SRC_DIRS := $(dir $(INDEX_SRC_BASES)) # The same as above, but moved to the output directory INDEX_DST_DIRS := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(INDEX_SRC_DIRS)) # List of index.<lang>.html symlinks to create INDEX_DST_LINKS := $(foreach base,$(INDEX_DST_DIRS),$(foreach lang,$(LANGUAGES),$(base)index.$(lang).html)) all: $(INDEX_DST_LINKS) $(filter %/index.ar.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ar.html: echo "* Creating symlink $*/index.ar.html" ln -sf "$(notdir $*).ar.html" "$@" $(filter %/index.bg.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.bg.html: echo "* Creating symlink $*/index.bg.html" ln -sf "$(notdir $*).bg.html" "$@" $(filter %/index.bs.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.bs.html: echo "* Creating symlink $*/index.bs.html" ln -sf "$(notdir $*).bs.html" "$@" $(filter %/index.ca.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ca.html: echo "* Creating symlink $*/index.ca.html" ln -sf "$(notdir $*).ca.html" "$@" $(filter %/index.cs.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.cs.html: echo "* Creating symlink $*/index.cs.html" ln -sf "$(notdir $*).cs.html" "$@" $(filter %/index.da.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.da.html: echo "* Creating symlink $*/index.da.html" ln -sf "$(notdir $*).da.html" "$@" $(filter %/index.de.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.de.html: echo "* Creating symlink $*/index.de.html" ln -sf "$(notdir $*).de.html" "$@" $(filter %/index.el.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.el.html: echo "* Creating symlink $*/index.el.html" ln -sf "$(notdir $*).el.html" "$@" $(filter %/index.en.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.en.html: echo "* Creating symlink $*/index.en.html" ln -sf "$(notdir $*).en.html" "$@" $(filter %/index.es.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.es.html: echo "* Creating symlink $*/index.es.html" ln -sf "$(notdir $*).es.html" "$@" $(filter %/index.et.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.et.html: echo "* Creating symlink $*/index.et.html" ln -sf "$(notdir $*).et.html" "$@" $(filter %/index.fa.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fa.html: echo "* Creating symlink $*/index.fa.html" ln -sf "$(notdir $*).fa.html" "$@" $(filter %/index.fi.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fi.html: echo "* Creating symlink $*/index.fi.html" ln -sf "$(notdir $*).fi.html" "$@" $(filter %/index.fr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.fr.html: echo "* Creating symlink $*/index.fr.html" ln -sf "$(notdir $*).fr.html" "$@" $(filter %/index.hr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.hr.html: echo "* Creating symlink $*/index.hr.html" ln -sf "$(notdir $*).hr.html" "$@" $(filter %/index.hu.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.hu.html: echo "* Creating symlink $*/index.hu.html" ln -sf "$(notdir $*).hu.html" "$@" $(filter %/index.it.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.it.html: echo "* Creating symlink $*/index.it.html" ln -sf "$(notdir $*).it.html" "$@" $(filter %/index.ja.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ja.html: echo "* Creating symlink $*/index.ja.html" ln -sf "$(notdir $*).ja.html" "$@" $(filter %/index.mk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.mk.html: echo "* Creating symlink $*/index.mk.html" ln -sf "$(notdir $*).mk.html" "$@" $(filter %/index.nb.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nb.html: echo "* Creating symlink $*/index.nb.html" ln -sf "$(notdir $*).nb.html" "$@" $(filter %/index.nl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nl.html: echo "* Creating symlink $*/index.nl.html" ln -sf "$(notdir $*).nl.html" "$@" $(filter %/index.nn.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.nn.html: echo "* Creating symlink $*/index.nn.html" ln -sf "$(notdir $*).nn.html" "$@" $(filter %/index.pl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.pl.html: echo "* Creating symlink $*/index.pl.html" ln -sf "$(notdir $*).pl.html" "$@" $(filter %/index.pt.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.pt.html: echo "* Creating symlink $*/index.pt.html" ln -sf "$(notdir $*).pt.html" "$@" $(filter %/index.ro.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ro.html: echo "* Creating symlink $*/index.ro.html" ln -sf "$(notdir $*).ro.html" "$@" $(filter %/index.ru.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.ru.html: echo "* Creating symlink $*/index.ru.html" ln -sf "$(notdir $*).ru.html" "$@" $(filter %/index.sk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sk.html: echo "* Creating symlink $*/index.sk.html" ln -sf "$(notdir $*).sk.html" "$@" $(filter %/index.sl.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sl.html: echo "* Creating symlink $*/index.sl.html" ln -sf "$(notdir $*).sl.html" "$@" $(filter %/index.sq.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sq.html: echo "* Creating symlink $*/index.sq.html" ln -sf "$(notdir $*).sq.html" "$@" $(filter %/index.sr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sr.html: echo "* Creating symlink $*/index.sr.html" ln -sf "$(notdir $*).sr.html" "$@" $(filter %/index.sv.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.sv.html: echo "* Creating symlink $*/index.sv.html" ln -sf "$(notdir $*).sv.html" "$@" $(filter %/index.tr.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.tr.html: echo "* Creating symlink $*/index.tr.html" ln -sf "$(notdir $*).tr.html" "$@" $(filter %/index.uk.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.uk.html: echo "* Creating symlink $*/index.uk.html" ln -sf "$(notdir $*).uk.html" "$@" $(filter %/index.zh.html,$(INDEX_DST_LINKS)): $(OUTPUTDIR)/%/index.zh.html: echo "* Creating symlink $*/index.zh.html" ln -sf "$(notdir $*).zh.html" "$@" # ----------------------------------------------------------------------------- # Create symlinks from file.<lang>.html to file.html.<lang> # ----------------------------------------------------------------------------- # List of .html.<lang> symlinks to create HTML_DST_LINKS := $(foreach base,$(HTML_DST_BASES) $(addsuffix index,$(INDEX_DST_DIRS)),$(foreach lang,$(LANGUAGES),$(base).html.$(lang))) all: $(HTML_DST_LINKS) $(OUTPUTDIR)/%.html.ar: echo "* Creating symlink $*.html.ar" ln -sf "$(notdir $*).ar.html" "$@" $(OUTPUTDIR)/%.html.bg: echo "* Creating symlink $*.html.bg" ln -sf "$(notdir $*).bg.html" "$@" $(OUTPUTDIR)/%.html.bs: echo "* Creating symlink $*.html.bs" ln -sf "$(notdir $*).bs.html" "$@" $(OUTPUTDIR)/%.html.ca: echo "* Creating symlink $*.html.ca" ln -sf "$(notdir $*).ca.html" "$@" $(OUTPUTDIR)/%.html.cs: echo "* Creating symlink $*.html.cs" ln -sf "$(notdir $*).cs.html" "$@" $(OUTPUTDIR)/%.html.da: echo "* Creating symlink $*.html.da" ln -sf "$(notdir $*).da.html" "$@" $(OUTPUTDIR)/%.html.de: echo "* Creating symlink $*.html.de" ln -sf "$(notdir $*).de.html" "$@" $(OUTPUTDIR)/%.html.el: echo "* Creating symlink $*.html.el" ln -sf "$(notdir $*).el.html" "$@" $(OUTPUTDIR)/%.html.en: echo "* Creating symlink $*.html.en" ln -sf "$(notdir $*).en.html" "$@" $(OUTPUTDIR)/%.html.es: echo "* Creating symlink $*.html.es" ln -sf "$(notdir $*).es.html" "$@" $(OUTPUTDIR)/%.html.et: echo "* Creating symlink $*.html.et" ln -sf "$(notdir $*).et.html" "$@" $(OUTPUTDIR)/%.html.fa: echo "* Creating symlink $*.html.fa" ln -sf "$(notdir $*).fa.html" "$@" $(OUTPUTDIR)/%.html.fi: echo "* Creating symlink $*.html.fi" ln -sf "$(notdir $*).fi.html" "$@" $(OUTPUTDIR)/%.html.fr: echo "* Creating symlink $*.html.fr" ln -sf "$(notdir $*).fr.html" "$@" $(OUTPUTDIR)/%.html.hr: echo "* Creating symlink $*.html.hr" ln -sf "$(notdir $*).hr.html" "$@" $(OUTPUTDIR)/%.html.hu: echo "* Creating symlink $*.html.hu" ln -sf "$(notdir $*).hu.html" "$@" $(OUTPUTDIR)/%.html.it: echo "* Creating symlink $*.html.it" ln -sf "$(notdir $*).it.html" "$@" $(OUTPUTDIR)/%.html.ja: echo "* Creating symlink $*.html.ja" ln -sf "$(notdir $*).ja.html" "$@" $(OUTPUTDIR)/%.html.mk: echo "* Creating symlink $*.html.mk" ln -sf "$(notdir $*).mk.html" "$@" $(OUTPUTDIR)/%.html.nb: echo "* Creating symlink $*.html.nb" ln -sf "$(notdir $*).nb.html" "$@" $(OUTPUTDIR)/%.html.nl: echo "* Creating symlink $*.html.nl" ln -sf "$(notdir $*).nl.html" "$@" $(OUTPUTDIR)/%.html.nn: echo "* Creating symlink $*.html.nn" ln -sf "$(notdir $*).nn.html" "$@" $(OUTPUTDIR)/%.html.pl: echo "* Creating symlink $*.html.pl" ln -sf "$(notdir $*).pl.html" "$@" $(OUTPUTDIR)/%.html.pt: echo "* Creating symlink $*.html.pt" ln -sf "$(notdir $*).pt.html" "$@" $(OUTPUTDIR)/%.html.ro: echo "* Creating symlink $*.html.ro" ln -sf "$(notdir $*).ro.html" "$@" $(OUTPUTDIR)/%.html.ru: echo "* Creating symlink $*.html.ru" ln -sf "$(notdir $*).ru.html" "$@" $(OUTPUTDIR)/%.html.sk: echo "* Creating symlink $*.html.sk" ln -sf "$(notdir $*).sk.html" "$@" $(OUTPUTDIR)/%.html.sl: echo "* Creating symlink $*.html.sl" ln -sf "$(notdir $*).sl.html" "$@" $(OUTPUTDIR)/%.html.sq: echo "* Creating symlink $*.html.sq" ln -sf "$(notdir $*).sq.html" "$@" $(OUTPUTDIR)/%.html.sr: echo "* Creating symlink $*.html.sr" ln -sf "$(notdir $*).sr.html" "$@" $(OUTPUTDIR)/%.html.sv: echo "* Creating symlink $*.html.sv" ln -sf "$(notdir $*).sv.html" "$@" $(OUTPUTDIR)/%.html.tr: echo "* Creating symlink $*.html.tr" ln -sf "$(notdir $*).tr.html" "$@" $(OUTPUTDIR)/%.html.uk: echo "* Creating symlink $*.html.uk" ln -sf "$(notdir $*).uk.html" "$@" $(OUTPUTDIR)/%.html.zh: echo "* Creating symlink $*.html.zh" ln -sf "$(notdir $*).zh.html" "$@" # ----------------------------------------------------------------------------- # Build .rss files from .xhtml sources # ----------------------------------------------------------------------------- # All .rss.xsl scripts which can create .rss output RSS_SRC_SCRIPTS := $(shell find "$(INPUTDIR)" -name '*.rss.xsl' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files from which .rss files should be built RSS_SRC_BASES := $(sort $(basename $(basename $(RSS_SRC_SCRIPTS)))) # The same as above, but moved to the output directory RSS_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(RSS_SRC_BASES)) # List of .<lang>.rss files to build RSS_DST_FILES := $(foreach base,$(RSS_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).rss)) all: $(RSS_DST_FILES) $(OUTPUTDIR)/%.ar.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ar.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.bg.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.bg.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.bs.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.bs.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ca.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ca.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.cs.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.cs.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.da.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.da.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.de.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.de.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.el.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.el.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.en.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.en.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.es.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.es.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.et.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.et.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.fa.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fa.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.fi.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fi.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.fr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.hr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.hr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.hu.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.hu.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.it.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.it.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ja.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ja.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.mk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.mk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nb.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nb.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.nn.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nn.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.pl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.pl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.pt.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.pt.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ro.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ro.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.ru.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ru.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sl.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sl.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sq.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sq.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.sv.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sv.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.tr.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.tr.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.uk.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.uk.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" $(OUTPUTDIR)/%.zh.rss: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.rss.xsl $(INPUTDIR)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.zh.rss" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" "$(INPUTDIR)/$*.rss.xsl" > "$@" # ----------------------------------------------------------------------------- # Build .ics files from .xhtml sources # ----------------------------------------------------------------------------- # All .ics.xsl scripts which can create .ics output ICS_SRC_SCRIPTS := $(shell find "$(INPUTDIR)" -name '*.ics.xsl' -not -path '$(INPUTDIR)/.git/*' ) # All basenames of .xhtml source files from which .ics files should be built ICS_SRC_BASES := $(sort $(basename $(basename $(ICS_SRC_SCRIPTS)))) # The same as above, but moved to the output directory ICS_DST_BASES := $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(ICS_SRC_BASES)) # List of .<lang>.ics files to build ICS_DST_FILES := $(foreach base,$(ICS_DST_BASES),$(foreach lang,$(LANGUAGES),$(base).$(lang).ics)) all: $(ICS_DST_FILES) $(OUTPUTDIR)/%.ar.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ar.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ar.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ar.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.bg.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.bg.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.bg.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bg.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.bs.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.bs.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.bs.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.bs.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ca.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ca.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ca.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ca.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.cs.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.cs.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.cs.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.cs.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.da.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.da.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.da.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.da.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.de.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.de.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.de.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.de.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.el.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.el.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.el.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.el.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.en.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.en.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.en.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.en.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.es.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.es.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.es.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.es.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.et.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.et.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.et.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.et.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.fa.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.fa.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fa.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fa.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.fi.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.fi.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fi.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fi.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.fr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.fr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.fr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.fr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.hr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.hr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.hr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.hu.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.hu.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.hu.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.hu.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.it.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.it.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.it.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.it.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ja.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ja.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ja.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ja.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.mk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.mk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.mk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.mk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nb.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.nb.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nb.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nb.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.nl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.nn.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.nn.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.nn.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.nn.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.pl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.pl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.pl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.pt.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.pt.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.pt.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.pt.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ro.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ro.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ro.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ro.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.ru.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.ru.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.ru.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.ru.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.sk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sl.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.sl.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sl.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sl.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sq.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.sq.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sq.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sq.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.sr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.sv.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.sv.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.sv.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.sv.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.tr.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.tr.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.tr.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.tr.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.uk.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.uk.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.uk.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.uk.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" $(OUTPUTDIR)/%.zh.ics: $(INPUTDIR)/%.*.xhtml $$(XMLLIST_DEP) $(INPUTDIR)/%.ics.xsl $(INPUTDIR)/global/data/texts/.texts.zh.xml $(INPUTDIR)/global/data/texts/texts.en.xml echo "* Building $*.zh.ics" ${PROCESSOR} ${PROCFLAGS} process_file "$(INPUTDIR)/$*.zh.xhtml" "$(INPUTDIR)/$*.ics.xsl" > "$@" # ----------------------------------------------------------------------------- # Copy images, docments etc # ----------------------------------------------------------------------------- # All files which should just be copied over COPY_SRC_FILES := $(shell find -L "$(INPUTDIR)" -type f -regex "$(INPUTDIR)/[a-z\.]+\.[a-z]+/.*" -not -name '.drone.yml' -not -name '.gitignore' -not -name 'README*' -not -name 'Makefile' -not -name '*.sources' -not -name "*.xmllist" -not -name '*.xhtml' -not -name '*.xml' -not -name '*.xsl' -not -name '*.nix' ) $(INPUTDIR)/fsfe.org/order/data/items.en.xml # The same as above, but moved to the output directory COPY_DST_FILES := $(sort $(patsubst $(INPUTDIR)/%,$(OUTPUTDIR)/%,$(COPY_SRC_FILES))) all: $(COPY_DST_FILES) $(COPY_DST_FILES): $(OUTPUTDIR)/%: $(INPUTDIR)/% echo "* Copying file $*" rsync -l "$<" "$@" # ----------------------------------------------------------------------------- # Clean up excess files in target directory # ----------------------------------------------------------------------------- ALL_DST := $(HTML_DST_FILES) $(INDEX_DST_LINKS) $(HTML_DST_LINKS) $(RSS_DST_FILES) $(ICS_DST_FILES) $(COPY_DST_FILES) $(SOURCE_DST_FILES) .PHONY: clean all: clean clean: # Write all destination filenames into "manifest" file, one per line $(file >$(STATUSDIR)/manifest) $(foreach filename,$(ALL_DST),$(file >>$(STATUSDIR)/manifest,$(filename))) sort "$(STATUSDIR)/manifest" > "$(STATUSDIR)/manifest.sorted" find -L "$(OUTPUTDIR)" -type f -path "$(STATUSDIR)" -prune \ | sort \ | diff - "$(STATUSDIR)/manifest.sorted" \ | sed -rn 's;^< ;;p' \ | while read file; do echo "* Deleting $${file}"; rm "$${file}"; done # -----------------------------------------------------------------------------
Phase 2: 0 minutes 47 seconds
[10:16:13] Starting phase 2 [10:16:19] * Building fsfe.org/about/people/index.ar.html [10:16:19] * Building fsfe.org/about/people/index.bg.html [10:16:19] * Building fsfe.org/about/people/index.bs.html [10:16:19] * Building fsfe.org/about/people/index.ca.html [10:16:19] * Building fsfe.org/about/people/index.cs.html [10:16:19] * Building fsfe.org/about/people/index.da.html [10:16:19] * Building fsfe.org/about/people/index.de.html [10:16:19] * Building fsfe.org/about/people/index.el.html [10:16:20] * Building fsfe.org/about/people/index.en.html [10:16:20] * Building fsfe.org/about/people/index.es.html [10:16:20] * Building fsfe.org/about/people/index.et.html [10:16:20] * Building fsfe.org/about/people/index.fa.html [10:16:20] * Building fsfe.org/about/people/index.fi.html [10:16:20] * Building fsfe.org/about/people/index.fr.html [10:16:20] * Building fsfe.org/about/people/index.hr.html [10:16:20] * Building fsfe.org/about/people/index.hu.html [10:16:21] * Building fsfe.org/about/people/index.it.html [10:16:21] * Building fsfe.org/about/people/index.ja.html [10:16:21] * Building fsfe.org/about/people/index.mk.html [10:16:21] * Building fsfe.org/about/people/index.nb.html [10:16:21] * Building fsfe.org/about/people/index.nl.html [10:16:21] * Building fsfe.org/about/people/index.nn.html [10:16:21] * Building fsfe.org/about/people/index.pl.html [10:16:21] * Building fsfe.org/about/people/index.pt.html [10:16:21] * Building fsfe.org/about/people/index.ro.html [10:16:21] * Building fsfe.org/about/people/index.ru.html [10:16:21] * Building fsfe.org/about/people/index.sk.html [10:16:21] * Building fsfe.org/about/people/index.sl.html [10:16:22] * Building fsfe.org/about/people/index.sq.html [10:16:22] * Building fsfe.org/about/people/index.sr.html [10:16:22] * Building fsfe.org/about/people/index.sv.html [10:16:22] * Building fsfe.org/about/people/index.tr.html [10:16:22] * Building fsfe.org/about/people/index.uk.html [10:16:22] * Building fsfe.org/about/people/index.zh.html [10:16:22] * Building fsfe.org/activities/activities.ar.html [10:16:22] * Building fsfe.org/activities/activities.bg.html [10:16:22] * Building fsfe.org/activities/activities.bs.html [10:16:22] * Building fsfe.org/activities/activities.ca.html [10:16:22] * Building fsfe.org/activities/activities.cs.html [10:16:23] * Building fsfe.org/activities/activities.da.html [10:16:23] * Building fsfe.org/activities/activities.de.html [10:16:23] * Building fsfe.org/activities/activities.el.html [10:16:23] * Building fsfe.org/activities/activities.en.html [10:16:23] * Building fsfe.org/activities/activities.es.html [10:16:23] * Building fsfe.org/activities/activities.et.html [10:16:23] * Building fsfe.org/activities/activities.fa.html [10:16:23] * Building fsfe.org/activities/activities.fi.html [10:16:23] * Building fsfe.org/activities/activities.fr.html [10:16:23] * Building fsfe.org/activities/activities.hr.html [10:16:24] * Building fsfe.org/activities/activities.hu.html [10:16:24] * Building fsfe.org/activities/activities.it.html [10:16:24] * Building fsfe.org/activities/activities.ja.html [10:16:24] * Building fsfe.org/activities/activities.mk.html [10:16:24] * Building fsfe.org/activities/activities.nb.html [10:16:24] * Building fsfe.org/activities/activities.nl.html [10:16:24] * Building fsfe.org/activities/activities.nn.html [10:16:24] * Building fsfe.org/activities/activities.pl.html [10:16:24] * Building fsfe.org/activities/activities.pt.html [10:16:24] * Building fsfe.org/activities/activities.ro.html [10:16:24] * Building fsfe.org/activities/activities.ru.html [10:16:25] * Building fsfe.org/activities/activities.sk.html [10:16:25] * Building fsfe.org/activities/activities.sl.html [10:16:25] * Building fsfe.org/activities/activities.sq.html [10:16:25] * Building fsfe.org/activities/activities.sr.html [10:16:25] * Building fsfe.org/activities/activities.sv.html [10:16:25] * Building fsfe.org/activities/activities.tr.html [10:16:25] * Building fsfe.org/activities/activities.uk.html [10:16:25] * Building fsfe.org/activities/activities.zh.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.ar.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.bg.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.bs.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.ca.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.cs.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.da.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.de.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.el.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.en.html [10:16:25] * Building fsfe.org/activities/apple-litigation/apple-litigation.es.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.et.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.fa.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.fi.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.fr.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.hr.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.hu.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.it.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.ja.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.mk.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.nb.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.nl.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.nn.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.pl.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.pt.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.ro.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.ru.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.sk.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.sl.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.sq.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.sr.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.sv.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.tr.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.uk.html [10:16:26] * Building fsfe.org/activities/apple-litigation/apple-litigation.zh.html [10:16:26] * Building fsfe.org/activities/awareness.ar.html [10:16:26] * Building fsfe.org/activities/awareness.bg.html [10:16:26] * Building fsfe.org/activities/awareness.bs.html [10:16:26] * Building fsfe.org/activities/awareness.ca.html [10:16:27] * Building fsfe.org/activities/awareness.cs.html [10:16:27] * Building fsfe.org/activities/awareness.da.html [10:16:27] * Building fsfe.org/activities/awareness.de.html [10:16:27] * Building fsfe.org/activities/awareness.el.html [10:16:27] * Building fsfe.org/activities/awareness.en.html [10:16:27] * Building fsfe.org/activities/awareness.es.html [10:16:27] * Building fsfe.org/activities/awareness.et.html [10:16:27] * Building fsfe.org/activities/awareness.fa.html [10:16:27] * Building fsfe.org/activities/awareness.fi.html [10:16:27] * Building fsfe.org/activities/awareness.fr.html [10:16:27] * Building fsfe.org/activities/awareness.hr.html [10:16:27] * Building fsfe.org/activities/awareness.hu.html [10:16:28] * Building fsfe.org/activities/awareness.it.html [10:16:28] * Building fsfe.org/activities/awareness.ja.html [10:16:28] * Building fsfe.org/activities/awareness.mk.html [10:16:28] * Building fsfe.org/activities/awareness.nb.html [10:16:28] * Building fsfe.org/activities/awareness.nl.html [10:16:28] * Building fsfe.org/activities/awareness.nn.html [10:16:28] * Building fsfe.org/activities/awareness.pl.html [10:16:28] * Building fsfe.org/activities/awareness.pt.html [10:16:28] * Building fsfe.org/activities/awareness.ro.html [10:16:28] * Building fsfe.org/activities/awareness.ru.html [10:16:28] * Building fsfe.org/activities/awareness.sk.html [10:16:28] * Building fsfe.org/activities/awareness.sl.html [10:16:29] * Building fsfe.org/activities/awareness.sq.html [10:16:29] * Building fsfe.org/activities/awareness.sr.html [10:16:29] * Building fsfe.org/activities/awareness.sv.html [10:16:29] * Building fsfe.org/activities/awareness.tr.html [10:16:29] * Building fsfe.org/activities/awareness.uk.html [10:16:29] * Building fsfe.org/activities/awareness.zh.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.ar.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.bg.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.bs.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.ca.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.cs.html [10:16:29] * Building fsfe.org/activities/deviceneutrality/index.da.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.de.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.el.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.en.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.es.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.et.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.fa.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.fi.html [10:16:30] * Building fsfe.org/activities/deviceneutrality/index.fr.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.hr.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.hu.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.it.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.ja.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.mk.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.nb.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.nl.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.nn.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.pl.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.pt.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.ro.html [10:16:31] * Building fsfe.org/activities/deviceneutrality/index.ru.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.sk.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.sl.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.sq.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.sr.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.sv.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.tr.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.uk.html [10:16:32] * Building fsfe.org/activities/deviceneutrality/index.zh.html [10:16:33] * Building fsfe.org/activities/dma/dma.ar.html [10:16:33] * Building fsfe.org/activities/dma/dma.bg.html [10:16:33] * Building fsfe.org/activities/dma/dma.bs.html [10:16:33] * Building fsfe.org/activities/dma/dma.ca.html [10:16:33] * Building fsfe.org/activities/dma/dma.cs.html [10:16:33] * Building fsfe.org/activities/dma/dma.da.html [10:16:33] * Building fsfe.org/activities/dma/dma.de.html [10:16:33] * Building fsfe.org/activities/dma/dma.el.html [10:16:33] * Building fsfe.org/activities/dma/dma.en.html [10:16:34] * Building fsfe.org/activities/dma/dma.es.html [10:16:34] * Building fsfe.org/activities/dma/dma.et.html [10:16:34] * Building fsfe.org/activities/dma/dma.fa.html [10:16:34] * Building fsfe.org/activities/dma/dma.fi.html [10:16:34] * Building fsfe.org/activities/dma/dma.fr.html [10:16:34] * Building fsfe.org/activities/dma/dma.hr.html [10:16:34] * Building fsfe.org/activities/dma/dma.hu.html [10:16:34] * Building fsfe.org/activities/dma/dma.it.html [10:16:34] * Building fsfe.org/activities/dma/dma.ja.html [10:16:34] * Building fsfe.org/activities/dma/dma.mk.html [10:16:34] * Building fsfe.org/activities/dma/dma.nb.html [10:16:35] * Building fsfe.org/activities/dma/dma.nl.html [10:16:35] * Building fsfe.org/activities/dma/dma.nn.html [10:16:35] * Building fsfe.org/activities/dma/dma.pl.html [10:16:35] * Building fsfe.org/activities/dma/dma.pt.html [10:16:35] * Building fsfe.org/activities/dma/dma.ro.html [10:16:35] * Building fsfe.org/activities/dma/dma.ru.html [10:16:35] * Building fsfe.org/activities/dma/dma.sk.html [10:16:35] * Building fsfe.org/activities/dma/dma.sl.html [10:16:36] * Building fsfe.org/activities/dma/dma.sq.html [10:16:36] * Building fsfe.org/activities/dma/dma.sr.html [10:16:36] * Building fsfe.org/activities/dma/dma.sv.html [10:16:36] * Building fsfe.org/activities/dma/dma.tr.html [10:16:36] * Building fsfe.org/activities/dma/dma.uk.html [10:16:36] * Building fsfe.org/activities/dma/dma.zh.html [10:16:36] * Building fsfe.org/activities/legal.ar.html [10:16:36] * Building fsfe.org/activities/legal.bg.html [10:16:36] * Building fsfe.org/activities/legal.bs.html [10:16:37] * Building fsfe.org/activities/legal.ca.html [10:16:37] * Building fsfe.org/activities/legal.cs.html [10:16:37] * Building fsfe.org/activities/legal.da.html [10:16:37] * Building fsfe.org/activities/legal.de.html [10:16:37] * Building fsfe.org/activities/legal.el.html [10:16:37] * Building fsfe.org/activities/legal.en.html [10:16:37] * Building fsfe.org/activities/legal.es.html [10:16:37] * Building fsfe.org/activities/legal.et.html [10:16:37] * Building fsfe.org/activities/legal.fa.html [10:16:37] * Building fsfe.org/activities/legal.fi.html [10:16:37] * Building fsfe.org/activities/legal.fr.html [10:16:37] * Building fsfe.org/activities/legal.hr.html [10:16:38] * Building fsfe.org/activities/legal.hu.html [10:16:38] * Building fsfe.org/activities/legal.it.html [10:16:38] * Building fsfe.org/activities/legal.ja.html [10:16:38] * Building fsfe.org/activities/legal.mk.html [10:16:38] * Building fsfe.org/activities/legal.nb.html [10:16:38] * Building fsfe.org/activities/legal.nl.html [10:16:38] * Building fsfe.org/activities/legal.nn.html [10:16:38] * Building fsfe.org/activities/legal.pl.html [10:16:38] * Building fsfe.org/activities/legal.pt.html [10:16:38] * Building fsfe.org/activities/legal.ro.html [10:16:38] * Building fsfe.org/activities/legal.ru.html [10:16:38] * Building fsfe.org/activities/legal.sk.html [10:16:39] * Building fsfe.org/activities/legal.sl.html [10:16:39] * Building fsfe.org/activities/legal.sq.html [10:16:39] * Building fsfe.org/activities/legal.sr.html [10:16:39] * Building fsfe.org/activities/legal.sv.html [10:16:39] * Building fsfe.org/activities/legal.tr.html [10:16:39] * Building fsfe.org/activities/legal.uk.html [10:16:39] * Building fsfe.org/activities/legal.zh.html [10:16:39] * Building fsfe.org/activities/policy.ar.html [10:16:39] * Building fsfe.org/activities/policy.bg.html [10:16:39] * Building fsfe.org/activities/policy.bs.html [10:16:39] * Building fsfe.org/activities/policy.ca.html [10:16:39] * Building fsfe.org/activities/policy.cs.html [10:16:40] * Building fsfe.org/activities/policy.da.html [10:16:40] * Building fsfe.org/activities/policy.de.html [10:16:40] * Building fsfe.org/activities/policy.el.html [10:16:40] * Building fsfe.org/activities/policy.en.html [10:16:40] * Building fsfe.org/activities/policy.es.html [10:16:40] * Building fsfe.org/activities/policy.et.html [10:16:40] * Building fsfe.org/activities/policy.fa.html [10:16:40] * Building fsfe.org/activities/policy.fi.html [10:16:40] * Building fsfe.org/activities/policy.fr.html [10:16:40] * Building fsfe.org/activities/policy.hr.html [10:16:40] * Building fsfe.org/activities/policy.hu.html [10:16:40] * Building fsfe.org/activities/policy.it.html [10:16:41] * Building fsfe.org/activities/policy.ja.html [10:16:41] * Building fsfe.org/activities/policy.mk.html [10:16:41] * Building fsfe.org/activities/policy.nb.html [10:16:41] * Building fsfe.org/activities/policy.nl.html [10:16:41] * Building fsfe.org/activities/policy.nn.html [10:16:41] * Building fsfe.org/activities/policy.pl.html [10:16:41] * Building fsfe.org/activities/policy.pt.html [10:16:41] * Building fsfe.org/activities/policy.ro.html [10:16:41] * Building fsfe.org/activities/policy.ru.html [10:16:41] * Building fsfe.org/activities/policy.sk.html [10:16:41] * Building fsfe.org/activities/policy.sl.html [10:16:41] * Building fsfe.org/activities/policy.sq.html [10:16:42] * Building fsfe.org/activities/policy.sr.html [10:16:42] * Building fsfe.org/activities/policy.sv.html [10:16:42] * Building fsfe.org/activities/policy.tr.html [10:16:42] * Building fsfe.org/activities/policy.uk.html [10:16:42] * Building fsfe.org/activities/policy.zh.html [10:16:45] * Building fsfe.org/tags/tagged-policy.ar.html [10:16:45] * Building fsfe.org/tags/tagged-policy.bg.html [10:16:45] * Building fsfe.org/tags/tagged-policy.bs.html [10:16:45] * Building fsfe.org/tags/tagged-policy.ca.html [10:16:46] * Building fsfe.org/tags/tagged-policy.cs.html [10:16:46] * Building fsfe.org/tags/tagged-policy.da.html [10:16:46] * Building fsfe.org/tags/tagged-policy.de.html [10:16:46] * Building fsfe.org/tags/tagged-policy.el.html [10:16:47] * Building fsfe.org/tags/tagged-policy.en.html [10:16:47] * Building fsfe.org/tags/tagged-policy.es.html [10:16:47] * Building fsfe.org/tags/tagged-policy.et.html [10:16:47] * Building fsfe.org/tags/tagged-policy.fa.html [10:16:48] * Building fsfe.org/tags/tagged-policy.fi.html [10:16:48] * Building fsfe.org/tags/tagged-policy.fr.html [10:16:48] * Building fsfe.org/tags/tagged-policy.hr.html [10:16:48] * Building fsfe.org/tags/tagged-policy.hu.html [10:16:49] * Building fsfe.org/tags/tagged-policy.it.html [10:16:49] * Building fsfe.org/tags/tagged-policy.ja.html [10:16:49] * Building fsfe.org/tags/tagged-policy.mk.html [10:16:49] * Building fsfe.org/tags/tagged-policy.nb.html [10:16:50] * Building fsfe.org/tags/tagged-policy.nl.html [10:16:50] * Building fsfe.org/tags/tagged-policy.nn.html [10:16:50] * Building fsfe.org/tags/tagged-policy.pl.html [10:16:50] * Building fsfe.org/tags/tagged-policy.pt.html [10:16:51] * Building fsfe.org/tags/tagged-policy.ro.html [10:16:51] * Building fsfe.org/tags/tagged-policy.ru.html [10:16:51] * Building fsfe.org/tags/tagged-policy.sk.html [10:16:51] * Building fsfe.org/tags/tagged-policy.sl.html [10:16:52] * Building fsfe.org/tags/tagged-policy.sq.html [10:16:52] * Building fsfe.org/tags/tagged-policy.sr.html [10:16:52] * Building fsfe.org/tags/tagged-policy.sv.html [10:16:52] * Building fsfe.org/tags/tagged-policy.tr.html [10:16:53] * Building fsfe.org/tags/tagged-policy.uk.html [10:16:53] * Building fsfe.org/tags/tagged-policy.zh.html [10:16:54] * Building status.fsfe.org/translations/index.ar.html [10:16:54] * Building status.fsfe.org/translations/index.bg.html [10:16:54] * Building status.fsfe.org/translations/index.bs.html [10:16:54] * Building status.fsfe.org/translations/index.ca.html [10:16:54] * Building status.fsfe.org/translations/index.cs.html [10:16:54] * Building status.fsfe.org/translations/index.da.html [10:16:54] * Building status.fsfe.org/translations/index.de.html [10:16:54] * Building status.fsfe.org/translations/index.el.html [10:16:54] * Building status.fsfe.org/translations/index.en.html [10:16:54] * Building status.fsfe.org/translations/index.es.html [10:16:54] * Building status.fsfe.org/translations/index.et.html [10:16:54] * Building status.fsfe.org/translations/index.fa.html [10:16:54] * Building status.fsfe.org/translations/index.fi.html [10:16:54] * Building status.fsfe.org/translations/index.fr.html [10:16:54] * Building status.fsfe.org/translations/index.hr.html [10:16:54] * Building status.fsfe.org/translations/index.hu.html [10:16:55] * Building status.fsfe.org/translations/index.it.html [10:16:55] * Building status.fsfe.org/translations/index.ja.html [10:16:55] * Building status.fsfe.org/translations/index.mk.html [10:16:55] * Building status.fsfe.org/translations/index.nb.html [10:16:55] * Building status.fsfe.org/translations/index.nl.html [10:16:55] * Building status.fsfe.org/translations/index.nn.html [10:16:55] * Building status.fsfe.org/translations/index.pl.html [10:16:55] * Building status.fsfe.org/translations/index.pt.html [10:16:55] * Building status.fsfe.org/translations/index.ro.html [10:16:55] * Building status.fsfe.org/translations/index.ru.html [10:16:55] * Building status.fsfe.org/translations/index.sk.html [10:16:55] * Building status.fsfe.org/translations/index.sl.html [10:16:55] * Building status.fsfe.org/translations/index.sq.html [10:16:55] * Building status.fsfe.org/translations/index.sr.html [10:16:55] * Building status.fsfe.org/translations/index.sv.html [10:16:55] * Building status.fsfe.org/translations/index.tr.html [10:16:55] * Building status.fsfe.org/translations/index.uk.html [10:16:55] * Building status.fsfe.org/translations/index.zh.html [10:16:57] * Copying file fsfe.org/graphics/logos/applelitigation-logo.png [10:16:58] * Copying file status.fsfe.org/translations/data/log.txt [10:17:00] Finishing phase 2
Target update: 16439 updated files
[10:17:00] Syncing files to bunsen.fsfeurope.org [10:17:02] sending incremental file list [10:17:02] fsfe.org/about/people/index.ar.html [10:17:02] fsfe.org/about/people/index.bg.html [10:17:02] fsfe.org/about/people/index.bs.html [10:17:02] fsfe.org/about/people/index.ca.html [10:17:02] fsfe.org/about/people/index.cs.html [10:17:02] fsfe.org/about/people/index.da.html [10:17:02] fsfe.org/about/people/index.de.html [10:17:02] fsfe.org/about/people/index.el.html [10:17:02] fsfe.org/about/people/index.en.html [10:17:02] fsfe.org/about/people/index.es.html [10:17:02] fsfe.org/about/people/index.et.html [10:17:02] fsfe.org/about/people/index.fa.html [10:17:02] fsfe.org/about/people/index.fi.html [10:17:02] fsfe.org/about/people/index.fr.html [10:17:02] fsfe.org/about/people/index.hr.html [10:17:02] fsfe.org/about/people/index.hu.html [10:17:02] fsfe.org/about/people/index.it.html [10:17:02] fsfe.org/about/people/index.ja.html [10:17:02] fsfe.org/about/people/index.mk.html [10:17:02] fsfe.org/about/people/index.nb.html [10:17:02] fsfe.org/about/people/index.nl.html [10:17:02] fsfe.org/about/people/index.nn.html [10:17:02] fsfe.org/about/people/index.pl.html [10:17:02] fsfe.org/about/people/index.pt.html [10:17:02] fsfe.org/about/people/index.ro.html [10:17:02] fsfe.org/about/people/index.ru.html [10:17:02] fsfe.org/about/people/index.sk.html [10:17:02] fsfe.org/about/people/index.sl.html [10:17:02] fsfe.org/about/people/index.sq.html [10:17:02] fsfe.org/about/people/index.sr.html [10:17:02] fsfe.org/about/people/index.sv.html [10:17:02] fsfe.org/about/people/index.tr.html [10:17:02] fsfe.org/about/people/index.uk.html [10:17:02] fsfe.org/about/people/index.zh.html [10:17:02] fsfe.org/activities/activities.ar.html [10:17:02] fsfe.org/activities/activities.bg.html [10:17:02] fsfe.org/activities/activities.bs.html [10:17:02] fsfe.org/activities/activities.ca.html [10:17:02] fsfe.org/activities/activities.cs.html [10:17:02] fsfe.org/activities/activities.da.html [10:17:02] fsfe.org/activities/activities.de.html [10:17:02] fsfe.org/activities/activities.el.html [10:17:02] fsfe.org/activities/activities.en.html [10:17:02] fsfe.org/activities/activities.es.html [10:17:02] fsfe.org/activities/activities.et.html [10:17:02] fsfe.org/activities/activities.fa.html [10:17:02] fsfe.org/activities/activities.fi.html [10:17:02] fsfe.org/activities/activities.fr.html [10:17:02] fsfe.org/activities/activities.hr.html [10:17:02] fsfe.org/activities/activities.hu.html [10:17:02] fsfe.org/activities/activities.it.html [10:17:02] fsfe.org/activities/activities.ja.html [10:17:02] fsfe.org/activities/activities.mk.html [10:17:02] fsfe.org/activities/activities.nb.html [10:17:02] fsfe.org/activities/activities.nl.html [10:17:02] fsfe.org/activities/activities.nn.html [10:17:02] fsfe.org/activities/activities.pl.html [10:17:02] fsfe.org/activities/activities.pt.html [10:17:02] fsfe.org/activities/activities.ro.html [10:17:02] fsfe.org/activities/activities.ru.html [10:17:02] fsfe.org/activities/activities.sk.html [10:17:02] fsfe.org/activities/activities.sl.html [10:17:02] fsfe.org/activities/activities.sq.html [10:17:02] fsfe.org/activities/activities.sr.html [10:17:02] fsfe.org/activities/activities.sv.html [10:17:02] fsfe.org/activities/activities.tr.html [10:17:02] fsfe.org/activities/activities.uk.html [10:17:02] fsfe.org/activities/activities.zh.html [10:17:02] fsfe.org/activities/awareness.ar.html [10:17:02] fsfe.org/activities/awareness.bg.html [10:17:02] fsfe.org/activities/awareness.bs.html [10:17:02] fsfe.org/activities/awareness.ca.html [10:17:02] fsfe.org/activities/awareness.cs.html [10:17:02] fsfe.org/activities/awareness.da.html [10:17:02] fsfe.org/activities/awareness.de.html [10:17:02] fsfe.org/activities/awareness.el.html [10:17:02] fsfe.org/activities/awareness.en.html [10:17:02] fsfe.org/activities/awareness.es.html [10:17:02] fsfe.org/activities/awareness.et.html [10:17:02] fsfe.org/activities/awareness.fa.html [10:17:02] fsfe.org/activities/awareness.fi.html [10:17:02] fsfe.org/activities/awareness.fr.html [10:17:02] fsfe.org/activities/awareness.hr.html [10:17:02] fsfe.org/activities/awareness.hu.html [10:17:02] fsfe.org/activities/awareness.it.html [10:17:02] fsfe.org/activities/awareness.ja.html [10:17:02] fsfe.org/activities/awareness.mk.html [10:17:02] fsfe.org/activities/awareness.nb.html [10:17:02] fsfe.org/activities/awareness.nl.html [10:17:02] fsfe.org/activities/awareness.nn.html [10:17:02] fsfe.org/activities/awareness.pl.html [10:17:02] fsfe.org/activities/awareness.pt.html [10:17:02] fsfe.org/activities/awareness.ro.html [10:17:02] fsfe.org/activities/awareness.ru.html [10:17:02] fsfe.org/activities/awareness.sk.html [10:17:02] fsfe.org/activities/awareness.sl.html [10:17:02] fsfe.org/activities/awareness.sq.html [10:17:02] fsfe.org/activities/awareness.sr.html [10:17:02] fsfe.org/activities/awareness.sv.html [10:17:02] fsfe.org/activities/awareness.tr.html [10:17:02] fsfe.org/activities/awareness.uk.html [10:17:02] fsfe.org/activities/awareness.zh.html [10:17:02] fsfe.org/activities/legal.ar.html [10:17:02] fsfe.org/activities/legal.bg.html [10:17:02] fsfe.org/activities/legal.bs.html [10:17:02] fsfe.org/activities/legal.ca.html [10:17:02] fsfe.org/activities/legal.cs.html [10:17:02] fsfe.org/activities/legal.da.html [10:17:03] fsfe.org/activities/legal.de.html [10:17:03] fsfe.org/activities/legal.el.html [10:17:03] fsfe.org/activities/legal.en.html [10:17:03] fsfe.org/activities/legal.es.html [10:17:03] fsfe.org/activities/legal.et.html [10:17:03] fsfe.org/activities/legal.fa.html [10:17:03] fsfe.org/activities/legal.fi.html [10:17:03] fsfe.org/activities/legal.fr.html [10:17:03] fsfe.org/activities/legal.hr.html [10:17:03] fsfe.org/activities/legal.hu.html [10:17:03] fsfe.org/activities/legal.it.html [10:17:03] fsfe.org/activities/legal.ja.html [10:17:03] fsfe.org/activities/legal.mk.html [10:17:03] fsfe.org/activities/legal.nb.html [10:17:03] fsfe.org/activities/legal.nl.html [10:17:03] fsfe.org/activities/legal.nn.html [10:17:03] fsfe.org/activities/legal.pl.html [10:17:03] fsfe.org/activities/legal.pt.html [10:17:03] fsfe.org/activities/legal.ro.html [10:17:03] fsfe.org/activities/legal.ru.html [10:17:03] fsfe.org/activities/legal.sk.html [10:17:03] fsfe.org/activities/legal.sl.html [10:17:03] fsfe.org/activities/legal.sq.html [10:17:03] fsfe.org/activities/legal.sr.html [10:17:03] fsfe.org/activities/legal.sv.html [10:17:03] fsfe.org/activities/legal.tr.html [10:17:03] fsfe.org/activities/legal.uk.html [10:17:03] fsfe.org/activities/legal.zh.html [10:17:03] fsfe.org/activities/policy.ar.html [10:17:03] fsfe.org/activities/policy.bg.html [10:17:03] fsfe.org/activities/policy.bs.html [10:17:03] fsfe.org/activities/policy.ca.html [10:17:03] fsfe.org/activities/policy.cs.html [10:17:03] fsfe.org/activities/policy.da.html [10:17:03] fsfe.org/activities/policy.de.html [10:17:03] fsfe.org/activities/policy.el.html [10:17:03] fsfe.org/activities/policy.en.html [10:17:03] fsfe.org/activities/policy.es.html [10:17:03] fsfe.org/activities/policy.et.html [10:17:03] fsfe.org/activities/policy.fa.html [10:17:03] fsfe.org/activities/policy.fi.html [10:17:03] fsfe.org/activities/policy.fr.html [10:17:03] fsfe.org/activities/policy.hr.html [10:17:03] fsfe.org/activities/policy.hu.html [10:17:03] fsfe.org/activities/policy.it.html [10:17:03] fsfe.org/activities/policy.ja.html [10:17:03] fsfe.org/activities/policy.mk.html [10:17:03] fsfe.org/activities/policy.nb.html [10:17:03] fsfe.org/activities/policy.nl.html [10:17:03] fsfe.org/activities/policy.nn.html [10:17:03] fsfe.org/activities/policy.pl.html [10:17:03] fsfe.org/activities/policy.pt.html [10:17:03] fsfe.org/activities/policy.ro.html [10:17:03] fsfe.org/activities/policy.ru.html [10:17:03] fsfe.org/activities/policy.sk.html [10:17:03] fsfe.org/activities/policy.sl.html [10:17:03] fsfe.org/activities/policy.sq.html [10:17:03] fsfe.org/activities/policy.sr.html [10:17:03] fsfe.org/activities/policy.sv.html [10:17:03] fsfe.org/activities/policy.tr.html [10:17:03] fsfe.org/activities/policy.uk.html [10:17:03] fsfe.org/activities/policy.zh.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.ar.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.bg.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.bs.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.ca.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.cs.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.da.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.de.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.el.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.en.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.es.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.et.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.fa.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.fi.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.fr.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.hr.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.hu.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.it.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.ja.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.mk.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.nb.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.nl.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.nn.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.pl.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.pt.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.ro.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.ru.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.sk.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.sl.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.sq.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.sr.html [10:17:03] fsfe.org/activities/apple-litigation/apple-litigation.sv.html [10:17:09] fsfe.org/activities/apple-litigation/apple-litigation.tr.html [10:17:09] fsfe.org/activities/apple-litigation/apple-litigation.uk.html [10:17:09] fsfe.org/activities/apple-litigation/apple-litigation.zh.html [10:17:09] fsfe.org/activities/deviceneutrality/index.ar.html [10:17:09] fsfe.org/activities/deviceneutrality/index.bg.html [10:17:09] fsfe.org/activities/deviceneutrality/index.bs.html [10:17:09] fsfe.org/activities/deviceneutrality/index.ca.html [10:17:09] fsfe.org/activities/deviceneutrality/index.cs.html [10:17:09] fsfe.org/activities/deviceneutrality/index.da.html [10:17:09] fsfe.org/activities/deviceneutrality/index.de.html [10:17:09] fsfe.org/activities/deviceneutrality/index.el.html [10:17:09] fsfe.org/activities/deviceneutrality/index.en.html [10:17:09] fsfe.org/activities/deviceneutrality/index.es.html [10:17:09] fsfe.org/activities/deviceneutrality/index.et.html [10:17:09] fsfe.org/activities/deviceneutrality/index.fa.html [10:17:09] fsfe.org/activities/deviceneutrality/index.fi.html [10:17:09] fsfe.org/activities/deviceneutrality/index.fr.html [10:17:09] fsfe.org/activities/deviceneutrality/index.hr.html [10:17:09] fsfe.org/activities/deviceneutrality/index.hu.html [10:17:09] fsfe.org/activities/deviceneutrality/index.it.html [10:17:09] fsfe.org/activities/deviceneutrality/index.ja.html [10:17:09] fsfe.org/activities/deviceneutrality/index.mk.html [10:17:09] fsfe.org/activities/deviceneutrality/index.nb.html [10:17:09] fsfe.org/activities/deviceneutrality/index.nl.html [10:17:09] fsfe.org/activities/deviceneutrality/index.nn.html [10:17:09] fsfe.org/activities/deviceneutrality/index.pl.html [10:17:09] fsfe.org/activities/deviceneutrality/index.pt.html [10:17:09] fsfe.org/activities/deviceneutrality/index.ro.html [10:17:09] fsfe.org/activities/deviceneutrality/index.ru.html [10:17:09] fsfe.org/activities/deviceneutrality/index.sk.html [10:17:09] fsfe.org/activities/deviceneutrality/index.sl.html [10:17:09] fsfe.org/activities/deviceneutrality/index.sq.html [10:17:09] fsfe.org/activities/deviceneutrality/index.sr.html [10:17:09] fsfe.org/activities/deviceneutrality/index.sv.html [10:17:09] fsfe.org/activities/deviceneutrality/index.tr.html [10:17:09] fsfe.org/activities/deviceneutrality/index.uk.html [10:17:09] fsfe.org/activities/deviceneutrality/index.zh.html [10:17:09] fsfe.org/activities/dma/dma.ar.html [10:17:09] fsfe.org/activities/dma/dma.bg.html [10:17:09] fsfe.org/activities/dma/dma.bs.html [10:17:09] fsfe.org/activities/dma/dma.ca.html [10:17:09] fsfe.org/activities/dma/dma.cs.html [10:17:09] fsfe.org/activities/dma/dma.da.html [10:17:09] fsfe.org/activities/dma/dma.de.html [10:17:09] fsfe.org/activities/dma/dma.el.html [10:17:09] fsfe.org/activities/dma/dma.en.html [10:17:09] fsfe.org/activities/dma/dma.es.html [10:17:09] fsfe.org/activities/dma/dma.et.html [10:17:09] fsfe.org/activities/dma/dma.fa.html [10:17:09] fsfe.org/activities/dma/dma.fi.html [10:17:09] fsfe.org/activities/dma/dma.fr.html [10:17:09] fsfe.org/activities/dma/dma.hr.html [10:17:09] fsfe.org/activities/dma/dma.hu.html [10:17:09] fsfe.org/activities/dma/dma.it.html [10:17:09] fsfe.org/activities/dma/dma.ja.html [10:17:09] fsfe.org/activities/dma/dma.mk.html [10:17:09] fsfe.org/activities/dma/dma.nb.html [10:17:09] fsfe.org/activities/dma/dma.nl.html [10:17:09] fsfe.org/activities/dma/dma.nn.html [10:17:09] fsfe.org/activities/dma/dma.pl.html [10:17:09] fsfe.org/activities/dma/dma.pt.html [10:17:09] fsfe.org/activities/dma/dma.ro.html [10:17:09] fsfe.org/activities/dma/dma.ru.html [10:17:09] fsfe.org/activities/dma/dma.sk.html [10:17:09] fsfe.org/activities/dma/dma.sl.html [10:17:09] fsfe.org/activities/dma/dma.sq.html [10:17:09] fsfe.org/activities/dma/dma.sr.html [10:17:09] fsfe.org/activities/dma/dma.sv.html [10:17:09] fsfe.org/activities/dma/dma.tr.html [10:17:09] fsfe.org/activities/dma/dma.uk.html [10:17:09] fsfe.org/activities/dma/dma.zh.html [10:17:09] fsfe.org/graphics/logos/ [10:17:09] fsfe.org/graphics/logos/applelitigation-logo.png [10:17:09] fsfe.org/search/index.js [10:17:09] fsfe.org/tags/tagged-policy.ar.html [10:17:09] fsfe.org/tags/tagged-policy.bg.html [10:17:09] fsfe.org/tags/tagged-policy.bs.html [10:17:09] fsfe.org/tags/tagged-policy.ca.html [10:17:09] fsfe.org/tags/tagged-policy.cs.html [10:17:09] fsfe.org/tags/tagged-policy.da.html [10:17:09] fsfe.org/tags/tagged-policy.de.html [10:17:09] fsfe.org/tags/tagged-policy.el.html [10:17:09] fsfe.org/tags/tagged-policy.en.html [10:17:09] fsfe.org/tags/tagged-policy.es.html [10:17:09] fsfe.org/tags/tagged-policy.et.html [10:17:09] fsfe.org/tags/tagged-policy.fa.html [10:17:09] fsfe.org/tags/tagged-policy.fi.html [10:17:09] fsfe.org/tags/tagged-policy.fr.html [10:17:09] fsfe.org/tags/tagged-policy.hr.html [10:17:09] fsfe.org/tags/tagged-policy.hu.html [10:17:09] fsfe.org/tags/tagged-policy.it.html [10:17:09] fsfe.org/tags/tagged-policy.ja.html [10:17:09] fsfe.org/tags/tagged-policy.mk.html [10:17:09] fsfe.org/tags/tagged-policy.nb.html [10:17:09] fsfe.org/tags/tagged-policy.nl.html [10:17:09] fsfe.org/tags/tagged-policy.nn.html [10:17:09] fsfe.org/tags/tagged-policy.pl.html [10:17:09] fsfe.org/tags/tagged-policy.pt.html [10:17:09] fsfe.org/tags/tagged-policy.ro.html [10:17:10] fsfe.org/tags/tagged-policy.ru.html [10:17:10] fsfe.org/tags/tagged-policy.sk.html [10:17:10] fsfe.org/tags/tagged-policy.sl.html [10:17:10] fsfe.org/tags/tagged-policy.sq.html [10:17:10] fsfe.org/tags/tagged-policy.sr.html [10:17:10] fsfe.org/tags/tagged-policy.sv.html [10:17:10] fsfe.org/tags/tagged-policy.tr.html [10:17:10] fsfe.org/tags/tagged-policy.uk.html [10:17:10] fsfe.org/tags/tagged-policy.zh.html [10:17:10] source/drm.info/act-now.de.xhtml [10:17:10] source/fsfe.org/boilerplate.en.xhtml [10:17:10] source/fsfe.org/index.cs.xhtml [10:17:10] source/fsfe.org/index.de.xhtml [10:17:10] source/fsfe.org/index.el.xhtml [10:17:10] source/fsfe.org/index.en.xhtml [10:17:10] source/fsfe.org/index.es.xhtml [10:17:10] source/fsfe.org/index.fr.xhtml [10:17:10] source/fsfe.org/index.it.xhtml [10:17:10] source/fsfe.org/index.nl.xhtml [10:17:10] source/fsfe.org/index.pt.xhtml [10:17:10] source/fsfe.org/index.tr.xhtml [10:17:10] source/fsfe.org/index.uk.xhtml [10:17:10] source/fsfe.org/about/about.de.xhtml [10:17:10] source/fsfe.org/about/about.el.xhtml [10:17:10] source/fsfe.org/about/about.en.xhtml [10:17:10] source/fsfe.org/about/about.es.xhtml [10:17:10] source/fsfe.org/about/about.fr.xhtml [10:17:10] source/fsfe.org/about/about.it.xhtml [10:17:10] source/fsfe.org/about/about.nl.xhtml [10:17:10] source/fsfe.org/about/about.pl.xhtml [10:17:10] source/fsfe.org/about/about.tr.xhtml [10:17:10] source/fsfe.org/about/about.uk.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.de.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.el.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.en.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.es.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.fr.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.nl.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.sq.xhtml [10:17:10] source/fsfe.org/about/codeofconduct.uk.xhtml [10:17:10] source/fsfe.org/about/contact.de.xhtml [10:17:10] source/fsfe.org/about/contact.en.xhtml [10:17:10] source/fsfe.org/about/contact.nl.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.da.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.de.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.el.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.en.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.es.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.fr.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.hr.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.it.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.nl.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.pt.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.ru.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.sq.xhtml [10:17:10] source/fsfe.org/about/fsfnetwork.uk.xhtml [10:17:10] source/fsfe.org/about/groups.en.xhtml [10:17:10] source/fsfe.org/about/js-licences.en.xhtml [10:17:10] source/fsfe.org/about/mission.bg.xhtml [10:17:10] source/fsfe.org/about/mission.de.xhtml [10:17:10] source/fsfe.org/about/mission.el.xhtml [10:17:10] source/fsfe.org/about/mission.en.xhtml [10:17:10] source/fsfe.org/about/mission.es.xhtml [10:17:10] source/fsfe.org/about/mission.fi.xhtml [10:17:10] source/fsfe.org/about/mission.fr.xhtml [10:17:10] source/fsfe.org/about/mission.it.xhtml [10:17:10] source/fsfe.org/about/mission.nl.xhtml [10:17:10] source/fsfe.org/about/mission.pt.xhtml [10:17:10] source/fsfe.org/about/mission.sq.xhtml [10:17:10] source/fsfe.org/about/mission.tr.xhtml [10:17:10] source/fsfe.org/about/mission.uk.xhtml [10:17:10] source/fsfe.org/about/ourwork.en.xhtml [10:17:10] source/fsfe.org/about/ourwork.it.xhtml [10:17:10] source/fsfe.org/about/ourwork.nl.xhtml [10:17:10] source/fsfe.org/about/overview2010.de.xhtml [10:17:10] source/fsfe.org/about/overview2010.el.xhtml [10:17:10] source/fsfe.org/about/overview2010.en.xhtml [10:17:10] source/fsfe.org/about/principles.de.xhtml [10:17:10] source/fsfe.org/about/principles.en.xhtml [10:17:10] source/fsfe.org/about/principles.fr.xhtml [10:17:10] source/fsfe.org/about/principles.nl.xhtml [10:17:10] source/fsfe.org/about/principles.pt.xhtml [10:17:10] source/fsfe.org/about/principles.ru.xhtml [10:17:10] source/fsfe.org/about/statement-20201220.en.xhtml [10:17:10] source/fsfe.org/about/timeline.en.xhtml [10:17:10] source/fsfe.org/about/timeline.it.xhtml [10:17:10] source/fsfe.org/about/timeline.nl.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.de.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.en.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.es.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.fi.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.fr.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.nl.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.pt.xhtml [10:17:10] source/fsfe.org/about/transparency-commitment.sq.xhtml [10:17:10] source/fsfe.org/about/associates/associates.ar.xhtml [10:17:10] source/fsfe.org/about/associates/associates.en.xhtml [10:17:10] source/fsfe.org/about/associates/associates.es.xhtml [10:17:10] source/fsfe.org/about/associates/associates.fr.xhtml [10:17:10] source/fsfe.org/about/associates/associates.nl.xhtml [10:17:10] source/fsfe.org/about/associates/associates.pt.xhtml [10:17:10] source/fsfe.org/about/funds/2001.en.xhtml [10:17:10] source/fsfe.org/about/funds/2001.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2001.it.xhtml [10:17:10] source/fsfe.org/about/funds/2001.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2001.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2002.en.xhtml [10:17:10] source/fsfe.org/about/funds/2002.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2002.it.xhtml [10:17:10] source/fsfe.org/about/funds/2002.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2003.de.xhtml [10:17:10] source/fsfe.org/about/funds/2003.el.xhtml [10:17:10] source/fsfe.org/about/funds/2003.en.xhtml [10:17:10] source/fsfe.org/about/funds/2003.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2003.it.xhtml [10:17:10] source/fsfe.org/about/funds/2003.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2003.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2004.de.xhtml [10:17:10] source/fsfe.org/about/funds/2004.el.xhtml [10:17:10] source/fsfe.org/about/funds/2004.en.xhtml [10:17:10] source/fsfe.org/about/funds/2004.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2004.it.xhtml [10:17:10] source/fsfe.org/about/funds/2004.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2004.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2005.de.xhtml [10:17:10] source/fsfe.org/about/funds/2005.el.xhtml [10:17:10] source/fsfe.org/about/funds/2005.en.xhtml [10:17:10] source/fsfe.org/about/funds/2005.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2005.it.xhtml [10:17:10] source/fsfe.org/about/funds/2005.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2005.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2006.de.xhtml [10:17:10] source/fsfe.org/about/funds/2006.el.xhtml [10:17:10] source/fsfe.org/about/funds/2006.en.xhtml [10:17:10] source/fsfe.org/about/funds/2006.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2006.it.xhtml [10:17:10] source/fsfe.org/about/funds/2006.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2006.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2007.de.xhtml [10:17:10] source/fsfe.org/about/funds/2007.el.xhtml [10:17:10] source/fsfe.org/about/funds/2007.en.xhtml [10:17:10] source/fsfe.org/about/funds/2007.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2007.it.xhtml [10:17:10] source/fsfe.org/about/funds/2007.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2007.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2008.de.xhtml [10:17:10] source/fsfe.org/about/funds/2008.el.xhtml [10:17:10] source/fsfe.org/about/funds/2008.en.xhtml [10:17:10] source/fsfe.org/about/funds/2008.fr.xhtml [10:17:10] source/fsfe.org/about/funds/2008.it.xhtml [10:17:10] source/fsfe.org/about/funds/2008.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2008.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2009.el.xhtml [10:17:10] source/fsfe.org/about/funds/2009.en.xhtml [10:17:10] source/fsfe.org/about/funds/2009.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2009.ru.xhtml [10:17:10] source/fsfe.org/about/funds/2010.en.xhtml [10:17:10] source/fsfe.org/about/funds/2011.en.xhtml [10:17:10] source/fsfe.org/about/funds/2012.en.xhtml [10:17:10] source/fsfe.org/about/funds/2013.en.xhtml [10:17:10] source/fsfe.org/about/funds/2014.en.xhtml [10:17:10] source/fsfe.org/about/funds/2015.en.xhtml [10:17:10] source/fsfe.org/about/funds/2016.en.xhtml [10:17:10] source/fsfe.org/about/funds/2017.en.xhtml [10:17:10] source/fsfe.org/about/funds/2017.nl.xhtml [10:17:10] source/fsfe.org/about/funds/2018.en.xhtml [10:17:10] source/fsfe.org/about/funds/2019.en.xhtml [10:17:10] source/fsfe.org/about/funds/2020.en.xhtml [10:17:10] source/fsfe.org/about/funds/2021.en.xhtml [10:17:10] source/fsfe.org/about/funds/2022.en.xhtml [10:17:10] source/fsfe.org/about/funds/funds.de.xhtml [10:17:10] source/fsfe.org/about/funds/funds.el.xhtml [10:17:10] source/fsfe.org/about/funds/funds.en.xhtml [10:17:10] source/fsfe.org/about/funds/funds.es.xhtml [10:17:10] source/fsfe.org/about/funds/funds.fr.xhtml [10:17:10] source/fsfe.org/about/funds/funds.it.xhtml [10:17:10] source/fsfe.org/about/funds/funds.nl.xhtml [10:17:10] source/fsfe.org/about/funds/funds.ru.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.da.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.de.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.el.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.en.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.es.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.fr.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.hr.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.hu.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.it.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.nl.xhtml [10:17:10] source/fsfe.org/about/graphics/graphics.ru.xhtml [10:17:10] source/fsfe.org/about/graphics/sponsoring/sponsoring.da.xhtml [10:17:10] source/fsfe.org/about/graphics/sponsoring/sponsoring.de.xhtml [10:17:10] source/fsfe.org/about/graphics/sponsoring/sponsoring.el.xhtml [10:17:10] source/fsfe.org/about/graphics/sponsoring/sponsoring.en.xhtml [10:17:12] source/fsfe.org/about/graphics/sponsoring/sponsoring.fi.xhtml [10:17:12] source/fsfe.org/about/graphics/sponsoring/sponsoring.fr.xhtml [10:17:12] source/fsfe.org/about/graphics/sponsoring/sponsoring.it.xhtml [10:17:12] source/fsfe.org/about/graphics/sponsoring/sponsoring.nl.xhtml [10:17:12] source/fsfe.org/about/graphics/sponsoring/sponsoring.ru.xhtml [10:17:12] source/fsfe.org/about/history/doi.cs.xhtml [10:17:12] source/fsfe.org/about/history/doi.de.xhtml [10:17:12] source/fsfe.org/about/history/doi.el.xhtml [10:17:12] source/fsfe.org/about/history/doi.en.xhtml [10:17:12] source/fsfe.org/about/history/doi.fr.xhtml [10:17:12] source/fsfe.org/about/history/doi.it.xhtml [10:17:12] source/fsfe.org/about/history/doi.nl.xhtml [10:17:12] source/fsfe.org/about/history/doi.pt.xhtml [10:17:12] source/fsfe.org/about/history/preamble.cs.xhtml [10:17:12] source/fsfe.org/about/history/preamble.de.xhtml [10:17:12] source/fsfe.org/about/history/preamble.el.xhtml [10:17:12] source/fsfe.org/about/history/preamble.en.xhtml [10:17:12] source/fsfe.org/about/history/preamble.fr.xhtml [10:17:12] source/fsfe.org/about/history/preamble.it.xhtml [10:17:12] source/fsfe.org/about/history/preamble.nl.xhtml [10:17:12] source/fsfe.org/about/history/preamble.pt.xhtml [10:17:12] source/fsfe.org/about/jobs/index.en.xhtml [10:17:12] source/fsfe.org/about/jobs/internship.en.xhtml [10:17:12] source/fsfe.org/about/jobs/internship.fr.xhtml [10:17:12] source/fsfe.org/about/jobs/internship.it.xhtml [10:17:12] source/fsfe.org/about/legal/imprint.en.xhtml [10:17:12] source/fsfe.org/about/legal/imprint.fr.xhtml [10:17:12] source/fsfe.org/about/legal/imprint.it.xhtml [10:17:12] source/fsfe.org/about/legal/imprint.nl.xhtml [10:17:12] source/fsfe.org/about/legal/legal.en.xhtml [10:17:12] source/fsfe.org/about/legal/legal.es.xhtml [10:17:12] source/fsfe.org/about/legal/legal.fi.xhtml [10:17:12] source/fsfe.org/about/legal/legal.fr.xhtml [10:17:12] source/fsfe.org/about/legal/legal.it.xhtml [10:17:12] source/fsfe.org/about/legal/legal.nl.xhtml [10:17:12] source/fsfe.org/about/legal/legal.pt.xhtml [10:17:12] source/fsfe.org/about/people/index.de.xhtml [10:17:12] source/fsfe.org/about/people/index.en.xhtml [10:17:12] source/fsfe.org/about/people/index.es.xhtml [10:17:12] source/fsfe.org/about/people/index.it.xhtml [10:17:12] source/fsfe.org/about/people/index.nl.xhtml [10:17:12] source/fsfe.org/about/people/testimonials.de.xhtml [10:17:12] source/fsfe.org/about/people/testimonials.en.xhtml [10:17:12] source/fsfe.org/about/people/testimonials.it.xhtml [10:17:12] source/fsfe.org/about/people/testimonials.nl.xhtml [10:17:12] source/fsfe.org/about/people/albers/albers.de.xhtml [10:17:12] source/fsfe.org/about/people/albers/albers.en.xhtml [10:17:12] source/fsfe.org/about/people/albers/albers.nl.xhtml [10:17:12] source/fsfe.org/about/people/bakker/bakker.en.xhtml [10:17:12] source/fsfe.org/about/people/bakker/bakker.nl.xhtml [10:17:12] source/fsfe.org/about/people/ceballos/ceballos.en.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.de.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.el.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.en.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.fr.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.it.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.nl.xhtml [10:17:12] source/fsfe.org/about/people/gerloff/gerloff.ru.xhtml [10:17:12] source/fsfe.org/about/people/greve/cv.el.xhtml [10:17:12] source/fsfe.org/about/people/greve/cv.en.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.de.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.el.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.en.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.fr.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.it.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.nl.xhtml [10:17:12] source/fsfe.org/about/people/greve/greve.ru.xhtml [10:17:12] source/fsfe.org/about/people/interviews/cryptie.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/cryptie.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/gkotsopoulou.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/gkotsopoulou.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/grun.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/grun.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/lequertier.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/lequertier.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/mueller.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/mueller.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/ockers.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/ockers.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/snow.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/snow.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/weitzhofer.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/weitzhofer.it.xhtml [10:17:12] source/fsfe.org/about/people/interviews/zerolo.en.xhtml [10:17:12] source/fsfe.org/about/people/interviews/zerolo.it.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.de.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.el.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.en.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.it.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.nl.xhtml [10:17:12] source/fsfe.org/about/people/kirschner/kirschner.ru.xhtml [10:17:12] source/fsfe.org/about/people/ku/ku.en.xhtml [10:17:12] source/fsfe.org/about/people/lasota/lasota.en.xhtml [10:17:12] source/fsfe.org/about/people/mehl/mehl.de.xhtml [10:17:12] source/fsfe.org/about/people/mehl/mehl.en.xhtml [10:17:12] source/fsfe.org/about/people/mehl/mehl.nl.xhtml [10:17:12] source/fsfe.org/about/people/partsafyllidou/partsafyllidou.en.xhtml [10:17:12] source/fsfe.org/about/people/repentinus/repentinus.de.xhtml [10:17:12] source/fsfe.org/about/people/repentinus/repentinus.en.xhtml [10:17:12] source/fsfe.org/about/people/repentinus/repentinus.nl.xhtml [10:17:12] source/fsfe.org/about/people/rikken/rikken.en.xhtml [10:17:12] source/fsfe.org/about/people/roussos/roussos.en.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.el.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.en.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.fr.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.nb.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.nl.xhtml [10:17:12] source/fsfe.org/about/people/roy/roy.ru.xhtml [10:17:12] source/fsfe.org/about/people/sander/sander.en.xhtml [10:17:12] source/fsfe.org/about/people/tobiasd/tobiasd.en.xhtml [10:17:12] source/fsfe.org/about/softwarefreedom/testimonials.en.xhtml [10:17:12] source/fsfe.org/activities/activities.de.xhtml [10:17:12] source/fsfe.org/activities/activities.en.xhtml [10:17:12] source/fsfe.org/activities/activities.es.xhtml [10:17:12] source/fsfe.org/activities/activities.fr.xhtml [10:17:12] source/fsfe.org/activities/activities.it.xhtml [10:17:12] source/fsfe.org/activities/activities.nl.xhtml [10:17:12] source/fsfe.org/activities/activities.pt.xhtml [10:17:12] source/fsfe.org/activities/activities.tr.xhtml [10:17:12] source/fsfe.org/activities/awareness.en.xhtml [10:17:12] source/fsfe.org/activities/awareness.es.xhtml [10:17:12] source/fsfe.org/activities/awareness.it.xhtml [10:17:12] source/fsfe.org/activities/awareness.nl.xhtml [10:17:12] source/fsfe.org/activities/awareness.tr.xhtml [10:17:12] source/fsfe.org/activities/legal.en.xhtml [10:17:12] source/fsfe.org/activities/legal.es.xhtml [10:17:12] source/fsfe.org/activities/legal.it.xhtml [10:17:12] source/fsfe.org/activities/legal.nl.xhtml [10:17:12] source/fsfe.org/activities/legal.tr.xhtml [10:17:12] source/fsfe.org/activities/policy.en.xhtml [10:17:12] source/fsfe.org/activities/policy.es.xhtml [10:17:12] source/fsfe.org/activities/policy.it.xhtml [10:17:12] source/fsfe.org/activities/policy.nl.xhtml [10:17:12] source/fsfe.org/activities/policy.tr.xhtml [10:17:12] source/fsfe.org/activities/15years/15years.en.xhtml [10:17:12] source/fsfe.org/activities/15years/15years.it.xhtml [10:17:12] source/fsfe.org/activities/15years/15years.nl.xhtml [10:17:12] source/fsfe.org/activities/15years/15years.sq.xhtml [10:17:12] source/fsfe.org/activities/20years/20years.de.xhtml [10:17:12] source/fsfe.org/activities/20years/20years.en.xhtml [10:17:12] source/fsfe.org/activities/20years/20years.es.xhtml [10:17:12] source/fsfe.org/activities/20years/20years.it.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/book-reviews.en.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/book-reviews.it.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/index.de.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/index.en.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/index.it.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/index.pt.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/letters.en.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/movie.en.xhtml [10:17:12] source/fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.en.xhtml [10:17:12] source/fsfe.org/activities/agnula/agnula.ca.xhtml [10:17:12] source/fsfe.org/activities/agnula/agnula.de.xhtml [10:17:12] source/fsfe.org/activities/agnula/agnula.en.xhtml [10:17:12] source/fsfe.org/activities/agnula/agnula.it.xhtml [10:17:12] source/fsfe.org/activities/agnula/agnula.nn.xhtml [10:17:12] source/fsfe.org/activities/agnula/deliverable-1.3.1.en.xhtml [10:17:12] source/fsfe.org/activities/agnula/java.en.xhtml [10:17:12] source/fsfe.org/activities/agnula/license-faq.en.xhtml [10:17:12] source/fsfe.org/activities/agnula/license-faq.it.xhtml [10:17:12] source/fsfe.org/activities/agnula/license.en.xhtml [10:17:12] source/fsfe.org/activities/android/android.ca.xhtml [10:17:12] source/fsfe.org/activities/android/android.da.xhtml [10:17:12] source/fsfe.org/activities/android/android.de.xhtml [10:17:12] source/fsfe.org/activities/android/android.el.xhtml [10:17:12] source/fsfe.org/activities/android/android.en.xhtml [10:17:12] source/fsfe.org/activities/android/android.es.xhtml [10:17:12] source/fsfe.org/activities/android/android.fr.xhtml [10:17:12] source/fsfe.org/activities/android/android.it.xhtml [10:17:12] source/fsfe.org/activities/android/android.nl.xhtml [10:17:12] source/fsfe.org/activities/android/android.pt.xhtml [10:17:12] source/fsfe.org/activities/android/android.ru.xhtml [10:17:12] source/fsfe.org/activities/android/android.sq.xhtml [10:17:12] source/fsfe.org/activities/android/android.sr.xhtml [10:17:12] source/fsfe.org/activities/android/android.tr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.da.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.el.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.en.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.es.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.fr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.it.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.nl.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.sq.xhtml [10:17:12] source/fsfe.org/activities/android/artwork.tr.xhtml [10:17:12] source/fsfe.org/activities/android/flashingdevices.en.xhtml [10:17:12] source/fsfe.org/activities/android/flashingdevices.fr.xhtml [10:17:12] source/fsfe.org/activities/android/flashingdevices.it.xhtml [10:17:12] source/fsfe.org/activities/android/help.de.xhtml [10:17:12] source/fsfe.org/activities/android/help.el.xhtml [10:17:12] source/fsfe.org/activities/android/help.en.xhtml [10:17:12] source/fsfe.org/activities/android/help.it.xhtml [10:17:12] source/fsfe.org/activities/android/help.nl.xhtml [10:17:12] source/fsfe.org/activities/android/help.ru.xhtml [10:17:12] source/fsfe.org/activities/android/help.sq.xhtml [10:17:12] source/fsfe.org/activities/android/help.tr.xhtml [10:17:12] source/fsfe.org/activities/android/is-flashing-legal.en.xhtml [10:17:12] source/fsfe.org/activities/android/is-flashing-legal.it.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.da.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.de.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.el.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.en.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.es.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.fr.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.it.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.nl.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.ru.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.sq.xhtml [10:17:12] source/fsfe.org/activities/android/liberate.tr.xhtml [10:17:12] source/fsfe.org/activities/android/sustainability.en.xhtml [10:17:12] source/fsfe.org/activities/android/workshops.en.xhtml [10:17:12] source/fsfe.org/activities/android/workshops.sq.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.de.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.el.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.en.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.es.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.fr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.it.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.sq.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A1.tr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.de.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.el.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.en.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.es.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.fr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.it.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.sq.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/DIN_A7.tr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:12] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:12] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.xhtml [10:17:12] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.en.xhtml [10:17:12] source/fsfe.org/activities/bgw/bgw.de.xhtml [10:17:12] source/fsfe.org/activities/bgw/bgw.en.xhtml [10:17:12] source/fsfe.org/activities/bgw/bgw.fr.xhtml [10:17:12] source/fsfe.org/activities/conf-events/conf-events.en.xhtml [10:17:12] source/fsfe.org/activities/conf-events/report-cccamp23.en.xhtml [10:17:12] source/fsfe.org/activities/deviceneutrality/index.de.xhtml [10:17:12] source/fsfe.org/activities/deviceneutrality/index.en.xhtml [10:17:12] source/fsfe.org/activities/deviceneutrality/index.nl.xhtml [10:17:12] source/fsfe.org/activities/dma/dma.de.xhtml [10:17:12] source/fsfe.org/activities/dma/dma.en.xhtml [10:17:12] source/fsfe.org/activities/dma/dma.nl.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.ca.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.de.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.el.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.en.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.es.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.fr.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.it.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.nl.xhtml [10:17:12] source/fsfe.org/activities/drm/drm.pt.xhtml [10:17:12] source/fsfe.org/activities/drm/open-letter-ec-drm-html.en.xhtml [10:17:12] source/fsfe.org/activities/drm/sony-rootkit-fiasco.el.xhtml [10:17:12] source/fsfe.org/activities/drm/sony-rootkit-fiasco.en.xhtml [10:17:12] source/fsfe.org/activities/drm/sony-rootkit-fiasco.es.xhtml [10:17:12] source/fsfe.org/activities/drm/sony-rootkit-fiasco.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/digitalomat.en.xhtml [10:17:12] source/fsfe.org/activities/elections/digitalomat.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/digitalomat.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/freedomvote.en.xhtml [10:17:12] source/fsfe.org/activities/elections/freedomvote.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/freedomvote.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/index.en.xhtml [10:17:12] source/fsfe.org/activities/elections/index.es.xhtml [10:17:12] source/fsfe.org/activities/elections/index.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/letspromise.en.xhtml [10:17:12] source/fsfe.org/activities/elections/letspromise.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.el.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.ru.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/example-questions.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/example-questions.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/example-questions.fr.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/example-questions.it.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/example-questions.nl.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.en.xhtml [10:17:12] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.en.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd-fs.cs.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd-fs.en.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd-fs.es.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd-fs.fr.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd.cs.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd.en.xhtml [10:17:12] source/fsfe.org/activities/eucd/eucd.it.xhtml [10:17:12] source/fsfe.org/activities/eura-slovakia/eura-slovakia.en.xhtml [10:17:12] source/fsfe.org/activities/eura-slovakia/eura-slovakia.nl.xhtml [10:17:12] source/fsfe.org/activities/fla/fiduciary.en.xhtml [10:17:12] source/fsfe.org/activities/fla/fla.en.xhtml [10:17:12] source/fsfe.org/activities/foss4smes/foss4smes.en.xhtml [10:17:12] source/fsfe.org/activities/foss4smes/foss4smes.nl.xhtml [10:17:12] source/fsfe.org/activities/fp6/focal.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/fp6.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/lafis.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/more-support.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/reasoning.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/reasoning.pt.xhtml [10:17:12] source/fsfe.org/activities/fp6/recommendation.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/recommendation.pt.xhtml [10:17:12] source/fsfe.org/activities/fp6/supporting-parties.en.xhtml [10:17:12] source/fsfe.org/activities/fp6/supporting-parties.pt.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.de.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.el.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.en.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.fr.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.it.xhtml [10:17:12] source/fsfe.org/activities/fp7/fp7.nl.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.cs.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.de.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.el.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.en.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.es.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.fr.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.it.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.nl.xhtml [10:17:12] source/fsfe.org/activities/gbn/gbn.pt.xhtml [10:17:12] source/fsfe.org/activities/gplv3/bangalore-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.el.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-summaries.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-summaries.it.xhtml [10:17:12] source/fsfe.org/activities/gplv3/barcelona-summaries.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/brussels-rms-transcript.el.xhtml [10:17:12] source/fsfe.org/activities/gplv3/brussels-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/brussels-rms-transcript.fr.xhtml [10:17:12] source/fsfe.org/activities/gplv3/brussels-rms-transcript.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/diff-draft1-draft2.de.xhtml [10:17:12] source/fsfe.org/activities/gplv3/diff-draft1-draft2.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/diff-draft2-draft3.el.xhtml [10:17:12] source/fsfe.org/activities/gplv3/diff-draft2-draft3.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/diff-gplv2-draft2.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/drm-and-gplv3.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.ca.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.de.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.es.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.fr.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.it.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/europe-gplv3-conference.pt.xhtml [10:17:12] source/fsfe.org/activities/gplv3/events.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/fisl-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/fisl-rms-transcript.es.xhtml [10:17:12] source/fsfe.org/activities/gplv3/fisl-rms-transcript.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3-torino.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3-torino.es.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3-torino.it.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3-torino.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.ca.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.de.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.el.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.es.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.fr.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.it.xhtml [10:17:12] source/fsfe.org/activities/gplv3/gplv3.nl.xhtml [10:17:12] source/fsfe.org/activities/gplv3/links.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/patents-and-gplv3.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/timeline.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/tokyo-ciaran-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.el.xhtml [10:17:12] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/topics.en.xhtml [10:17:12] source/fsfe.org/activities/gplv3/torino-rms-transcript.en.xhtml [10:17:12] source/fsfe.org/activities/igf/a2k.de.xhtml [10:17:12] source/fsfe.org/activities/igf/a2k.el.xhtml [10:17:12] source/fsfe.org/activities/igf/a2k.en.xhtml [10:17:12] source/fsfe.org/activities/igf/a2k.fr.xhtml [10:17:12] source/fsfe.org/activities/igf/a2k.nl.xhtml [10:17:12] source/fsfe.org/activities/igf/dcos.el.xhtml [10:17:12] source/fsfe.org/activities/igf/dcos.en.xhtml [10:17:12] source/fsfe.org/activities/igf/dcos.fr.xhtml [10:17:12] source/fsfe.org/activities/igf/dcos.nl.xhtml [10:17:12] source/fsfe.org/activities/igf/igf.el.xhtml [10:17:12] source/fsfe.org/activities/igf/igf.en.xhtml [10:17:12] source/fsfe.org/activities/igf/igf.fr.xhtml [10:17:12] source/fsfe.org/activities/igf/igf.nl.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.ca.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.de.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.el.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.en.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.fr.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.it.xhtml [10:17:12] source/fsfe.org/activities/igf/sovsoft.nl.xhtml [10:17:12] source/fsfe.org/activities/igf/wgig.de.xhtml [10:17:12] source/fsfe.org/activities/igf/wgig.el.xhtml [10:17:12] source/fsfe.org/activities/igf/wgig.en.xhtml [10:17:12] source/fsfe.org/activities/igf/wgig.nl.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/index.de.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/index.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/index.fr.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/index.it.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/index.nl.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/artwork/artwork.el.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/artwork/artwork.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/artwork/artwork.it.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/artwork/artwork.nl.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/artwork/artwork.sq.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/report/report_2023.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/report/report_2024.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.de.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.el.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.es.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.fr.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.it.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.nl.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.pt.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/gallery.sq.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.en.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.it.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.nl.xhtml [10:17:12] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.sq.xhtml [10:17:12] source/fsfe.org/activities/ipred2/ipred2.de.xhtml [10:17:12] source/fsfe.org/activities/ipred2/ipred2.el.xhtml [10:17:12] source/fsfe.org/activities/ipred2/ipred2.en.xhtml [10:17:12] source/fsfe.org/activities/ipred2/ipred2.fr.xhtml [10:17:12] source/fsfe.org/activities/ipred2/ipred2.nl.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.de.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.el.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.en.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.es.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.it.xhtml [10:17:12] source/fsfe.org/activities/ipred2/letter-april-2007.nl.xhtml [10:17:12] source/fsfe.org/activities/licence-questions/licence-questions.en.xhtml [10:17:12] source/fsfe.org/activities/ln/application-confirm.en.xhtml [10:17:12] source/fsfe.org/activities/ln/application-success.en.xhtml [10:17:12] source/fsfe.org/activities/ln/application.en.xhtml [10:17:12] source/fsfe.org/activities/ln/council.en.xhtml [10:17:12] source/fsfe.org/activities/ln/llw-conf.en.xhtml [10:17:12] source/fsfe.org/activities/ln/llw-past.de.xhtml [10:17:12] source/fsfe.org/activities/ln/llw-past.en.xhtml [10:17:12] source/fsfe.org/activities/ln/llw.de.xhtml [10:17:12] source/fsfe.org/activities/ln/llw.en.xhtml [10:17:12] source/fsfe.org/activities/ln/ln-procedures.en.xhtml [10:17:12] source/fsfe.org/activities/ln/ln.de.xhtml [10:17:12] source/fsfe.org/activities/ln/ln.en.xhtml [10:17:12] source/fsfe.org/activities/ln/memberlist-confirm.en.xhtml [10:17:12] source/fsfe.org/activities/ln/memberlist-success.en.xhtml [10:17:12] source/fsfe.org/activities/ln/memberlist.en.xhtml [10:17:12] source/fsfe.org/activities/ln/modpolicy.en.xhtml [10:17:12] source/fsfe.org/activities/ln/rules.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/contact.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/contact.de.xhtml [10:17:12] source/fsfe.org/activities/mankind/contact.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/contact.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/done.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/done.de.xhtml [10:17:12] source/fsfe.org/activities/mankind/done.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/done.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/help.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/help.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/help.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/links.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/links.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/links.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/mankind.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/mankind.de.xhtml [10:17:12] source/fsfe.org/activities/mankind/mankind.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/mankind.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/press.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/press.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/press.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/support.ca.xhtml [10:17:12] source/fsfe.org/activities/mankind/support.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/support.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/index.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/index.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/press-release.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/press-release.es.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/press-release.fr.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/conclusion.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/contact.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/ethical.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/facts.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/independence.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/origin.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/plan.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/social.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/support.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/technical.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/threats.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/unesco.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/why1.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/why2.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/workdone.en.xhtml [10:17:12] source/fsfe.org/activities/mankind/lsm2002/slides/workinprogress.en.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.ca.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.de.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.en.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.es.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.fr.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.it.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/article-20060421.nl.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/background.el.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/background.en.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/background.fr.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/background.it.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/background.nl.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/intervention-20040930.en.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.el.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.en.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.fr.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.it.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.nl.xhtml [10:17:12] source/fsfe.org/activities/ms-vs-eu/timeline.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.de.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.el.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.es.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.fr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.it.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.nl.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.sr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.el.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.fr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.it.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.nl.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-interoperability.de.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-interoperability.el.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-interoperability.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-interoperability.fr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-interoperability.nl.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.el.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.fr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.it.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.nl.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.sr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.de.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.el.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.en.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.es.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.fr.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.it.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.mk.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.nl.xhtml [10:17:12] source/fsfe.org/activities/msooxml/msooxml-questions.pt.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml-questions.sr.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml.en.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml.es.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml.it.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml.nl.xhtml [10:17:13] source/fsfe.org/activities/msooxml/msooxml.sq.xhtml [10:17:13] source/fsfe.org/activities/ngi/ngi-past.en.xhtml [10:17:13] source/fsfe.org/activities/ngi/ngi.de.xhtml [10:17:13] source/fsfe.org/activities/ngi/ngi.en.xhtml [10:17:13] source/fsfe.org/activities/ngi/ngi.it.xhtml [10:17:13] source/fsfe.org/activities/nledu/nledu.de.xhtml [10:17:13] source/fsfe.org/activities/nledu/nledu.en.xhtml [10:17:13] source/fsfe.org/activities/nledu/nledu.it.xhtml [10:17:13] source/fsfe.org/activities/nledu/nledu.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/bug-report-uk.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/bug-report.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.hr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/buglist.sq.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/follow-up.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/guideline.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.et.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.hr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.pl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.ro.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.sq.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/letter.sv.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fi.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.sv.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.ar.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.cs.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.hr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.pl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfreaders.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfsprint.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfsprint.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfsprint.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/pdfsprint.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition-error.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition-error.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition-success.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition-success.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition-success.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.ar.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.cs.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.de.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.el.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.en.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.es.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.et.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.fr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.hr.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.it.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.nl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.pl.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.pt.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.ro.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.ru.xhtml [10:17:13] source/fsfe.org/activities/pdfreaders/petition.sv.xhtml [10:17:13] source/fsfe.org/activities/publiccode/bea.de.xhtml [10:17:13] source/fsfe.org/activities/publiccode/brochure.de.xhtml [10:17:13] source/fsfe.org/activities/publiccode/brochure.en.xhtml [10:17:13] source/fsfe.org/activities/publiccode/brochure.it.xhtml [10:17:13] source/fsfe.org/activities/publiccode/get-active.en.xhtml [10:17:13] source/fsfe.org/activities/publiccode/get-active.es.xhtml [10:17:13] source/fsfe.org/activities/publiccode/get-active.it.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.de.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.en.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.es.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.fr.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.it.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.nl.xhtml [10:17:13] source/fsfe.org/activities/publiccode/publiccode.tr.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.de.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.el.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.en.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.fr.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.nl.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/radiodirective.tr.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/statement.de.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/statement.en.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/statement.es.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/statement.it.xhtml [10:17:13] source/fsfe.org/activities/radiodirective/statement.nl.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.de.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.el.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.en.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.es.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.fr.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.it.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.nl.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.pt.xhtml [10:17:13] source/fsfe.org/activities/routers/routers.tr.xhtml [10:17:13] source/fsfe.org/activities/routers/timeline.de.xhtml [10:17:13] source/fsfe.org/activities/routers/timeline.en.xhtml [10:17:13] source/fsfe.org/activities/routers/timeline.nl.xhtml [10:17:13] source/fsfe.org/activities/self/self.de.xhtml [10:17:13] source/fsfe.org/activities/self/self.el.xhtml [10:17:13] source/fsfe.org/activities/self/self.en.xhtml [10:17:13] source/fsfe.org/activities/self/self.fr.xhtml [10:17:13] source/fsfe.org/activities/self/self.it.xhtml [10:17:13] source/fsfe.org/activities/self/self.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade-register.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade-register.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade-register.mk.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade-register.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.de.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.es.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.fr.xhtml [10:17:13] source/fsfe.org/activities/stacs/belgrade.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/london-register.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/london-register.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/london-register.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/london.de.xhtml [10:17:13] source/fsfe.org/activities/stacs/london.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/london.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/london.fr.xhtml [10:17:13] source/fsfe.org/activities/stacs/london.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.de.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.es.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.fr.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.it.xhtml [10:17:13] source/fsfe.org/activities/stacs/stacs.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-belgrade.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-belgrade.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-belgrade.mk.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-belgrade.nl.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-london.el.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-london.en.xhtml [10:17:13] source/fsfe.org/activities/stacs/tmpl-london.nl.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.ca.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/background.ru.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.ca.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/documents.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/fsfe-patstrat-response.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/how-the-eu-patent-system-works.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040510.nl.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040531.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040531.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040531.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040531.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040706.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040706.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040706.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040706.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040706.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040802.nl.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040906.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040906.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040906.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20040906.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041004.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041004.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041004.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041004.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041004.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041101.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041101.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041101.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041101.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041206.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041206.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041206.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041206.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20041206.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050103.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050103.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050103.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050103.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050103.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050207.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050307.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050307.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050307.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050307.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050307.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050405.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050405.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050405.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050405.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050502.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050502.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050502.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050502.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050502.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050606.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050606.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050606.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050606.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20050606.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20101222.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/letter-20110406.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/memorandum.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/memorandum.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/memorandum.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/memorandum.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/nortel.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/novell-cptn.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/second-reading-bullets.nl.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.ca.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.es.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/status.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.ca.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.da.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.de.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.el.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.it.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.nl.xhtml [10:17:13] source/fsfe.org/activities/swpat/swpat.ru.xhtml [10:17:13] source/fsfe.org/activities/swpat/current/model-letter-companies.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/current/model-letter-companies.fr.xhtml [10:17:13] source/fsfe.org/activities/swpat/current/unitary-patent.en.xhtml [10:17:13] source/fsfe.org/activities/swpat/current/unitary-patent.fi.xhtml [10:17:13] source/fsfe.org/activities/swpat/current/unitary-patent.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool1.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool1.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool1.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool2.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool2.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool2.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool3.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool3.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool3.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool4.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool4.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool4.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool5.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool5.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool5.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool6.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool6.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool6.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool6.sv.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool7.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool7.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool7.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool7.sv.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool8.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool8.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool8.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tagatschool8.sv.xhtml [10:17:13] source/fsfe.org/activities/tgs/tgs.de.xhtml [10:17:13] source/fsfe.org/activities/tgs/tgs.en.xhtml [10:17:13] source/fsfe.org/activities/tgs/tgs.fr.xhtml [10:17:13] source/fsfe.org/activities/tgs/tgs.sv.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.de.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.en.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.es.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.fr.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.it.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-confirm.nl.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.de.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.en.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.es.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.fr.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.it.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/application-success.nl.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.de.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.el.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.en.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.fr.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.it.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.nl.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.de.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.en.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.es.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.fr.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.it.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/individual-signatures.nl.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/informationmaterial.de.xhtml [10:17:13] source/fsfe.org/activities/upcyclingandroid/informationmaterial.el.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/informationmaterial.en.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/informationmaterial.es.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/informationmaterial.fr.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/informationmaterial.it.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.en.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.it.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.ca.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.de.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.el.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.en.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.es.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.fr.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.it.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.nl.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.pl.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/openletter.pt.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.el.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.en.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.es.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.fr.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.it.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.nl.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.tr.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.de.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.en.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.es.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.fr.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.it.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.nl.xhtml [10:17:15] source/fsfe.org/activities/upcyclingandroid/workshops.tr.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.da.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.de.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.el.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.en.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.fr.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.it.xhtml [10:17:15] source/fsfe.org/activities/whyfs/whyfs.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/fser.de.xhtml [10:17:15] source/fsfe.org/activities/wipo/fser.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/fser.it.xhtml [10:17:15] source/fsfe.org/activities/wipo/fser.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.de.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.it.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/iprip.pt.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050413.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050415.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050620.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050721.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050930.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050930.fr.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20050930.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060223.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060223.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060223.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060628.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060628.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060628.fr.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20060628.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20070928.de.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20070928.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20070928.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20070928.it.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20070928.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090324.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090325.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090327.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090420-01.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090420-02.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090430-01.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090430-01.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090430-02.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090430-02.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090501.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20090501.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100125-01.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100125-02.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100125-03.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100125.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100127-01.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20100127-02.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101013.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101013.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101013.fr.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101013.pt.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101124-01.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101124-01.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101124-02.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/statement-20101124-02.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.de.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.es.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.fr.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.it.xhtml [10:17:15] source/fsfe.org/activities/wipo/wipo.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.de.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.el.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.en.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.es.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.fr.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.hu.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.it.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.nl.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.pt.xhtml [10:17:15] source/fsfe.org/activities/wipo/wiwo.ru.xhtml [10:17:15] source/fsfe.org/activities/wsis/cs-benchmarks-03-11-14.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/debriefing-geneva.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/debriefing-paris.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/event-03-12-10.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/fs.cs.xhtml [10:17:15] source/fsfe.org/activities/wsis/fs.de.xhtml [10:17:15] source/fsfe.org/activities/wsis/fs.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/fs.fi.xhtml [10:17:15] source/fsfe.org/activities/wsis/fs.ru.xhtml [10:17:15] source/fsfe.org/activities/wsis/issues.de.xhtml [10:17:15] source/fsfe.org/activities/wsis/issues.el.xhtml [10:17:15] source/fsfe.org/activities/wsis/issues.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/issues.nl.xhtml [10:17:15] source/fsfe.org/activities/wsis/ps-20030923.de.xhtml [10:17:15] source/fsfe.org/activities/wsis/ps-20030923.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/ps-20030923.it.xhtml [10:17:15] source/fsfe.org/activities/wsis/ps-20030923.nl.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis-and-software.de.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis-and-software.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis-and-software.nl.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis.en.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis.es.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis.it.xhtml [10:17:15] source/fsfe.org/activities/wsis/wsis.nl.xhtml [10:17:15] source/fsfe.org/activities/yh4f/faq.en.xhtml [10:17:15] source/fsfe.org/activities/yh4f/index.en.xhtml [10:17:15] source/fsfe.org/activities/yh4f/jury.en.xhtml [10:17:15] source/fsfe.org/activities/yh4f/media.en.xhtml [10:17:15] source/fsfe.org/activities/yh4f/register-confirm.en.xhtml [10:17:15] source/fsfe.org/activities/yh4f/register-success.en.xhtml [10:17:15] source/fsfe.org/activities/zooom/zooom.de.xhtml [10:17:15] source/fsfe.org/activities/zooom/zooom.en.xhtml [10:17:15] source/fsfe.org/contact/email-updates.en.xhtml [10:17:15] source/fsfe.org/contact/email-updates.it.xhtml [10:17:15] source/fsfe.org/contact/projects-call/projects-call.en.xhtml [10:17:15] source/fsfe.org/contact/projects-call/projects-call.it.xhtml [10:17:15] source/fsfe.org/contact/projects-call/projects-call.nl.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-confirm.en.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-confirm.it.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-confirm.nl.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-success.en.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-success.it.xhtml [10:17:15] source/fsfe.org/contact/projects-call/submission-success.nl.xhtml [10:17:15] source/fsfe.org/contribute/contribute.bg.xhtml [10:17:15] source/fsfe.org/contribute/contribute.de.xhtml [10:17:15] source/fsfe.org/contribute/contribute.en.xhtml [10:17:15] source/fsfe.org/contribute/contribute.es.xhtml [10:17:15] source/fsfe.org/contribute/contribute.fi.xhtml [10:17:15] source/fsfe.org/contribute/contribute.fr.xhtml [10:17:15] source/fsfe.org/contribute/contribute.it.xhtml [10:17:15] source/fsfe.org/contribute/contribute.nl.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.en.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.es.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.fr.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.it.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.nl.xhtml [10:17:15] source/fsfe.org/contribute/getyourgraphic.sq.xhtml [10:17:15] source/fsfe.org/contribute/promotion-materials-archive.de.xhtml [10:17:15] source/fsfe.org/contribute/promotion-materials-archive.en.xhtml [10:17:15] source/fsfe.org/contribute/promotion-materials-archive.fr.xhtml [10:17:15] source/fsfe.org/contribute/promotion-materials-archive.nl.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-freebie.en.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-ordererror.de.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-ordererror.en.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-ordererror.fr.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-ordererror.nl.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-ordererror.sq.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-orderthanks.de.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-orderthanks.en.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-orderthanks.fr.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-orderthanks.nl.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword-orderthanks.sq.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword.en.xhtml [10:17:15] source/fsfe.org/contribute/spreadtheword.it.xhtml [10:17:15] source/fsfe.org/contribute/advocacy/cwfs.en.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.cs.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.de.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.el.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.en.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.es.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.fr.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.it.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.nl.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.pt.xhtml [10:17:15] source/fsfe.org/contribute/designers/designers.ru.xhtml [10:17:15] source/fsfe.org/contribute/designers/styleguide.el.xhtml [10:17:15] source/fsfe.org/contribute/designers/styleguide.en.xhtml [10:17:15] source/fsfe.org/contribute/designers/styleguide.fr.xhtml [10:17:15] source/fsfe.org/contribute/designers/styleguide.it.xhtml [10:17:15] source/fsfe.org/contribute/editors/editorial-guidelines.en.xhtml [10:17:15] source/fsfe.org/contribute/editors/editorial-guidelines.it.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.cs.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.de.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.el.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.en.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.fr.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.it.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.nl.xhtml [10:17:15] source/fsfe.org/contribute/editors/editors.pt.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.bg.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.de.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.el.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.en.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.es.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.et.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.fi.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.fr.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.it.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.nb.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.nl.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.nn.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.pl.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.pt.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.ru.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.sq.xhtml [10:17:15] source/fsfe.org/contribute/translators/translators.sv.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.bg.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.ca.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.da.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.de.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.el.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.en.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.es.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.et.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.fi.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.fr.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.hu.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.it.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.nb.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.nl.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.pl.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.pt.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.ru.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.sq.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.sv.xhtml [10:17:15] source/fsfe.org/contribute/translators/wordlist.tr.xhtml [10:17:15] source/fsfe.org/contribute/web/features.en.xhtml [10:17:15] source/fsfe.org/contribute/web/web.de.xhtml [10:17:15] source/fsfe.org/contribute/web/web.en.xhtml [10:17:15] source/fsfe.org/contribute/web/web.fr.xhtml [10:17:15] source/fsfe.org/contribute/web/web.nl.xhtml [10:17:15] source/fsfe.org/contribute/web/web.sq.xhtml [10:17:15] source/fsfe.org/donate/donate.de.xhtml [10:17:15] source/fsfe.org/donate/donate.en.xhtml [10:17:15] source/fsfe.org/donate/donate.es.xhtml [10:17:15] source/fsfe.org/donate/donate.fr.xhtml [10:17:15] source/fsfe.org/donate/donate.it.xhtml [10:17:15] source/fsfe.org/donate/donate.nl.xhtml [10:17:15] source/fsfe.org/donate/germany.de.xhtml [10:17:15] source/fsfe.org/donate/hardware.de.xhtml [10:17:15] source/fsfe.org/donate/hardware.en.xhtml [10:17:15] source/fsfe.org/donate/hardware.es.xhtml [10:17:15] source/fsfe.org/donate/hardware.it.xhtml [10:17:15] source/fsfe.org/donate/hardware.nl.xhtml [10:17:15] source/fsfe.org/donate/hardware.sq.xhtml [10:17:15] source/fsfe.org/donate/letter-20041209.de.xhtml [10:17:15] source/fsfe.org/donate/letter-20041209.el.xhtml [10:17:15] source/fsfe.org/donate/letter-20041209.en.xhtml [10:17:15] source/fsfe.org/donate/letter-20041209.it.xhtml [10:17:15] source/fsfe.org/donate/letter-2009.de.xhtml [10:17:15] source/fsfe.org/donate/letter-2009.el.xhtml [10:17:15] source/fsfe.org/donate/letter-2009.en.xhtml [10:17:15] source/fsfe.org/donate/letter-2009.fr.xhtml [10:17:15] source/fsfe.org/donate/letter-2009.it.xhtml [10:17:15] source/fsfe.org/donate/letter-2011.en.xhtml [10:17:15] source/fsfe.org/donate/luxembourg.fr.xhtml [10:17:15] source/fsfe.org/donate/netherlands.nl.xhtml [10:17:15] source/fsfe.org/donate/payment.en.xhtml [10:17:15] source/fsfe.org/donate/switzerland.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2001.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2002.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2003.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2004.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2005.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2006.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2007.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2008.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2009.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.cs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2010.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2011.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.ru.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2012.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2013.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2014.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2015.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2016.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2017.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2018.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2018.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2018.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2018.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2018.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2019.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2019.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2019.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2019.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2019.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2020.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2021.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2022.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2023.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus-2024.sq.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.bs.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.de.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.el.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.en.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.fi.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.fr.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.it.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.nl.xhtml [10:17:15] source/fsfe.org/donate/thankgnus.sq.xhtml [10:17:15] source/fsfe.org/donate/thankyou.de.xhtml [10:17:15] source/fsfe.org/donate/thankyou.el.xhtml [10:17:15] source/fsfe.org/donate/thankyou.en.xhtml [10:17:15] source/fsfe.org/donate/thankyou.es.xhtml [10:17:15] source/fsfe.org/donate/thankyou.fr.xhtml [10:17:15] source/fsfe.org/donate/thankyou.it.xhtml [10:17:15] source/fsfe.org/donate/thankyou.nl.xhtml [10:17:15] source/fsfe.org/donate/thankyou.ru.xhtml [10:17:15] source/fsfe.org/donate/thankyou.sq.xhtml [10:17:15] source/fsfe.org/error/400.de.xhtml [10:17:15] source/fsfe.org/error/400.en.xhtml [10:17:15] source/fsfe.org/error/400.es.xhtml [10:17:15] source/fsfe.org/error/400.fr.xhtml [10:17:15] source/fsfe.org/error/400.it.xhtml [10:17:15] source/fsfe.org/error/400.nl.xhtml [10:17:15] source/fsfe.org/error/400.sq.xhtml [10:17:15] source/fsfe.org/error/401.de.xhtml [10:17:15] source/fsfe.org/error/401.en.xhtml [10:17:15] source/fsfe.org/error/401.es.xhtml [10:17:15] source/fsfe.org/error/401.fr.xhtml [10:17:15] source/fsfe.org/error/401.it.xhtml [10:17:15] source/fsfe.org/error/401.nl.xhtml [10:17:15] source/fsfe.org/error/401.sq.xhtml [10:17:15] source/fsfe.org/error/403.de.xhtml [10:17:15] source/fsfe.org/error/403.en.xhtml [10:17:15] source/fsfe.org/error/403.es.xhtml [10:17:15] source/fsfe.org/error/403.fr.xhtml [10:17:15] source/fsfe.org/error/403.it.xhtml [10:17:15] source/fsfe.org/error/403.nl.xhtml [10:17:15] source/fsfe.org/error/403.sq.xhtml [10:17:15] source/fsfe.org/error/404.de.xhtml [10:17:15] source/fsfe.org/error/404.en.xhtml [10:17:15] source/fsfe.org/error/404.es.xhtml [10:17:15] source/fsfe.org/error/404.fr.xhtml [10:17:15] source/fsfe.org/error/404.it.xhtml [10:17:15] source/fsfe.org/error/404.nl.xhtml [10:17:15] source/fsfe.org/error/404.sq.xhtml [10:17:15] source/fsfe.org/error/405.de.xhtml [10:17:15] source/fsfe.org/error/405.en.xhtml [10:17:15] source/fsfe.org/error/405.es.xhtml [10:17:15] source/fsfe.org/error/405.fr.xhtml [10:17:15] source/fsfe.org/error/405.it.xhtml [10:17:15] source/fsfe.org/error/405.nl.xhtml [10:17:15] source/fsfe.org/error/405.sq.xhtml [10:17:15] source/fsfe.org/error/408.de.xhtml [10:17:15] source/fsfe.org/error/408.en.xhtml [10:17:15] source/fsfe.org/error/408.fr.xhtml [10:17:16] source/fsfe.org/error/408.it.xhtml [10:17:16] source/fsfe.org/error/408.sq.xhtml [10:17:16] source/fsfe.org/error/410.de.xhtml [10:17:16] source/fsfe.org/error/410.en.xhtml [10:17:16] source/fsfe.org/error/410.fr.xhtml [10:17:16] source/fsfe.org/error/410.it.xhtml [10:17:16] source/fsfe.org/error/410.nl.xhtml [10:17:16] source/fsfe.org/error/410.sq.xhtml [10:17:16] source/fsfe.org/error/411.de.xhtml [10:17:16] source/fsfe.org/error/411.en.xhtml [10:17:16] source/fsfe.org/error/411.fr.xhtml [10:17:16] source/fsfe.org/error/411.it.xhtml [10:17:16] source/fsfe.org/error/411.nl.xhtml [10:17:16] source/fsfe.org/error/411.sq.xhtml [10:17:16] source/fsfe.org/error/412.de.xhtml [10:17:16] source/fsfe.org/error/412.en.xhtml [10:17:16] source/fsfe.org/error/412.it.xhtml [10:17:16] source/fsfe.org/error/412.sq.xhtml [10:17:16] source/fsfe.org/error/413.de.xhtml [10:17:16] source/fsfe.org/error/413.en.xhtml [10:17:16] source/fsfe.org/error/413.it.xhtml [10:17:16] source/fsfe.org/error/413.nl.xhtml [10:17:16] source/fsfe.org/error/413.sq.xhtml [10:17:16] source/fsfe.org/error/414.de.xhtml [10:17:16] source/fsfe.org/error/414.en.xhtml [10:17:16] source/fsfe.org/error/414.fr.xhtml [10:17:16] source/fsfe.org/error/414.it.xhtml [10:17:16] source/fsfe.org/error/414.nl.xhtml [10:17:16] source/fsfe.org/error/414.sq.xhtml [10:17:16] source/fsfe.org/error/415.de.xhtml [10:17:16] source/fsfe.org/error/415.en.xhtml [10:17:16] source/fsfe.org/error/415.fr.xhtml [10:17:16] source/fsfe.org/error/415.it.xhtml [10:17:16] source/fsfe.org/error/415.nl.xhtml [10:17:16] source/fsfe.org/error/415.sq.xhtml [10:17:16] source/fsfe.org/error/500.de.xhtml [10:17:16] source/fsfe.org/error/500.en.xhtml [10:17:16] source/fsfe.org/error/500.es.xhtml [10:17:16] source/fsfe.org/error/500.fr.xhtml [10:17:16] source/fsfe.org/error/500.it.xhtml [10:17:16] source/fsfe.org/error/500.nl.xhtml [10:17:16] source/fsfe.org/error/500.sq.xhtml [10:17:16] source/fsfe.org/error/501.de.xhtml [10:17:16] source/fsfe.org/error/501.en.xhtml [10:17:16] source/fsfe.org/error/501.es.xhtml [10:17:16] source/fsfe.org/error/501.fr.xhtml [10:17:16] source/fsfe.org/error/501.it.xhtml [10:17:16] source/fsfe.org/error/501.nl.xhtml [10:17:16] source/fsfe.org/error/501.sq.xhtml [10:17:17] source/fsfe.org/error/502.de.xhtml [10:17:17] source/fsfe.org/error/502.en.xhtml [10:17:17] source/fsfe.org/error/502.es.xhtml [10:17:17] source/fsfe.org/error/502.fr.xhtml [10:17:17] source/fsfe.org/error/502.it.xhtml [10:17:17] source/fsfe.org/error/502.nl.xhtml [10:17:17] source/fsfe.org/error/502.sq.xhtml [10:17:17] source/fsfe.org/error/503.de.xhtml [10:17:17] source/fsfe.org/error/503.en.xhtml [10:17:17] source/fsfe.org/error/503.es.xhtml [10:17:17] source/fsfe.org/error/503.fr.xhtml [10:17:17] source/fsfe.org/error/503.it.xhtml [10:17:17] source/fsfe.org/error/503.nl.xhtml [10:17:17] source/fsfe.org/error/503.sq.xhtml [10:17:17] source/fsfe.org/events/SFD-2010.el.xhtml [10:17:17] source/fsfe.org/events/SFD-2010.en.xhtml [10:17:17] source/fsfe.org/events/archive-template.en.xhtml [10:17:17] source/fsfe.org/events/events.de.xhtml [10:17:17] source/fsfe.org/events/events.en.xhtml [10:17:17] source/fsfe.org/events/events.es.xhtml [10:17:17] source/fsfe.org/events/events.fr.xhtml [10:17:17] source/fsfe.org/events/events.it.xhtml [10:17:17] source/fsfe.org/events/events.nl.xhtml [10:17:17] source/fsfe.org/events/fscons-2010.el.xhtml [10:17:17] source/fsfe.org/events/fscons-2010.en.xhtml [10:17:17] source/fsfe.org/events/fscons-2010.pt.xhtml [10:17:17] source/fsfe.org/events/2004/picnic.en.xhtml [10:17:17] source/fsfe.org/events/2004/picnic.sv.xhtml [10:17:17] source/fsfe.org/events/2004/FISL/fisl.en.xhtml [10:17:17] source/fsfe.org/events/2004/FISL/fisl.it.xhtml [10:17:17] source/fsfe.org/events/2004/FISL/fisl.sv.xhtml [10:17:17] source/fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.en.xhtml [10:17:17] source/fsfe.org/events/2005/wsf-brazil/wsf-brazil.en.xhtml [10:17:17] source/fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.en.xhtml [10:17:17] source/fsfe.org/events/2011/lnm-award-debian.en.xhtml [10:17:17] source/fsfe.org/events/2012/fscons-2012.en.xhtml [10:17:17] source/fsfe.org/events/2013/linuxtag-2013.en.xhtml [10:17:17] source/fsfe.org/events/2013/linuxtag-2013.sq.xhtml [10:17:17] source/fsfe.org/events/2013/panel-btw2013.de.xhtml [10:17:17] source/fsfe.org/events/2013/panel-btw2013.en.xhtml [10:17:17] source/fsfe.org/events/2013/rmll-2-2013.en.xhtml [10:17:17] source/fsfe.org/events/2013/rmll-2-2013.sq.xhtml [10:17:17] source/fsfe.org/events/2013/rmll-2013.el.xhtml [10:17:17] source/fsfe.org/events/2013/rmll-2013.en.xhtml [10:17:17] source/fsfe.org/events/2013/rmll-2013.sq.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.de.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.el.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.en.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.es.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.fr.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.it.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.nl.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20160616-01.sq.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.de.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.el.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.en.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.es.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.fr.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.it.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.nl.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-01.sq.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-02.en.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-02.es.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-02.nl.xhtml [10:17:17] source/fsfe.org/events/2016/summit/event-20161106-02.sq.xhtml [10:17:17] source/fsfe.org/events/clt/clt-bus.de.xhtml [10:17:17] source/fsfe.org/events/clt/clt-hotel.de.xhtml [10:17:17] source/fsfe.org/events/tools/eventregistration.de.xhtml [10:17:17] source/fsfe.org/events/tools/eventregistration.en.xhtml [10:17:17] source/fsfe.org/events/tools/eventregistration.it.xhtml [10:17:17] source/fsfe.org/events/tools/eventregistration.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/artificial-intelligence.en.xhtml [10:17:17] source/fsfe.org/freesoftware/artificial-intelligence.it.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.de.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.en.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.es.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.it.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/comparison.sq.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.ca.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.da.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.de.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.el.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.en.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.es.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.fi.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.hu.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.it.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.ro.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.sk.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.sq.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.tr.xhtml [10:17:17] source/fsfe.org/freesoftware/democracy.uk.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.ar.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.de.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.el.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.en.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.es.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.hr.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.it.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.ja.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.pl.xhtml [10:17:17] source/fsfe.org/freesoftware/freesoftware.tr.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.bg.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.ca.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.da.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.de.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.el.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.en.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.es.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.it.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/gnuproject.sq.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.de.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.el.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.en.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.es.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.it.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.sl.xhtml [10:17:17] source/fsfe.org/freesoftware/secure-boot.sq.xhtml [10:17:17] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.xhtml [10:17:17] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.en.xhtml [10:17:17] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.it.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.cs.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.de.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.el.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.en.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.es.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.it.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/education/argumentation.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/education/edu-related-content.en.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.de.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.el.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.en.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.it.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/education/education.sv.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.de.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.el.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.en.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.es.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.it.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/education/eduteam.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/faq.de.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/faq.en.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/led.en.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/led.it.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/legal.en.xhtml [10:17:17] source/fsfe.org/freesoftware/legal/legal.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/procurement/mEUcrosoft.en.xhtml [10:17:17] source/fsfe.org/freesoftware/procurement/procurement.da.xhtml [10:17:17] source/fsfe.org/freesoftware/procurement/procurement.en.xhtml [10:17:17] source/fsfe.org/freesoftware/procurement/procurement.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/procurement/procurement.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.de.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.es.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/bt-open-letter.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.de.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.es.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.et.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.hr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.it.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.ro.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/def.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/dfd.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/dfd.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/dfd.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eif-v3.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2-01.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2-01.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2-01.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/eifv2.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/guardian-open-letter.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/minimalisticstandards.de.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/minimalisticstandards.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.cs.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.de.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.it.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/ps.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.da.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.de.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.el.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.es.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.fr.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.it.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.pt.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.ro.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.ru.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/standards.sq.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/transparency-letter.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/uk-standards-consultation.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.en.xhtml [10:17:17] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.nl.xhtml [10:17:17] source/fsfe.org/freesoftware/sustainability/sustainability.de.xhtml [10:17:17] source/fsfe.org/freesoftware/sustainability/sustainability.en.xhtml [10:17:17] source/fsfe.org/freesoftware/sustainability/sustainability.it.xhtml [10:17:17] source/fsfe.org/internal/bc.en.xhtml [10:17:17] source/fsfe.org/internal/er.en.xhtml [10:17:17] source/fsfe.org/internal/nt.en.xhtml [10:17:17] source/fsfe.org/internal/pd-result.en.xhtml [10:17:17] source/fsfe.org/internal/pd.en.xhtml [10:17:17] source/fsfe.org/internal/pt.en.xhtml [10:17:17] source/fsfe.org/internal/rc-result.en.xhtml [10:17:17] source/fsfe.org/internal/rc.en.xhtml [10:17:17] source/fsfe.org/news/archive-template.en.xhtml [10:17:17] source/fsfe.org/news/news.ca.xhtml [10:17:17] source/fsfe.org/news/news.cs.xhtml [10:17:17] source/fsfe.org/news/news.da.xhtml [10:17:17] source/fsfe.org/news/news.de.xhtml [10:17:17] source/fsfe.org/news/news.el.xhtml [10:17:17] source/fsfe.org/news/news.en.xhtml [10:17:17] source/fsfe.org/news/news.es.xhtml [10:17:17] source/fsfe.org/news/news.et.xhtml [10:17:17] source/fsfe.org/news/news.fi.xhtml [10:17:17] source/fsfe.org/news/news.fr.xhtml [10:17:17] source/fsfe.org/news/news.hr.xhtml [10:17:17] source/fsfe.org/news/news.hu.xhtml [10:17:17] source/fsfe.org/news/news.it.xhtml [10:17:17] source/fsfe.org/news/news.nb.xhtml [10:17:17] source/fsfe.org/news/news.nl.xhtml [10:17:17] source/fsfe.org/news/news.pt.xhtml [10:17:17] source/fsfe.org/news/news.ro.xhtml [10:17:17] source/fsfe.org/news/news.ru.xhtml [10:17:17] source/fsfe.org/news/news.sl.xhtml [10:17:17] source/fsfe.org/news/news.sq.xhtml [10:17:17] source/fsfe.org/news/news.sr.xhtml [10:17:17] source/fsfe.org/news/news.sv.xhtml [10:17:17] source/fsfe.org/news/newsletter.de.xhtml [10:17:17] source/fsfe.org/news/newsletter.en.xhtml [10:17:17] source/fsfe.org/news/newsletter.es.xhtml [10:17:17] source/fsfe.org/news/newsletter.fr.xhtml [10:17:17] source/fsfe.org/news/newsletter.it.xhtml [10:17:17] source/fsfe.org/news/newsletter.nl.xhtml [10:17:17] source/fsfe.org/news/podcast-opus.en.xhtml [10:17:17] source/fsfe.org/news/podcast.en.xhtml [10:17:17] source/fsfe.org/news/podcast.nl.xhtml [10:17:17] source/fsfe.org/news/2001/article-13.12.2001.de.xhtml [10:17:17] source/fsfe.org/news/2001/article-24.9.2001.de.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.de.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.en.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.es.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.fr.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.it.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-10-20-01.pt.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-12-17-01.en.xhtml [10:17:17] source/fsfe.org/news/2001/article2001-12-17-01.pt.xhtml [10:17:17] source/fsfe.org/news/2002/article-25.04.2002.de.xhtml [10:17:17] source/fsfe.org/news/2002/article-30.9.2002.de.xhtml [10:17:17] source/fsfe.org/news/2002/article2002-01-18-01.en.xhtml [10:17:17] source/fsfe.org/news/2002/article2002-01-18-01.es.xhtml [10:17:17] source/fsfe.org/news/2002/article2002-01-18-01.fr.xhtml [10:17:17] source/fsfe.org/news/2002/article2002-01-18-01.pt.xhtml [10:17:17] source/fsfe.org/news/2003/commissione-meo-presentazione.it.xhtml [10:17:17] source/fsfe.org/news/2003/commissione-meo-risposte.it.xhtml [10:17:17] source/fsfe.org/news/2003/lettera_MIUR-2003-07-16.it.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030211-01.el.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030211-01.en.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030211-01.it.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030211-01.nl.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030602-01.el.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030602-01.en.xhtml [10:17:17] source/fsfe.org/news/2003/news-20030602-01.nl.xhtml [10:17:17] source/fsfe.org/news/2003/vsi-studie.de.xhtml [10:17:17] source/fsfe.org/news/2004/cie.it.xhtml [10:17:17] source/fsfe.org/news/2004/cw-interview.de.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040521.de.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040624.de.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.ca.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.de.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.en.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.fr.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.it.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.nl.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.pl.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040917.sr.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20040930.de.xhtml [10:17:17] source/fsfe.org/news/2004/navigator-20041129.de.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040510-01.en.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040621-01.it.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040701-01.de.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040701-01.en.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040701-01.fr.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040701-01.it.xhtml [10:17:17] source/fsfe.org/news/2004/news-20040727-01.en.xhtml [10:17:17] source/fsfe.org/news/2005/letter-20050511-it-mep.it.xhtml [10:17:17] source/fsfe.org/news/2005/news-20050507-01.el.xhtml [10:17:17] source/fsfe.org/news/2005/news-20050507-01.en.xhtml [10:17:17] source/fsfe.org/news/2007/news-20070630-01.el.xhtml [10:17:17] source/fsfe.org/news/2007/news-20070630-01.en.xhtml [10:17:17] source/fsfe.org/news/2007/news-20070630-01.nl.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.de.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.el.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.en.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.es.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.it.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.nl.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071220-01.sv.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071221-01.da.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071221-01.el.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071221-01.en.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071221-01.it.xhtml [10:17:17] source/fsfe.org/news/2007/news-20071221-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.de.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.el.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.en.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.fr.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.it.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.nb.xhtml [10:17:17] source/fsfe.org/news/2008/freedom-not-fear.nl.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.de.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.el.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.en.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.fr.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.it.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.nb.xhtml [10:17:17] source/fsfe.org/news/2008/gnu-25-years.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080118-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080118-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080118-01.es.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080118-01.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080118-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080214-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080214-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080214-01.es.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080214-01.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080214-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080220-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080220-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080220-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080222-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080222-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080222-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.ca.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.es.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.fr.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080228-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080301-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080301-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080301-01.fr.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080301-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080305-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080305-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080305-01.fr.xhtml [10:17:17] source/fsfe.org/news/2008/news-20080305-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.de.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.fi.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.fr.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081202-02.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081208-01.de.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081208-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081208-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081208-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.de.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.es.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.fr.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081210-01.nl.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.de.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.el.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.en.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.es.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.fi.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.it.xhtml [10:17:17] source/fsfe.org/news/2008/news-20081215-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.it.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.nb.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090120-02.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090123-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090123-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090123-01.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090123-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090123-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.it.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090202-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.bg.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.it.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090227-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090301-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090301-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090301-01.nb.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090301-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090301-01.nn.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090311-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090311-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090311-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090311-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090323-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090323-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090323-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090323-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090325-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090325-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090325-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090411-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090411-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090411-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090414-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090414-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090414-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090414-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090418-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090418-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090418-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090418-01.nb.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090418-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090430-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090430-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090515-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090515-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090515-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090601-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090601-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090601-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090601-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090604-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090604-01.it.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090604-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090610-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090620-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090620-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090620-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090624-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090624-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090624-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090624-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090728-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090728-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090728-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090728-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090728-01.tr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090831-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090831-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090831-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090831-01.tr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090908-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090908-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090908-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090908-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090908-01.tr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20090921-01.tr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091005-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091005-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091005-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091005-01.it.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091006-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091006-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091006-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091006-01.tr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091008-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091008-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091008-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091008-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091019-01.nl.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.de.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.el.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.en.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.es.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.fr.xhtml [10:17:17] source/fsfe.org/news/2009/news-20091023-02.it.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091023-02.nl.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-01.de.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-01.el.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-01.en.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-01.fr.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-01.it.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-02.de.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-02.el.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091109-02.en.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091118-01.de.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091118-01.el.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091118-01.en.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091118-01.fr.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091118-01.it.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091127-01.de.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091127-01.el.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091127-01.en.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091127-01.it.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091127-01.nl.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091216-01.de.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091216-01.el.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091216-01.en.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091216-01.fr.xhtml [10:17:18] source/fsfe.org/news/2009/news-20091216-01.nl.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.bg.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.de.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.el.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.en.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.es.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.fi.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.it.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.nb.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.nl.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.pt.xhtml [10:17:18] source/fsfe.org/news/2009/nyr.sr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.nl.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100126-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100129-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100129-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100129-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100129-01.nl.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100129-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100212-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100222-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100222-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100222-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100222-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100222-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.ca.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.nl.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100302-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100305-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100305-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100305-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100305-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100324-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100324-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100324-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100324-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100324-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100330-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100330-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100330-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100330-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100330-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100331-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100331-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100331-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100331-01.nb.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100331-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100428-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100508-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100510-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100510-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100519-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100519-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100702-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100702-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100702-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100702-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100705-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100705-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100705-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100802-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100802-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100802-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100802-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100803-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100803-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100907-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100907-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100907-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100907-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100907-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20100913-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101016-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101016-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101016-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101016-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101016-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101018-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101102-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101108-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101108-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101108-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101108-01.pt.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101207-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101207-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101207-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101207-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101216-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101216-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101216-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101216-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.de.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.el.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.en.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.es.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.fr.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.it.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.pl.xhtml [10:17:18] source/fsfe.org/news/2010/news-20101217-01.ru.xhtml [10:17:18] source/fsfe.org/news/2010/th-eulogy-20100508.de.xhtml [10:17:18] source/fsfe.org/news/2011/mapping-uk.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110113-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110113-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110113-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110201-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110201-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110201-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.hr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.pt.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-01.sv.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-02.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-02.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110202-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110209-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110209-01.fr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110209-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.fr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.hr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110214-01.pl.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110215-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110215-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110215-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110225-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110225-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110301-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110310-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110310-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110310-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110318-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110321-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110321-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110325-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-02.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-03.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110330-04.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110401-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110412-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110415-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110415-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110418-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110420-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110420-01.fr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110421-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110421-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110502-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110511-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110511-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110520-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110523-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110523-01.hr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110525-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110608-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110620-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110620-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110620-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110620-01.fr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110620-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110622-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110622-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110718-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110809-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110913-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20110919-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111025-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111107-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111107-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111107-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111107-01.nl.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111110-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111110-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111110-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111110-01.ru.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111114-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111114-01.es.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111114-01.sv.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111117-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111122-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.el.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.es.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.fr.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.it.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.nl.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-01.ru.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111128-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111201-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111201-02.de.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111201-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111206-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111208-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111208-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111213-01.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111213-02.en.xhtml [10:17:18] source/fsfe.org/news/2011/news-20111220-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120109-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120109-02.sq.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-01.sk.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-01.sq.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-02.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120110-02.sq.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120120-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120126-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120130-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120131-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120202-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120202-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120204-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120209-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120210-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120210-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120214-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120223-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.es.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.fr.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120228-01.sq.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120303-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120303-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.cs.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.es.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120321-01.sk.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120322-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120323-02.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120323-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120323-03.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120323-03.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-02.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-02.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120328-02.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120330-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120330-01.sk.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120402-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120405-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120405-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120405-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-01.fi.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-01.fr.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120412-02.fr.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120425-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120425-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120426-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120501-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120502-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120508-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.et.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.ru.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.sk.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-01.sv.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-02.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-02.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-02.ru.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120509-02.sk.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120525-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120525-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120525-01.fr.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120528-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120601-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120607-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120616-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120619-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120619-01.fi.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120627-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120627-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120627-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120711-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120711-01.fi.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120730-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120730-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120730-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120730-02.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120730-02.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120831-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120907-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120907-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120907-01.es.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120907-01.fi.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120907-01.fr.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120918-01.de.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120920-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120920-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120921-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120921-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120925-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120925-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20120925-01.it.xhtml [10:17:18] source/fsfe.org/news/2012/news-20121018-01.el.xhtml [10:17:18] source/fsfe.org/news/2012/news-20121018-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20121022-01.en.xhtml [10:17:18] source/fsfe.org/news/2012/news-20121101-02.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121102-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121102-01.es.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121102-01.fr.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121106-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121112-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121112-01.es.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121116-01.de.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121120-01.de.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121120-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121122-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121129-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121208-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121211-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121211-01.es.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121211-01.fi.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121211-01.fr.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121214-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121217-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121217-01.it.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121217-01.sq.xhtml [10:17:20] source/fsfe.org/news/2012/news-20121217-01.sr.xhtml [10:17:20] source/fsfe.org/news/2012/news-20130329-01.en.xhtml [10:17:20] source/fsfe.org/news/2012/report-2012.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130212-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130212-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130212-01.fr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130212-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130212-01.sr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130218-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130221-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130221-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130226-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130226-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130312-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130312-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130319-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130319-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-02.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-02.fr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130327-02.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130402-01.el.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130402-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130402-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130422-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130422-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130423-02.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130423-02.ro.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130423-02.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130424-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130424-01.ro.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130424-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130429-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130429-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130503-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130503-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130503-01.es.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130503-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130611-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130611-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130612-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130612-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130612-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130620-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130620-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130620-01.tr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130620-02.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130620-02.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130625-02.el.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130625-02.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130625-02.fr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130625-02.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.fr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.pt.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.ru.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130626-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130703-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130703-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130703-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130712-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130712-01.fr.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130712-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130716-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130716-01.it.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130716-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130729-01.el.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130729-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130729-01.pt.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130729-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130729-02.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130730-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130730-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130730-01.et.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130730-01.pt.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130730-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130918-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130920-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130920-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130923-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130923-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130926-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130927-01.da.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130927-01.el.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130927-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20130927-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131104-02.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131105-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131107-01.el.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131107-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131107-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131211-01.de.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131213-01.en.xhtml [10:17:20] source/fsfe.org/news/2013/news-20131213-01.sq.xhtml [10:17:20] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.en.xhtml [10:17:20] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.et.xhtml [10:17:20] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.en.xhtml [10:17:20] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.et.xhtml [10:17:20] source/fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.et.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140116-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140116-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140116-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140116-01.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140116-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140210-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140210-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140210-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140211-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140211-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140211-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140221-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140221-01.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140221-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140226-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140226-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140303-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140303-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140304-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140304-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140310-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140314-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140314-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140324-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140324-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140324-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140324-01.pt.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140324-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-01.tr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-02.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140326-02.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140328-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140328-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140328-01.ru.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140328-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140424-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140424-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140424-01.ru.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140424-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.ru.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140506-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140527-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140527-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140527-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140527-01.ru.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140527-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.ru.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140528-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140708-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140708-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140708-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140708-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140801-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140801-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140801-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.pt.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140912-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20140929-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141016-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141016-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141016-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141016-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141016-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141017-02.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141120-02.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141120-02.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141120-02.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.sr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141203-01.tr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141212-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141212-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141212-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141212-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141217-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141217-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141217-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-01.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.de.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.fr.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.it.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141218-02.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.el.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.en.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.es.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.nl.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.sq.xhtml [10:17:20] source/fsfe.org/news/2014/news-20141219-01.sr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.pt.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150209-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150210-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150210-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150210-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150210-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150210-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150218-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150218-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150218-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150224-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150301-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150301-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150302-02.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150302-02.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150302-02.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150303-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150303-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150303-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150303-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150306-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150306-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150306-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150306-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150316-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150316-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150316-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150324-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150324-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150324-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150324-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150325-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150325-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150325-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150325-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150331-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150331-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150331-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-02.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150401-02.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150414-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150414-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150414-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150506-01.tr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150527-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150527-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150605-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150605-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150605-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150605-02.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150616-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150616-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150616-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150817-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150817-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150817-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150817-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150829-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150902-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150902-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150902-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150902-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150916-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150918-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150918-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150918-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150918-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150918-02.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20150922-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.pt.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151013-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151020-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151020-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151020-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151020-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151028-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151028-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151028-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151028-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151104-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151104-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151104-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151104-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151105-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151110-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151110-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151110-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151110-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151110-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151203-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151203-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151203-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151203-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151203-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.de.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.el.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.en.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.es.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.fr.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.it.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.nl.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.sq.xhtml [10:17:20] source/fsfe.org/news/2015/news-20151216-01.tr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160118-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160118-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160118-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160118-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160122-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.es.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.it.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160126-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160128-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160128-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160128-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160128-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160205-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160205-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160205-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160208-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160208-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160208-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160208-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160222-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160222-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160222-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160224-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160224-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160224-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160406-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160411-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160411-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160411-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160411-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.es.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.pt.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-02.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-02.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160428-02.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160502-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160502-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160502-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160624-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160624-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160624-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160630-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160630-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160630-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160725-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160725-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160725-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160725-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.el.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.es.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.it.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160804-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160809-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160809-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160809-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160809-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.el.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160817-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160823-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160823-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160831-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160907-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160907-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160907-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160907-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160928-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160928-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160928-01.pt.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160928-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160930-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20160930-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161027-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161031-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161031-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161031-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161110-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161110-01.es.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161110-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161110-01.ru.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161110-01.sq.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.de.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.el.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.en.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.es.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.fr.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.it.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.nl.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.pt.xhtml [10:17:20] source/fsfe.org/news/2016/news-20161202-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170105-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170105-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170105-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170109-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170109-01.es.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170109-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170109-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170110-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170110-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170110-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170116-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170116-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170116-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170209-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170209-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170209-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-02.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170214-02.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170217-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170217-01.es.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170217-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170217-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170301-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170301-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170302-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170302-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170302-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170315-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170315-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170315-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170321-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170328-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170328-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170328-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170419-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170419-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170419-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170425-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170425-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170613-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170613-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170616-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170616-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170616-01.it.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170616-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170619-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170619-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170619-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170710-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170710-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170710-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170726-01.cs.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170726-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170726-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170726-01.fr.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170726-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170811-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170811-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170811-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170811-01.ru.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170811-01.sq.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170829-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170829-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170829-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170905-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170906-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170906-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170908-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170908-01.fr.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170908-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170911-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170911-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.es.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.fr.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20170913-01.zh.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171005-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171005-01.es.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171005-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171013-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171013-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171024-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171107-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171107-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171108-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171108-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171109-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171109-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171114-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171116-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171116-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171130-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171130-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171206-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171206-01.es.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171206-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171207-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171207-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171207-02.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171211-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171211-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171211-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171212-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171212-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171212-01.nl.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171219-01.de.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171219-01.en.xhtml [10:17:20] source/fsfe.org/news/2017/news-20171219-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180111-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180119-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180212-01.el.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180212-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180212-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180212-01.sq.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180215-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180215-01.sq.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180219-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180219-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180219-01.it.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180219-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180219-01.sq.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180302-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180302-01.it.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180308-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180308-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180308-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180308-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180308-01.sv.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180322-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180322-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180322-01.it.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180322-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180322-01.sq.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180414-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180414-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180414-01.sq.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180526-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180526-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180526-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180529-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180529-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180530-02.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180530-02.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180530-02.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180601-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180601-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180601-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180601-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180613-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180613-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180613-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180613-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180705-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180705-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180705-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180705-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180716-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180716-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180723-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180723-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180725-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180725-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180725-01.es.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180725-01.fr.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180725-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180905-02.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180905-02.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180907-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180907-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180913-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180917-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20180917-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181010-01.de.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181010-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181023-02.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181023-02.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181024-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181024-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181105-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181105-01.nl.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181205-01.en.xhtml [10:17:20] source/fsfe.org/news/2018/news-20181205-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190108-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190124-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190124-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190124-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190124-01.fr.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190124-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190205-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190205-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190205-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190214-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190308-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190326-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190326-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190326-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190329-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190329-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190514-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190514-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190514-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-02.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-02.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190515-02.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190520-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190520-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190520-01.it.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190520-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190701-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190806-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190806-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190807-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190807-01.it.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190807-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190827-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190827-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190827-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190827-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190917-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190917-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190917-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190917-01.fr.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190917-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190927-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20190927-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191002-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191002-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191007-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191007-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191007-01.fr.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191007-01.it.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191007-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191012-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191012-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191014-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191014-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191022-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191022-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191022-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191028-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191028-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191028-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191028-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191028-01.sv.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191102-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191102-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191102-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191112-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191112-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191113-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191113-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191120-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191125-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191125-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191125-01.es.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191125-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191128-01.de.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191128-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191128-01.nl.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191205-01.en.xhtml [10:17:20] source/fsfe.org/news/2019/news-20191205-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200121-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200121-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200121-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200129-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200212-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200212-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200212-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200212-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200228-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200228-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200228-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200302-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200302-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200302-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200302-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200310-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200310-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200310-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200311-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200311-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200327-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200327-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200327-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200330-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200330-01.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200330-01.fr.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200330-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200330-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200402-02.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200402-02.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200402-02.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200402-02.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200403-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200403-01.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200403-01.fr.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200403-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200403-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200408-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200408-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200408-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200408-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200411-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200411-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200411-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200415-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200415-01.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200415-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200415-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200424-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200424-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200424-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200427-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200427-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200427-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200506-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200506-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200506-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200506-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200514-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200514-01.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200514-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200514-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200519-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200519-01.es.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200519-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200519-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200601-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200601-01.fr.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200601-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200601-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200609-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200609-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200609-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200609-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200610-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200610-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200610-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200610-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200629-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200629-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200629-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200630-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200630-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200630-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200630-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200720-01.de.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200720-01.en.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200720-01.it.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200720-01.nl.xhtml [10:17:20] source/fsfe.org/news/2020/news-20200810-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200810-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200810-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200810-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200820-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200820-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200820-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200904-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200904-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200904-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200907-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200907-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200907-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200910-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200910-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200910-01.es.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200910-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20200910-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201005-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201005-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201009-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201009-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201009-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201019-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201019-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201019-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201023-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201023-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201023-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201110-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201110-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201112-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201112-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201112-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201112-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201120-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201120-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201120-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201208-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201208-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201208-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201208-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201210-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201210-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201210-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201210-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201211-01.de.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201211-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201211-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201211-01.nl.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201215-01.en.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201215-01.it.xhtml [10:17:22] source/fsfe.org/news/2020/news-20201215-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210119-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210119-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210127-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210127-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210127-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210203-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210203-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210203-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210204-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210204-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210204-02.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210204-02.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210209-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210209-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210214-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210214-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210219-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210219-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210302-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210302-01.es.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210302-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210302-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210305-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210305-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210311-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210311-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210317-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210317-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210317-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210318-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210318-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210318-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210324-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210330-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210330-01.fr.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210330-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210330-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210331-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210331-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210331-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210331-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210406-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210406-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210406-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210420-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210420-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210420-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210427-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210427-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210427-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210504-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210504-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210504-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210505-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210505-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210505-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210506-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210506-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210506-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210506-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210521-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210521-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210521-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210525-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210525-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210525-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210526-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210526-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210526-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210529-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210529-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210609-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210609-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210609-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210611-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210611-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210611-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210611-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210625-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210625-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210629-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210629-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210629-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210721-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210721-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210721-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210721-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210805-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210805-01.fr.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210805-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210805-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210830-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210830-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210830-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210830-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210920-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210920-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210920-01.es.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210920-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.de.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.el.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.en.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.es.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.it.xhtml [10:17:22] source/fsfe.org/news/2021/news-20210928-01.nl.xhtml [10:17:22] source/fsfe.org/news/2021/news-20211008-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211008-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211008-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211011-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211011-01.es.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211011-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211011-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211015-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211015-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211015-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211027-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211027-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211102-01.de.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211102-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211102-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211102-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211110-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211110-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211118-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211118-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211118-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211122-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211122-01.fr.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211122-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211122-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211123-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211123-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211123-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211124-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211124-01.es.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211124-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.de.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.el.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.es.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.fr.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211125-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211129-01.de.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211129-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211129-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211203-01.de.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211203-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211203-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211203-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211206-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211206-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211209-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211209-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211210-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211210-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211213-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211213-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211215-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211215-01.it.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211215-01.nl.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211216-01.en.xhtml [10:17:23] source/fsfe.org/news/2021/news-20211216-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220112-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220112-01.es.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220112-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220121-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220121-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220127-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220127-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220127-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220201-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220201-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220201-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220202-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220202-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220202-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220202-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220224-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220224-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220224-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220225-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220225-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220225-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220310-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220310-01.fr.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220310-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220310-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220315-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220315-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220315-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.fr.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220316-01.pt.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220323-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220323-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220323-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220328-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220328-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220328-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220330-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220330-01.fr.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220330-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220330-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220414-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220414-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220414-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220420-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220420-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220420-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220425-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220425-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220425-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220425-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220427-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220427-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220427-01.fr.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220427-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220427-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220503-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220503-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220503-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220504-01.da.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220504-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220504-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220504-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220510-01.da.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220510-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220510-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220510-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220516-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220516-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220516-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220520-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220520-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220520-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220531-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220531-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220602-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220602-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220602-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220615-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220615-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220628-01.el.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220628-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220628-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220712-01.da.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220712-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220712-01.es.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220712-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220712-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220714-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220714-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220823-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220823-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220823-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220905-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220905-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220905-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220915-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220915-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220928-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20220928-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221004-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221004-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221026-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221026-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221026-02.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221026-02.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-01.es.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-02.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221104-02.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221118-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221118-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221118-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.es.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221121-01.pl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221205-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221205-01.es.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221205-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221205-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221206-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221206-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221209-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221212-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221214-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221214-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221215-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221215-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221215-02.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221215-02.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221219-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221219-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221219-01.nl.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221220-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221220-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221221-01.de.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221221-01.en.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221221-01.it.xhtml [10:17:23] source/fsfe.org/news/2022/news-20221221-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230104-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230104-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230109-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230109-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230113-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230113-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230119-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230119-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230119-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230123-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230123-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230126-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230126-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230215-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230215-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230215-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230215-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230215-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230220-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230220-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230222-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230222-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230227-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230227-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230227-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230227-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230301-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230308-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230313-01.el.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230313-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230321-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-02.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230323-02.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230412-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230413-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230418-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230425-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230425-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230428-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230428-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230508-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230508-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230508-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230509-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-01.fr.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230511-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-02.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230515-02.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230524-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230524-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230524-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230524-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230606-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230606-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230606-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230614-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230614-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230614-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230614-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230614-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230623-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230623-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230623-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230623-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-02.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-02.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230629-02.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230712-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230712-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230712-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-02.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230719-02.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230724-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230724-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230724-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230807-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230807-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230807-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230815-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230815-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230824-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230825-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230829-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230829-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230831-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230906-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230906-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230907-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230907-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230915-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230920-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230920-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230920-02.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230920-02.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230926-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230926-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230926-01.es.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230926-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20230926-01.nl.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231011-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231017-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231020-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231025-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231025-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231102-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231106-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231106-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231108-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231110-01.de.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231110-01.en.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231110-01.it.xhtml [10:17:23] source/fsfe.org/news/2023/news-20231113-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231113-02.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231113-02.nl.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231115-01.de.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231115-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231116-01.de.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231116-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231116-01.es.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231116-01.fr.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231116-01.it.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231201-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231207-01.de.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231207-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231211-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231214-01.de.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231214-01.en.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231214-01.nl.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231220-01.de.xhtml [10:17:24] source/fsfe.org/news/2023/news-20231220-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240109-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240109-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240111-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240117-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240122-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240122-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240126-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240130-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240206-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240208-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240208-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240208-01.nl.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240226-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240301-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240301-01.nl.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240307-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240307-01.es.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240312-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240318-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240318-02.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240321-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240321-01.fr.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240417-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240430-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240506-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240515-01.de.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240515-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240515-01.es.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240515-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240530-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240610-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240620-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240627-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240628-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240701-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240709-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240715-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240719-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240726-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240808-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240809-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240809-01.nl.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240812-01.de.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240812-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240812-01.es.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240812-01.fr.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240812-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240813-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240828-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-01.de.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-01.es.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-01.fr.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-01.it.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240911-02.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20240920-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20241002-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20241016-01.en.xhtml [10:17:24] source/fsfe.org/news/2024/news-20241016-01.it.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-1.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-10.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-11.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-12.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-13.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-14.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-15.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-16.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-17.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-18.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-19.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-2.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-20.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-21.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-22.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-23.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-24.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-25.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-3.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-4.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-5.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-6.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-7.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-8.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-9.en.xhtml [10:17:24] source/fsfe.org/news/news/podcast/transcript/episode-special-1.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200904.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200904.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200904.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200904.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200904.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200905.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200905.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200905.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200905.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200905.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200906.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200907.tr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200908.tr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200909.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200909.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200909.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200909.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200909.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200910.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200910.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200910.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200910.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200911.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200911.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200911.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200912.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200912.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-200912.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201001.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201006.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201006.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201006.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201006.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201007.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201007.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201007.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201007.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201007.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201008.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201008.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201008.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201008.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201008.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201009.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201009.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201009.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201009.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201009.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201010.pt.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201011.pt.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201012.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201012.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201012.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201012.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201012.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201101.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201101.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201101.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201101.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201101.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201102.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201102.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201102.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201102.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201103.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201103.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201103.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201103.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201104.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201104.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201104.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201104.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201104.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201105.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201105.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201105.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201106.cs.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201106.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201106.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201106.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201107.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201107.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201107.fr.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201107.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201107.nl.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201108.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201108.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201109.de.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201109.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201109.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201109.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201109.it.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201110.cs.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201110.el.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201110.en.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201110.es.xhtml [10:17:24] source/fsfe.org/news/nl/nl-201110.fr.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201110.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201111.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201111.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201111.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201112.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201112.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201112.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201201.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201201.es.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.es.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.fr.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201202.nl.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201203.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201203.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201203.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201203.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201204.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201204.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201204.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201204.es.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201204.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201205.cs.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201205.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201205.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201205.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201205.es.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201206.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201206.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201206.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201206.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201207.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201207.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201207.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201207.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201208.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201208.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201208.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201209.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201209.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201209.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.cs.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.fr.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201210.it.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201211.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201211.el.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201211.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201212.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201212.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201212.sq.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201302.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201302.en.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201302.sq.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201303.de.xhtml [10:17:25] source/fsfe.org/news/nl/nl-201303.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201303.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201305.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201305.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201305.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201305.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201306.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201306.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201307.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201307.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201307.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201308.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201308.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201308.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201308.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201308.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201309.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201309.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201309.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201310.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201310.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201310.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201310.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201310.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201311.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.ro.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201312.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.ro.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201401.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201402.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201402.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201402.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201402.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201402.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201403.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201403.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201403.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201403.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201404.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201405.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201405.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201405.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201405.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201406.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.ro.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201407.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201408.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201409.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.pt.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.ro.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201410.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201411.sr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201412.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201501.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201502.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201503.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201504.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201505.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201506.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201506.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201506.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201506.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201506.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201507.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.pt.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201508.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201509.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201510.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201511.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201512.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201602.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201603.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201604.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201605.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201605.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201605.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201605.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201605.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201606.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201607.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201608.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201609.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201609.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201609.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201609.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201609.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201610.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201610.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201610.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201610.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201610.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201611.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201612.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201702.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201702.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201702.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201702.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201703.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201703.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201703.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201703.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201703.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201704.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201704.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201704.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201704.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201704.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201705.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201706.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201706.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201706.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201706.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201706.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.cs.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201707.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201709.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201709.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201709.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201709.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201709.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201710.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201710.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201710.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201710.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201711.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201711.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201711.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201711.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201712.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201712.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201712.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201712.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.cs.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.el.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201802.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201803.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201804.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201804.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201804.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201804.sq.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201805.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201805.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201805.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201806.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201806.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201806.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201806.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201806.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201807.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201807.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201807.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201807.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201807.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201809.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201809.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201809.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201810.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201810.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201811.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201811.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201812.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201812.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201812.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201902.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201902.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201902.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201903.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201903.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201903.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201904.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201904.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201905.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201905.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201905.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201905.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201906.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201906.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201906.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201907.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201907.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201907.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201907.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201907.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201909.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201909.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201909.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201909.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201909.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201910.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201910.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201910.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201910.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201911.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201911.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201911.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201912.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201912.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201912.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201912.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-201912.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202001.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202001.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202001.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202001.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202002.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202002.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202002.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202002.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202002.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202004.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202005.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202005.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202005.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202005.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202006.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202006.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202006.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202006.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202006.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202007.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202007.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202007.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202007.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202007.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202008.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202008.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202008.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202008.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202008.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202009.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202009.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202009.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202009.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202010.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202010.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202010.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202010.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202010.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202011.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202011.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202011.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202011.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202011.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202012.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202012.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202012.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202012.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202101.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202101.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202101.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202101.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202102.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202102.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202102.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202102.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202102.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202103.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202103.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202103.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202103.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202103.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202104.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202104.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202104.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202105.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202105.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202105.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202106.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202106.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202106.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202106.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202106.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202107.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202107.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202107.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202107.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202109.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202109.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202109.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202110.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202110.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202110.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202110.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202111.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202111.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202111.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202111.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202111.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202112.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202112.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202112.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202112.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202112.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202201.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.fr.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.it.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202202.nl.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202203.de.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202203.en.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202203.es.xhtml [10:17:26] source/fsfe.org/news/nl/nl-202203.fr.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202203.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202203.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202203.pt.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.fr.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202204.pt.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.da.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202205.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202206.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202206.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202206.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202206.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202206.pt.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.da.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.fr.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202207.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202209.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202209.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202209.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202209.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202210.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202210.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202210.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202210.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202211.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202211.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202211.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202211.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202212.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202212.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202212.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202212.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202301.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202301.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202301.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202301.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202302.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202302.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202302.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202302.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202302.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202303.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202303.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202303.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202303.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202304.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202304.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202304.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202304.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202304.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202305.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202305.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202305.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202305.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202305.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202306.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202306.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202306.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202306.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202306.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202307.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202307.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202307.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202307.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202307.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202308.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202308.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202308.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202308.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202308.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202309.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202309.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202309.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202310.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202310.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202310.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202311.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202311.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202311.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202311.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202312.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202312.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202312.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202312.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202401.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202401.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202401.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202402.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202402.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202403.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202403.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202403.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202404.de.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202404.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202404.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202404.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202405.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202405.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202405.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202406.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202406.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202406.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202406.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202407.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202407.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202407.nl.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202408.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202408.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202409.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202409.es.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202409.it.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202410.en.xhtml [10:17:28] source/fsfe.org/news/nl/nl-202410.es.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-1.de.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-1.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-1.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-1.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-10.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-10.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-10.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-11.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-11.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-11.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-12.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-12.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-12.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-13.de.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-13.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-13.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-13.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-14.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-14.fr.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-14.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-14.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-15.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-15.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-15.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-16.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-16.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-16.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-17.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-17.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-17.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-18.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-18.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-18.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-19.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-19.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-19.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-2.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-2.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-2.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-20.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-20.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-20.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-21.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-21.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-21.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-22.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-22.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-23.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-23.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-24.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-24.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-25.de.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-25.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-3.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-3.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-3.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-4.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-4.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-4.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-5.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-5.es.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-5.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-5.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-6.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-6.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-6.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-7.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-7.fr.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-7.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-7.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-8.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-8.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-8.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-9.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-9.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-9.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-special-1.en.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-special-1.it.xhtml [10:17:28] source/fsfe.org/news/podcast/episode-special-1.nl.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-1.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-10.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-11.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-12.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-13.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-14.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-15.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-16.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-17.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-18.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-19.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-2.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-20.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-21.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-22.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-23.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-24.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-25.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-3.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-4.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-5.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-6.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-7.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-8.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-9.en.xhtml [10:17:28] source/fsfe.org/news/podcast/transcript/episode-special-1.en.xhtml [10:17:28] source/fsfe.org/order/cancel.de.xhtml [10:17:28] source/fsfe.org/order/cancel.en.xhtml [10:17:28] source/fsfe.org/order/cancel.es.xhtml [10:17:28] source/fsfe.org/order/cancel.it.xhtml [10:17:28] source/fsfe.org/order/cancel.nl.xhtml [10:17:28] source/fsfe.org/order/cancel.tr.xhtml [10:17:28] source/fsfe.org/order/order.de.xhtml [10:17:28] source/fsfe.org/order/order.en.xhtml [10:17:28] source/fsfe.org/order/order.es.xhtml [10:17:28] source/fsfe.org/order/order.fr.xhtml [10:17:28] source/fsfe.org/order/order.it.xhtml [10:17:28] source/fsfe.org/order/order.nl.xhtml [10:17:28] source/fsfe.org/order/size.de.xhtml [10:17:28] source/fsfe.org/order/size.en.xhtml [10:17:28] source/fsfe.org/order/size.es.xhtml [10:17:28] source/fsfe.org/order/size.it.xhtml [10:17:28] source/fsfe.org/order/size.nl.xhtml [10:17:28] source/fsfe.org/order/thankyou.de.xhtml [10:17:28] source/fsfe.org/order/thankyou.en.xhtml [10:17:28] source/fsfe.org/order/thankyou.es.xhtml [10:17:28] source/fsfe.org/order/thankyou.it.xhtml [10:17:28] source/fsfe.org/order/thankyou.nl.xhtml [10:17:28] source/fsfe.org/order/thankyou.tr.xhtml [10:17:28] source/fsfe.org/order/tmpl-concardis.de.xhtml [10:17:28] source/fsfe.org/order/tmpl-concardis.en.xhtml [10:17:28] source/fsfe.org/order/tmpl-concardis.es.xhtml [10:17:28] source/fsfe.org/order/tmpl-concardis.it.xhtml [10:17:28] source/fsfe.org/order/tmpl-concardis.nl.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.de.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.en.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.es.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.it.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.nl.xhtml [10:17:28] source/fsfe.org/order/tmpl-thankyou.tr.xhtml [10:17:28] source/fsfe.org/press/press.de.xhtml [10:17:28] source/fsfe.org/press/press.en.xhtml [10:17:28] source/fsfe.org/press/press.es.xhtml [10:17:28] source/fsfe.org/press/press.fr.xhtml [10:17:28] source/fsfe.org/press/press.it.xhtml [10:17:28] source/fsfe.org/press/press.nl.xhtml [10:17:28] source/fsfe.org/search/search.en.xhtml [10:17:28] source/fsfe.org/search/search.nl.xhtml [10:17:28] source/fsfe.org/tags/tagged-policy.en.xhtml [10:17:28] source/fsfe.org/tags/tagged.en.xhtml [10:17:28] source/fsfe.org/tags/tagged.es.xhtml [10:17:28] source/fsfe.org/tags/tagged.nl.xhtml [10:17:28] source/fsfe.org/tags/tags.en.xhtml [10:17:28] source/fsfe.org/tags/tags.es.xhtml [10:17:28] source/fsfe.org/tags/tags.fr.xhtml [10:17:28] source/fsfe.org/tags/tags.nl.xhtml [10:17:28] source/fsfe.org/templates/concardis_relay.en.xhtml [10:17:28] source/fsfe.org/templates/registerevent/error.en.xhtml [10:17:28] source/fsfe.org/templates/registerevent/error.nl.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.de.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.el.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.en.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.fi.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.nl.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.pt.xhtml [10:17:28] source/fsfe.org/templates/registerevent/success.sq.xhtml [10:17:28] source/pdfreaders.org/about.ar.xhtml [10:17:28] source/pdfreaders.org/about.cs.xhtml [10:17:28] source/pdfreaders.org/about.de.xhtml [10:17:28] source/pdfreaders.org/about.el.xhtml [10:17:28] source/pdfreaders.org/about.en.xhtml [10:17:28] source/pdfreaders.org/about.eo.xhtml [10:17:28] source/pdfreaders.org/about.es.xhtml [10:17:28] source/pdfreaders.org/about.et.xhtml [10:17:28] source/pdfreaders.org/about.fa.xhtml [10:17:28] source/pdfreaders.org/about.fi.xhtml [10:17:28] source/pdfreaders.org/about.fr.xhtml [10:17:28] source/pdfreaders.org/about.gl.xhtml [10:17:28] source/pdfreaders.org/about.he.xhtml [10:17:28] source/pdfreaders.org/about.hr.xhtml [10:17:28] source/pdfreaders.org/about.hu.xhtml [10:17:28] source/pdfreaders.org/about.it.xhtml [10:17:28] source/pdfreaders.org/about.nb.xhtml [10:17:28] source/pdfreaders.org/about.nl.xhtml [10:17:28] source/pdfreaders.org/about.nn.xhtml [10:17:28] source/pdfreaders.org/about.pl.xhtml [10:17:28] source/pdfreaders.org/about.pt.xhtml [10:17:28] source/pdfreaders.org/about.ro.xhtml [10:17:28] source/pdfreaders.org/about.ru.xhtml [10:17:28] source/pdfreaders.org/about.sl.xhtml [10:17:28] source/pdfreaders.org/about.sv.xhtml [10:17:28] source/pdfreaders.org/about.tr.xhtml [10:17:28] source/pdfreaders.org/about.zh.xhtml [10:17:28] source/pdfreaders.org/graphics.ar.xhtml [10:17:28] source/pdfreaders.org/graphics.cs.xhtml [10:17:28] source/pdfreaders.org/graphics.de.xhtml [10:17:28] source/pdfreaders.org/graphics.el.xhtml [10:17:28] source/pdfreaders.org/graphics.en.xhtml [10:17:28] source/pdfreaders.org/graphics.eo.xhtml [10:17:28] source/pdfreaders.org/graphics.es.xhtml [10:17:28] source/pdfreaders.org/graphics.et.xhtml [10:17:28] source/pdfreaders.org/graphics.fa.xhtml [10:17:28] source/pdfreaders.org/graphics.fi.xhtml [10:17:28] source/pdfreaders.org/graphics.fr.xhtml [10:17:28] source/pdfreaders.org/graphics.gl.xhtml [10:17:28] source/pdfreaders.org/graphics.he.xhtml [10:17:28] source/pdfreaders.org/graphics.hr.xhtml [10:17:28] source/pdfreaders.org/graphics.hu.xhtml [10:17:28] source/pdfreaders.org/graphics.it.xhtml [10:17:28] source/pdfreaders.org/graphics.nb.xhtml [10:17:28] source/pdfreaders.org/graphics.nl.xhtml [10:17:28] source/pdfreaders.org/graphics.nn.xhtml [10:17:28] source/pdfreaders.org/graphics.pl.xhtml [10:17:28] source/pdfreaders.org/graphics.pt.xhtml [10:17:28] source/pdfreaders.org/graphics.ro.xhtml [10:17:28] source/pdfreaders.org/graphics.ru.xhtml [10:17:28] source/pdfreaders.org/graphics.sl.xhtml [10:17:28] source/pdfreaders.org/graphics.sv.xhtml [10:17:28] source/pdfreaders.org/graphics.tr.xhtml [10:17:28] source/pdfreaders.org/graphics.zh.xhtml [10:17:28] source/pdfreaders.org/index.ar.xhtml [10:17:28] source/pdfreaders.org/index.cs.xhtml [10:17:28] source/pdfreaders.org/index.de.xhtml [10:17:28] source/pdfreaders.org/index.el.xhtml [10:17:28] source/pdfreaders.org/index.en.xhtml [10:17:28] source/pdfreaders.org/index.eo.xhtml [10:17:28] source/pdfreaders.org/index.es.xhtml [10:17:28] source/pdfreaders.org/index.et.xhtml [10:17:28] source/pdfreaders.org/index.fa.xhtml [10:17:28] source/pdfreaders.org/index.fi.xhtml [10:17:28] source/pdfreaders.org/index.fr.xhtml [10:17:28] source/pdfreaders.org/index.gl.xhtml [10:17:28] source/pdfreaders.org/index.he.xhtml [10:17:28] source/pdfreaders.org/index.hr.xhtml [10:17:28] source/pdfreaders.org/index.hu.xhtml [10:17:28] source/pdfreaders.org/index.it.xhtml [10:17:28] source/pdfreaders.org/index.nb.xhtml [10:17:28] source/pdfreaders.org/index.nl.xhtml [10:17:28] source/pdfreaders.org/index.nn.xhtml [10:17:28] source/pdfreaders.org/index.pl.xhtml [10:17:28] source/pdfreaders.org/index.pt.xhtml [10:17:28] source/pdfreaders.org/index.ro.xhtml [10:17:28] source/pdfreaders.org/index.ru.xhtml [10:17:28] source/pdfreaders.org/index.sl.xhtml [10:17:28] source/pdfreaders.org/index.sv.xhtml [10:17:28] source/pdfreaders.org/index.tr.xhtml [10:17:28] source/pdfreaders.org/index.zh.xhtml [10:17:28] source/pdfreaders.org/os.ar.xhtml [10:17:29] source/pdfreaders.org/os.cs.xhtml [10:17:29] source/pdfreaders.org/os.de.xhtml [10:17:29] source/pdfreaders.org/os.el.xhtml [10:17:29] source/pdfreaders.org/os.en.xhtml [10:17:29] source/pdfreaders.org/os.eo.xhtml [10:17:29] source/pdfreaders.org/os.es.xhtml [10:17:29] source/pdfreaders.org/os.et.xhtml [10:17:29] source/pdfreaders.org/os.fa.xhtml [10:17:29] source/pdfreaders.org/os.fi.xhtml [10:17:29] source/pdfreaders.org/os.fr.xhtml [10:17:29] source/pdfreaders.org/os.gl.xhtml [10:17:29] source/pdfreaders.org/os.he.xhtml [10:17:29] source/pdfreaders.org/os.hr.xhtml [10:17:29] source/pdfreaders.org/os.hu.xhtml [10:17:29] source/pdfreaders.org/os.it.xhtml [10:17:29] source/pdfreaders.org/os.nb.xhtml [10:17:29] source/pdfreaders.org/os.nl.xhtml [10:17:29] source/pdfreaders.org/os.nn.xhtml [10:17:29] source/pdfreaders.org/os.pl.xhtml [10:17:29] source/pdfreaders.org/os.pt.xhtml [10:17:29] source/pdfreaders.org/os.ro.xhtml [10:17:29] source/pdfreaders.org/os.ru.xhtml [10:17:29] source/pdfreaders.org/os.sl.xhtml [10:17:29] source/pdfreaders.org/os.sv.xhtml [10:17:29] source/pdfreaders.org/os.tr.xhtml [10:17:29] source/pdfreaders.org/os.zh.xhtml [10:17:29] source/status.fsfe.org/index.en.xhtml [10:17:29] source/status.fsfe.org/fsfe.org/template.en.xhtml [10:17:29] source/status.fsfe.org/test.fsfe.org/template.en.xhtml [10:17:29] source/status.fsfe.org/translations/index.en.xhtml [10:17:29] status.fsfe.org/translations/ [10:17:29] status.fsfe.org/translations/index.ar.html [10:17:29] status.fsfe.org/translations/index.bg.html [10:17:29] status.fsfe.org/translations/index.bs.html [10:17:29] status.fsfe.org/translations/index.ca.html [10:17:29] status.fsfe.org/translations/index.cs.html [10:17:29] status.fsfe.org/translations/index.da.html [10:17:29] status.fsfe.org/translations/index.de.html [10:17:29] status.fsfe.org/translations/index.el.html [10:17:29] status.fsfe.org/translations/index.en.html [10:17:29] status.fsfe.org/translations/index.es.html [10:17:29] status.fsfe.org/translations/index.et.html [10:17:29] status.fsfe.org/translations/index.fa.html [10:17:29] status.fsfe.org/translations/index.fi.html [10:17:29] status.fsfe.org/translations/index.fr.html [10:17:29] status.fsfe.org/translations/index.hr.html [10:17:29] status.fsfe.org/translations/index.hu.html [10:17:29] status.fsfe.org/translations/index.it.html [10:17:29] status.fsfe.org/translations/index.ja.html [10:17:29] status.fsfe.org/translations/index.mk.html [10:17:29] status.fsfe.org/translations/index.nb.html [10:17:29] status.fsfe.org/translations/index.nl.html [10:17:29] status.fsfe.org/translations/index.nn.html [10:17:29] status.fsfe.org/translations/index.pl.html [10:17:29] status.fsfe.org/translations/index.pt.html [10:17:29] status.fsfe.org/translations/index.ro.html [10:17:29] status.fsfe.org/translations/index.ru.html [10:17:29] status.fsfe.org/translations/index.sk.html [10:17:29] status.fsfe.org/translations/index.sl.html [10:17:29] status.fsfe.org/translations/index.sq.html [10:17:29] status.fsfe.org/translations/index.sr.html [10:17:29] status.fsfe.org/translations/index.sv.html [10:17:29] status.fsfe.org/translations/index.tr.html [10:17:29] status.fsfe.org/translations/index.uk.html [10:17:29] status.fsfe.org/translations/index.zh.html [10:17:29] status.fsfe.org/translations/data-tmp/ [10:17:29] status.fsfe.org/translations/data/ [10:17:29] status.fsfe.org/translations/data/log.txt [10:17:29] [10:17:29] sent 9,957,985 bytes received 597,771 bytes 357,822.24 bytes/sec [10:17:29] total size is 1,577,551,233 speedup is 149.45 [10:17:29] Syncing files to noddack.fsfeurope.org [10:17:29] sending incremental file list [10:17:29] fsfe.org/about/people/index.ar.html [10:17:29] fsfe.org/about/people/index.bg.html [10:17:29] fsfe.org/about/people/index.bs.html [10:17:29] fsfe.org/about/people/index.ca.html [10:17:29] fsfe.org/about/people/index.cs.html [10:17:29] fsfe.org/about/people/index.da.html [10:17:29] fsfe.org/about/people/index.de.html [10:17:29] fsfe.org/about/people/index.el.html [10:17:29] fsfe.org/about/people/index.en.html [10:17:29] fsfe.org/about/people/index.es.html [10:17:29] fsfe.org/about/people/index.et.html [10:17:29] fsfe.org/about/people/index.fa.html [10:17:29] fsfe.org/about/people/index.fi.html [10:17:29] fsfe.org/about/people/index.fr.html [10:17:29] fsfe.org/about/people/index.hr.html [10:17:29] fsfe.org/about/people/index.hu.html [10:17:29] fsfe.org/about/people/index.it.html [10:17:29] fsfe.org/about/people/index.ja.html [10:17:29] fsfe.org/about/people/index.mk.html [10:17:29] fsfe.org/about/people/index.nb.html [10:17:29] fsfe.org/about/people/index.nl.html [10:17:29] fsfe.org/about/people/index.nn.html [10:17:29] fsfe.org/about/people/index.pl.html [10:17:29] fsfe.org/about/people/index.pt.html [10:17:29] fsfe.org/about/people/index.ro.html [10:17:29] fsfe.org/about/people/index.ru.html [10:17:29] fsfe.org/about/people/index.sk.html [10:17:29] fsfe.org/about/people/index.sl.html [10:17:29] fsfe.org/about/people/index.sq.html [10:17:29] fsfe.org/about/people/index.sr.html [10:17:29] fsfe.org/about/people/index.sv.html [10:17:29] fsfe.org/about/people/index.tr.html [10:17:29] fsfe.org/about/people/index.uk.html [10:17:29] fsfe.org/about/people/index.zh.html [10:17:29] fsfe.org/activities/activities.ar.html [10:17:29] fsfe.org/activities/activities.bg.html [10:17:29] fsfe.org/activities/activities.bs.html [10:17:29] fsfe.org/activities/activities.ca.html [10:17:29] fsfe.org/activities/activities.cs.html [10:17:29] fsfe.org/activities/activities.da.html [10:17:29] fsfe.org/activities/activities.de.html [10:17:29] fsfe.org/activities/activities.el.html [10:17:29] fsfe.org/activities/activities.en.html [10:17:29] fsfe.org/activities/activities.es.html [10:17:29] fsfe.org/activities/activities.et.html [10:17:29] fsfe.org/activities/activities.fa.html [10:17:29] fsfe.org/activities/activities.fi.html [10:17:29] fsfe.org/activities/activities.fr.html [10:17:29] fsfe.org/activities/activities.hr.html [10:17:29] fsfe.org/activities/activities.hu.html [10:17:29] fsfe.org/activities/activities.it.html [10:17:29] fsfe.org/activities/activities.ja.html [10:17:29] fsfe.org/activities/activities.mk.html [10:17:29] fsfe.org/activities/activities.nb.html [10:17:29] fsfe.org/activities/activities.nl.html [10:17:29] fsfe.org/activities/activities.nn.html [10:17:29] fsfe.org/activities/activities.pl.html [10:17:29] fsfe.org/activities/activities.pt.html [10:17:29] fsfe.org/activities/activities.ro.html [10:17:29] fsfe.org/activities/activities.ru.html [10:17:29] fsfe.org/activities/activities.sk.html [10:17:29] fsfe.org/activities/activities.sl.html [10:17:29] fsfe.org/activities/activities.sq.html [10:17:29] fsfe.org/activities/activities.sr.html [10:17:29] fsfe.org/activities/activities.sv.html [10:17:29] fsfe.org/activities/activities.tr.html [10:17:29] fsfe.org/activities/activities.uk.html [10:17:29] fsfe.org/activities/activities.zh.html [10:17:29] fsfe.org/activities/awareness.ar.html [10:17:29] fsfe.org/activities/awareness.bg.html [10:17:29] fsfe.org/activities/awareness.bs.html [10:17:29] fsfe.org/activities/awareness.ca.html [10:17:29] fsfe.org/activities/awareness.cs.html [10:17:29] fsfe.org/activities/awareness.da.html [10:17:29] fsfe.org/activities/awareness.de.html [10:17:29] fsfe.org/activities/awareness.el.html [10:17:29] fsfe.org/activities/awareness.en.html [10:17:29] fsfe.org/activities/awareness.es.html [10:17:29] fsfe.org/activities/awareness.et.html [10:17:29] fsfe.org/activities/awareness.fa.html [10:17:29] fsfe.org/activities/awareness.fi.html [10:17:29] fsfe.org/activities/awareness.fr.html [10:17:29] fsfe.org/activities/awareness.hr.html [10:17:29] fsfe.org/activities/awareness.hu.html [10:17:29] fsfe.org/activities/awareness.it.html [10:17:29] fsfe.org/activities/awareness.ja.html [10:17:29] fsfe.org/activities/awareness.mk.html [10:17:29] fsfe.org/activities/awareness.nb.html [10:17:29] fsfe.org/activities/awareness.nl.html [10:17:29] fsfe.org/activities/awareness.nn.html [10:17:29] fsfe.org/activities/awareness.pl.html [10:17:29] fsfe.org/activities/awareness.pt.html [10:17:29] fsfe.org/activities/awareness.ro.html [10:17:29] fsfe.org/activities/awareness.ru.html [10:17:29] fsfe.org/activities/awareness.sk.html [10:17:29] fsfe.org/activities/awareness.sl.html [10:17:29] fsfe.org/activities/awareness.sq.html [10:17:29] fsfe.org/activities/awareness.sr.html [10:17:29] fsfe.org/activities/awareness.sv.html [10:17:29] fsfe.org/activities/awareness.tr.html [10:17:29] fsfe.org/activities/awareness.uk.html [10:17:29] fsfe.org/activities/awareness.zh.html [10:17:29] fsfe.org/activities/legal.ar.html [10:17:29] fsfe.org/activities/legal.bg.html [10:17:29] fsfe.org/activities/legal.bs.html [10:17:29] fsfe.org/activities/legal.ca.html [10:17:29] fsfe.org/activities/legal.cs.html [10:17:29] fsfe.org/activities/legal.da.html [10:17:29] fsfe.org/activities/legal.de.html [10:17:29] fsfe.org/activities/legal.el.html [10:17:29] fsfe.org/activities/legal.en.html [10:17:29] fsfe.org/activities/legal.es.html [10:17:29] fsfe.org/activities/legal.et.html [10:17:29] fsfe.org/activities/legal.fa.html [10:17:29] fsfe.org/activities/legal.fi.html [10:17:29] fsfe.org/activities/legal.fr.html [10:17:29] fsfe.org/activities/legal.hr.html [10:17:29] fsfe.org/activities/legal.hu.html [10:17:29] fsfe.org/activities/legal.it.html [10:17:29] fsfe.org/activities/legal.ja.html [10:17:29] fsfe.org/activities/legal.mk.html [10:17:29] fsfe.org/activities/legal.nb.html [10:17:29] fsfe.org/activities/legal.nl.html [10:17:29] fsfe.org/activities/legal.nn.html [10:17:29] fsfe.org/activities/legal.pl.html [10:17:29] fsfe.org/activities/legal.pt.html [10:17:29] fsfe.org/activities/legal.ro.html [10:17:29] fsfe.org/activities/legal.ru.html [10:17:29] fsfe.org/activities/legal.sk.html [10:17:29] fsfe.org/activities/legal.sl.html [10:17:29] fsfe.org/activities/legal.sq.html [10:17:29] fsfe.org/activities/legal.sr.html [10:17:29] fsfe.org/activities/legal.sv.html [10:17:29] fsfe.org/activities/legal.tr.html [10:17:29] fsfe.org/activities/legal.uk.html [10:17:29] fsfe.org/activities/legal.zh.html [10:17:29] fsfe.org/activities/policy.ar.html [10:17:29] fsfe.org/activities/policy.bg.html [10:17:29] fsfe.org/activities/policy.bs.html [10:17:29] fsfe.org/activities/policy.ca.html [10:17:29] fsfe.org/activities/policy.cs.html [10:17:29] fsfe.org/activities/policy.da.html [10:17:29] fsfe.org/activities/policy.de.html [10:17:29] fsfe.org/activities/policy.el.html [10:17:29] fsfe.org/activities/policy.en.html [10:17:29] fsfe.org/activities/policy.es.html [10:17:29] fsfe.org/activities/policy.et.html [10:17:29] fsfe.org/activities/policy.fa.html [10:17:29] fsfe.org/activities/policy.fi.html [10:17:29] fsfe.org/activities/policy.fr.html [10:17:29] fsfe.org/activities/policy.hr.html [10:17:29] fsfe.org/activities/policy.hu.html [10:17:29] fsfe.org/activities/policy.it.html [10:17:29] fsfe.org/activities/policy.ja.html [10:17:29] fsfe.org/activities/policy.mk.html [10:17:29] fsfe.org/activities/policy.nb.html [10:17:29] fsfe.org/activities/policy.nl.html [10:17:29] fsfe.org/activities/policy.nn.html [10:17:29] fsfe.org/activities/policy.pl.html [10:17:29] fsfe.org/activities/policy.pt.html [10:17:29] fsfe.org/activities/policy.ro.html [10:17:29] fsfe.org/activities/policy.ru.html [10:17:29] fsfe.org/activities/policy.sk.html [10:17:29] fsfe.org/activities/policy.sl.html [10:17:29] fsfe.org/activities/policy.sq.html [10:17:29] fsfe.org/activities/policy.sr.html [10:17:29] fsfe.org/activities/policy.sv.html [10:17:29] fsfe.org/activities/policy.tr.html [10:17:29] fsfe.org/activities/policy.uk.html [10:17:29] fsfe.org/activities/policy.zh.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.ar.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.bg.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.bs.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.ca.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.cs.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.da.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.de.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.el.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.en.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.es.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.et.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.fa.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.fi.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.fr.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.hr.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.hu.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.it.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.ja.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.mk.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.nb.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.nl.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.nn.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.pl.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.pt.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.ro.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.ru.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.sk.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.sl.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.sq.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.sr.html [10:17:29] fsfe.org/activities/apple-litigation/apple-litigation.sv.html [10:17:31] fsfe.org/activities/apple-litigation/apple-litigation.tr.html [10:17:31] fsfe.org/activities/apple-litigation/apple-litigation.uk.html [10:17:31] fsfe.org/activities/apple-litigation/apple-litigation.zh.html [10:17:31] fsfe.org/activities/deviceneutrality/index.ar.html [10:17:31] fsfe.org/activities/deviceneutrality/index.bg.html [10:17:31] fsfe.org/activities/deviceneutrality/index.bs.html [10:17:31] fsfe.org/activities/deviceneutrality/index.ca.html [10:17:31] fsfe.org/activities/deviceneutrality/index.cs.html [10:17:31] fsfe.org/activities/deviceneutrality/index.da.html [10:17:31] fsfe.org/activities/deviceneutrality/index.de.html [10:17:31] fsfe.org/activities/deviceneutrality/index.el.html [10:17:31] fsfe.org/activities/deviceneutrality/index.en.html [10:17:31] fsfe.org/activities/deviceneutrality/index.es.html [10:17:31] fsfe.org/activities/deviceneutrality/index.et.html [10:17:31] fsfe.org/activities/deviceneutrality/index.fa.html [10:17:31] fsfe.org/activities/deviceneutrality/index.fi.html [10:17:31] fsfe.org/activities/deviceneutrality/index.fr.html [10:17:31] fsfe.org/activities/deviceneutrality/index.hr.html [10:17:31] fsfe.org/activities/deviceneutrality/index.hu.html [10:17:31] fsfe.org/activities/deviceneutrality/index.it.html [10:17:31] fsfe.org/activities/deviceneutrality/index.ja.html [10:17:31] fsfe.org/activities/deviceneutrality/index.mk.html [10:17:31] fsfe.org/activities/deviceneutrality/index.nb.html [10:17:31] fsfe.org/activities/deviceneutrality/index.nl.html [10:17:31] fsfe.org/activities/deviceneutrality/index.nn.html [10:17:31] fsfe.org/activities/deviceneutrality/index.pl.html [10:17:31] fsfe.org/activities/deviceneutrality/index.pt.html [10:17:31] fsfe.org/activities/deviceneutrality/index.ro.html [10:17:31] fsfe.org/activities/deviceneutrality/index.ru.html [10:17:31] fsfe.org/activities/deviceneutrality/index.sk.html [10:17:31] fsfe.org/activities/deviceneutrality/index.sl.html [10:17:31] fsfe.org/activities/deviceneutrality/index.sq.html [10:17:31] fsfe.org/activities/deviceneutrality/index.sr.html [10:17:31] fsfe.org/activities/deviceneutrality/index.sv.html [10:17:31] fsfe.org/activities/deviceneutrality/index.tr.html [10:17:31] fsfe.org/activities/deviceneutrality/index.uk.html [10:17:31] fsfe.org/activities/deviceneutrality/index.zh.html [10:17:31] fsfe.org/activities/dma/dma.ar.html [10:17:31] fsfe.org/activities/dma/dma.bg.html [10:17:31] fsfe.org/activities/dma/dma.bs.html [10:17:31] fsfe.org/activities/dma/dma.ca.html [10:17:31] fsfe.org/activities/dma/dma.cs.html [10:17:31] fsfe.org/activities/dma/dma.da.html [10:17:31] fsfe.org/activities/dma/dma.de.html [10:17:31] fsfe.org/activities/dma/dma.el.html [10:17:31] fsfe.org/activities/dma/dma.en.html [10:17:31] fsfe.org/activities/dma/dma.es.html [10:17:31] fsfe.org/activities/dma/dma.et.html [10:17:31] fsfe.org/activities/dma/dma.fa.html [10:17:31] fsfe.org/activities/dma/dma.fi.html [10:17:31] fsfe.org/activities/dma/dma.fr.html [10:17:31] fsfe.org/activities/dma/dma.hr.html [10:17:31] fsfe.org/activities/dma/dma.hu.html [10:17:31] fsfe.org/activities/dma/dma.it.html [10:17:31] fsfe.org/activities/dma/dma.ja.html [10:17:31] fsfe.org/activities/dma/dma.mk.html [10:17:31] fsfe.org/activities/dma/dma.nb.html [10:17:31] fsfe.org/activities/dma/dma.nl.html [10:17:31] fsfe.org/activities/dma/dma.nn.html [10:17:31] fsfe.org/activities/dma/dma.pl.html [10:17:31] fsfe.org/activities/dma/dma.pt.html [10:17:31] fsfe.org/activities/dma/dma.ro.html [10:17:31] fsfe.org/activities/dma/dma.ru.html [10:17:31] fsfe.org/activities/dma/dma.sk.html [10:17:31] fsfe.org/activities/dma/dma.sl.html [10:17:31] fsfe.org/activities/dma/dma.sq.html [10:17:31] fsfe.org/activities/dma/dma.sr.html [10:17:31] fsfe.org/activities/dma/dma.sv.html [10:17:31] fsfe.org/activities/dma/dma.tr.html [10:17:31] fsfe.org/activities/dma/dma.uk.html [10:17:31] fsfe.org/activities/dma/dma.zh.html [10:17:31] fsfe.org/graphics/logos/ [10:17:31] fsfe.org/graphics/logos/applelitigation-logo.png [10:17:31] fsfe.org/search/index.js [10:17:31] fsfe.org/tags/tagged-policy.ar.html [10:17:31] fsfe.org/tags/tagged-policy.bg.html [10:17:31] fsfe.org/tags/tagged-policy.bs.html [10:17:31] fsfe.org/tags/tagged-policy.ca.html [10:17:31] fsfe.org/tags/tagged-policy.cs.html [10:17:31] fsfe.org/tags/tagged-policy.da.html [10:17:31] fsfe.org/tags/tagged-policy.de.html [10:17:31] fsfe.org/tags/tagged-policy.el.html [10:17:31] fsfe.org/tags/tagged-policy.en.html [10:17:31] fsfe.org/tags/tagged-policy.es.html [10:17:31] fsfe.org/tags/tagged-policy.et.html [10:17:31] fsfe.org/tags/tagged-policy.fa.html [10:17:31] fsfe.org/tags/tagged-policy.fi.html [10:17:31] fsfe.org/tags/tagged-policy.fr.html [10:17:31] fsfe.org/tags/tagged-policy.hr.html [10:17:31] fsfe.org/tags/tagged-policy.hu.html [10:17:31] fsfe.org/tags/tagged-policy.it.html [10:17:31] fsfe.org/tags/tagged-policy.ja.html [10:17:31] fsfe.org/tags/tagged-policy.mk.html [10:17:31] fsfe.org/tags/tagged-policy.nb.html [10:17:31] fsfe.org/tags/tagged-policy.nl.html [10:17:31] fsfe.org/tags/tagged-policy.nn.html [10:17:31] fsfe.org/tags/tagged-policy.pl.html [10:17:31] fsfe.org/tags/tagged-policy.pt.html [10:17:31] fsfe.org/tags/tagged-policy.ro.html [10:17:31] fsfe.org/tags/tagged-policy.ru.html [10:17:31] fsfe.org/tags/tagged-policy.sk.html [10:17:31] fsfe.org/tags/tagged-policy.sl.html [10:17:31] fsfe.org/tags/tagged-policy.sq.html [10:17:31] fsfe.org/tags/tagged-policy.sr.html [10:17:31] fsfe.org/tags/tagged-policy.sv.html [10:17:31] fsfe.org/tags/tagged-policy.tr.html [10:17:31] fsfe.org/tags/tagged-policy.uk.html [10:17:31] fsfe.org/tags/tagged-policy.zh.html [10:17:31] source/drm.info/act-now.de.xhtml [10:17:31] source/fsfe.org/boilerplate.en.xhtml [10:17:31] source/fsfe.org/index.cs.xhtml [10:17:31] source/fsfe.org/index.de.xhtml [10:17:31] source/fsfe.org/index.el.xhtml [10:17:31] source/fsfe.org/index.en.xhtml [10:17:31] source/fsfe.org/index.es.xhtml [10:17:31] source/fsfe.org/index.fr.xhtml [10:17:31] source/fsfe.org/index.it.xhtml [10:17:31] source/fsfe.org/index.nl.xhtml [10:17:31] source/fsfe.org/index.pt.xhtml [10:17:31] source/fsfe.org/index.tr.xhtml [10:17:31] source/fsfe.org/index.uk.xhtml [10:17:31] source/fsfe.org/about/about.de.xhtml [10:17:31] source/fsfe.org/about/about.el.xhtml [10:17:31] source/fsfe.org/about/about.en.xhtml [10:17:31] source/fsfe.org/about/about.es.xhtml [10:17:31] source/fsfe.org/about/about.fr.xhtml [10:17:31] source/fsfe.org/about/about.it.xhtml [10:17:31] source/fsfe.org/about/about.nl.xhtml [10:17:31] source/fsfe.org/about/about.pl.xhtml [10:17:31] source/fsfe.org/about/about.tr.xhtml [10:17:31] source/fsfe.org/about/about.uk.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.de.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.el.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.en.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.es.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.fr.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.nl.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.sq.xhtml [10:17:31] source/fsfe.org/about/codeofconduct.uk.xhtml [10:17:31] source/fsfe.org/about/contact.de.xhtml [10:17:31] source/fsfe.org/about/contact.en.xhtml [10:17:31] source/fsfe.org/about/contact.nl.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.da.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.de.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.el.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.en.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.es.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.fr.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.hr.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.it.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.nl.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.pt.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.ru.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.sq.xhtml [10:17:31] source/fsfe.org/about/fsfnetwork.uk.xhtml [10:17:31] source/fsfe.org/about/groups.en.xhtml [10:17:31] source/fsfe.org/about/js-licences.en.xhtml [10:17:31] source/fsfe.org/about/mission.bg.xhtml [10:17:31] source/fsfe.org/about/mission.de.xhtml [10:17:31] source/fsfe.org/about/mission.el.xhtml [10:17:31] source/fsfe.org/about/mission.en.xhtml [10:17:31] source/fsfe.org/about/mission.es.xhtml [10:17:31] source/fsfe.org/about/mission.fi.xhtml [10:17:31] source/fsfe.org/about/mission.fr.xhtml [10:17:31] source/fsfe.org/about/mission.it.xhtml [10:17:31] source/fsfe.org/about/mission.nl.xhtml [10:17:31] source/fsfe.org/about/mission.pt.xhtml [10:17:31] source/fsfe.org/about/mission.sq.xhtml [10:17:31] source/fsfe.org/about/mission.tr.xhtml [10:17:31] source/fsfe.org/about/mission.uk.xhtml [10:17:31] source/fsfe.org/about/ourwork.en.xhtml [10:17:31] source/fsfe.org/about/ourwork.it.xhtml [10:17:31] source/fsfe.org/about/ourwork.nl.xhtml [10:17:31] source/fsfe.org/about/overview2010.de.xhtml [10:17:31] source/fsfe.org/about/overview2010.el.xhtml [10:17:31] source/fsfe.org/about/overview2010.en.xhtml [10:17:31] source/fsfe.org/about/principles.de.xhtml [10:17:31] source/fsfe.org/about/principles.en.xhtml [10:17:31] source/fsfe.org/about/principles.fr.xhtml [10:17:31] source/fsfe.org/about/principles.nl.xhtml [10:17:31] source/fsfe.org/about/principles.pt.xhtml [10:17:31] source/fsfe.org/about/principles.ru.xhtml [10:17:31] source/fsfe.org/about/statement-20201220.en.xhtml [10:17:31] source/fsfe.org/about/timeline.en.xhtml [10:17:31] source/fsfe.org/about/timeline.it.xhtml [10:17:31] source/fsfe.org/about/timeline.nl.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.de.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.en.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.es.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.fi.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.fr.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.nl.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.pt.xhtml [10:17:31] source/fsfe.org/about/transparency-commitment.sq.xhtml [10:17:31] source/fsfe.org/about/associates/associates.ar.xhtml [10:17:31] source/fsfe.org/about/associates/associates.en.xhtml [10:17:31] source/fsfe.org/about/associates/associates.es.xhtml [10:17:31] source/fsfe.org/about/associates/associates.fr.xhtml [10:17:31] source/fsfe.org/about/associates/associates.nl.xhtml [10:17:31] source/fsfe.org/about/associates/associates.pt.xhtml [10:17:31] source/fsfe.org/about/funds/2001.en.xhtml [10:17:31] source/fsfe.org/about/funds/2001.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2001.it.xhtml [10:17:31] source/fsfe.org/about/funds/2001.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2001.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2002.en.xhtml [10:17:31] source/fsfe.org/about/funds/2002.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2002.it.xhtml [10:17:31] source/fsfe.org/about/funds/2002.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2003.de.xhtml [10:17:31] source/fsfe.org/about/funds/2003.el.xhtml [10:17:31] source/fsfe.org/about/funds/2003.en.xhtml [10:17:31] source/fsfe.org/about/funds/2003.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2003.it.xhtml [10:17:31] source/fsfe.org/about/funds/2003.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2003.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2004.de.xhtml [10:17:31] source/fsfe.org/about/funds/2004.el.xhtml [10:17:31] source/fsfe.org/about/funds/2004.en.xhtml [10:17:31] source/fsfe.org/about/funds/2004.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2004.it.xhtml [10:17:31] source/fsfe.org/about/funds/2004.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2004.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2005.de.xhtml [10:17:31] source/fsfe.org/about/funds/2005.el.xhtml [10:17:31] source/fsfe.org/about/funds/2005.en.xhtml [10:17:31] source/fsfe.org/about/funds/2005.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2005.it.xhtml [10:17:31] source/fsfe.org/about/funds/2005.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2005.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2006.de.xhtml [10:17:31] source/fsfe.org/about/funds/2006.el.xhtml [10:17:31] source/fsfe.org/about/funds/2006.en.xhtml [10:17:31] source/fsfe.org/about/funds/2006.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2006.it.xhtml [10:17:31] source/fsfe.org/about/funds/2006.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2006.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2007.de.xhtml [10:17:31] source/fsfe.org/about/funds/2007.el.xhtml [10:17:31] source/fsfe.org/about/funds/2007.en.xhtml [10:17:31] source/fsfe.org/about/funds/2007.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2007.it.xhtml [10:17:31] source/fsfe.org/about/funds/2007.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2007.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2008.de.xhtml [10:17:31] source/fsfe.org/about/funds/2008.el.xhtml [10:17:31] source/fsfe.org/about/funds/2008.en.xhtml [10:17:31] source/fsfe.org/about/funds/2008.fr.xhtml [10:17:31] source/fsfe.org/about/funds/2008.it.xhtml [10:17:31] source/fsfe.org/about/funds/2008.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2008.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2009.el.xhtml [10:17:31] source/fsfe.org/about/funds/2009.en.xhtml [10:17:31] source/fsfe.org/about/funds/2009.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2009.ru.xhtml [10:17:31] source/fsfe.org/about/funds/2010.en.xhtml [10:17:31] source/fsfe.org/about/funds/2011.en.xhtml [10:17:31] source/fsfe.org/about/funds/2012.en.xhtml [10:17:31] source/fsfe.org/about/funds/2013.en.xhtml [10:17:31] source/fsfe.org/about/funds/2014.en.xhtml [10:17:31] source/fsfe.org/about/funds/2015.en.xhtml [10:17:31] source/fsfe.org/about/funds/2016.en.xhtml [10:17:31] source/fsfe.org/about/funds/2017.en.xhtml [10:17:31] source/fsfe.org/about/funds/2017.nl.xhtml [10:17:31] source/fsfe.org/about/funds/2018.en.xhtml [10:17:31] source/fsfe.org/about/funds/2019.en.xhtml [10:17:31] source/fsfe.org/about/funds/2020.en.xhtml [10:17:31] source/fsfe.org/about/funds/2021.en.xhtml [10:17:31] source/fsfe.org/about/funds/2022.en.xhtml [10:17:31] source/fsfe.org/about/funds/funds.de.xhtml [10:17:31] source/fsfe.org/about/funds/funds.el.xhtml [10:17:31] source/fsfe.org/about/funds/funds.en.xhtml [10:17:31] source/fsfe.org/about/funds/funds.es.xhtml [10:17:31] source/fsfe.org/about/funds/funds.fr.xhtml [10:17:31] source/fsfe.org/about/funds/funds.it.xhtml [10:17:31] source/fsfe.org/about/funds/funds.nl.xhtml [10:17:31] source/fsfe.org/about/funds/funds.ru.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.da.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.de.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.el.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.en.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.es.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.fr.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.hr.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.hu.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.it.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.nl.xhtml [10:17:31] source/fsfe.org/about/graphics/graphics.ru.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.da.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.de.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.el.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.en.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.fi.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.fr.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.it.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.nl.xhtml [10:17:31] source/fsfe.org/about/graphics/sponsoring/sponsoring.ru.xhtml [10:17:31] source/fsfe.org/about/history/doi.cs.xhtml [10:17:31] source/fsfe.org/about/history/doi.de.xhtml [10:17:31] source/fsfe.org/about/history/doi.el.xhtml [10:17:31] source/fsfe.org/about/history/doi.en.xhtml [10:17:31] source/fsfe.org/about/history/doi.fr.xhtml [10:17:31] source/fsfe.org/about/history/doi.it.xhtml [10:17:31] source/fsfe.org/about/history/doi.nl.xhtml [10:17:31] source/fsfe.org/about/history/doi.pt.xhtml [10:17:31] source/fsfe.org/about/history/preamble.cs.xhtml [10:17:31] source/fsfe.org/about/history/preamble.de.xhtml [10:17:31] source/fsfe.org/about/history/preamble.el.xhtml [10:17:31] source/fsfe.org/about/history/preamble.en.xhtml [10:17:31] source/fsfe.org/about/history/preamble.fr.xhtml [10:17:31] source/fsfe.org/about/history/preamble.it.xhtml [10:17:31] source/fsfe.org/about/history/preamble.nl.xhtml [10:17:31] source/fsfe.org/about/history/preamble.pt.xhtml [10:17:31] source/fsfe.org/about/jobs/index.en.xhtml [10:17:31] source/fsfe.org/about/jobs/internship.en.xhtml [10:17:31] source/fsfe.org/about/jobs/internship.fr.xhtml [10:17:31] source/fsfe.org/about/jobs/internship.it.xhtml [10:17:31] source/fsfe.org/about/legal/imprint.en.xhtml [10:17:31] source/fsfe.org/about/legal/imprint.fr.xhtml [10:17:31] source/fsfe.org/about/legal/imprint.it.xhtml [10:17:31] source/fsfe.org/about/legal/imprint.nl.xhtml [10:17:31] source/fsfe.org/about/legal/legal.en.xhtml [10:17:31] source/fsfe.org/about/legal/legal.es.xhtml [10:17:31] source/fsfe.org/about/legal/legal.fi.xhtml [10:17:31] source/fsfe.org/about/legal/legal.fr.xhtml [10:17:31] source/fsfe.org/about/legal/legal.it.xhtml [10:17:31] source/fsfe.org/about/legal/legal.nl.xhtml [10:17:31] source/fsfe.org/about/legal/legal.pt.xhtml [10:17:31] source/fsfe.org/about/people/index.de.xhtml [10:17:31] source/fsfe.org/about/people/index.en.xhtml [10:17:31] source/fsfe.org/about/people/index.es.xhtml [10:17:31] source/fsfe.org/about/people/index.it.xhtml [10:17:31] source/fsfe.org/about/people/index.nl.xhtml [10:17:31] source/fsfe.org/about/people/testimonials.de.xhtml [10:17:31] source/fsfe.org/about/people/testimonials.en.xhtml [10:17:31] source/fsfe.org/about/people/testimonials.it.xhtml [10:17:31] source/fsfe.org/about/people/testimonials.nl.xhtml [10:17:31] source/fsfe.org/about/people/albers/albers.de.xhtml [10:17:31] source/fsfe.org/about/people/albers/albers.en.xhtml [10:17:31] source/fsfe.org/about/people/albers/albers.nl.xhtml [10:17:31] source/fsfe.org/about/people/bakker/bakker.en.xhtml [10:17:31] source/fsfe.org/about/people/bakker/bakker.nl.xhtml [10:17:31] source/fsfe.org/about/people/ceballos/ceballos.en.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.de.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.el.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.en.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.fr.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.it.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.nl.xhtml [10:17:31] source/fsfe.org/about/people/gerloff/gerloff.ru.xhtml [10:17:31] source/fsfe.org/about/people/greve/cv.el.xhtml [10:17:31] source/fsfe.org/about/people/greve/cv.en.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.de.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.el.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.en.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.fr.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.it.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.nl.xhtml [10:17:31] source/fsfe.org/about/people/greve/greve.ru.xhtml [10:17:31] source/fsfe.org/about/people/interviews/cryptie.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/cryptie.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/gkotsopoulou.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/gkotsopoulou.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/grun.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/grun.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/lequertier.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/lequertier.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/mueller.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/mueller.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/ockers.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/ockers.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/snow.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/snow.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/weitzhofer.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/weitzhofer.it.xhtml [10:17:31] source/fsfe.org/about/people/interviews/zerolo.en.xhtml [10:17:31] source/fsfe.org/about/people/interviews/zerolo.it.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.de.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.el.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.en.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.it.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.nl.xhtml [10:17:31] source/fsfe.org/about/people/kirschner/kirschner.ru.xhtml [10:17:31] source/fsfe.org/about/people/ku/ku.en.xhtml [10:17:31] source/fsfe.org/about/people/lasota/lasota.en.xhtml [10:17:31] source/fsfe.org/about/people/mehl/mehl.de.xhtml [10:17:31] source/fsfe.org/about/people/mehl/mehl.en.xhtml [10:17:31] source/fsfe.org/about/people/mehl/mehl.nl.xhtml [10:17:31] source/fsfe.org/about/people/partsafyllidou/partsafyllidou.en.xhtml [10:17:31] source/fsfe.org/about/people/repentinus/repentinus.de.xhtml [10:17:31] source/fsfe.org/about/people/repentinus/repentinus.en.xhtml [10:17:31] source/fsfe.org/about/people/repentinus/repentinus.nl.xhtml [10:17:31] source/fsfe.org/about/people/rikken/rikken.en.xhtml [10:17:31] source/fsfe.org/about/people/roussos/roussos.en.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.el.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.en.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.fr.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.nb.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.nl.xhtml [10:17:31] source/fsfe.org/about/people/roy/roy.ru.xhtml [10:17:31] source/fsfe.org/about/people/sander/sander.en.xhtml [10:17:31] source/fsfe.org/about/people/tobiasd/tobiasd.en.xhtml [10:17:31] source/fsfe.org/about/softwarefreedom/testimonials.en.xhtml [10:17:31] source/fsfe.org/activities/activities.de.xhtml [10:17:31] source/fsfe.org/activities/activities.en.xhtml [10:17:31] source/fsfe.org/activities/activities.es.xhtml [10:17:31] source/fsfe.org/activities/activities.fr.xhtml [10:17:31] source/fsfe.org/activities/activities.it.xhtml [10:17:31] source/fsfe.org/activities/activities.nl.xhtml [10:17:31] source/fsfe.org/activities/activities.pt.xhtml [10:17:31] source/fsfe.org/activities/activities.tr.xhtml [10:17:31] source/fsfe.org/activities/awareness.en.xhtml [10:17:31] source/fsfe.org/activities/awareness.es.xhtml [10:17:31] source/fsfe.org/activities/awareness.it.xhtml [10:17:31] source/fsfe.org/activities/awareness.nl.xhtml [10:17:31] source/fsfe.org/activities/awareness.tr.xhtml [10:17:31] source/fsfe.org/activities/legal.en.xhtml [10:17:31] source/fsfe.org/activities/legal.es.xhtml [10:17:31] source/fsfe.org/activities/legal.it.xhtml [10:17:31] source/fsfe.org/activities/legal.nl.xhtml [10:17:31] source/fsfe.org/activities/legal.tr.xhtml [10:17:31] source/fsfe.org/activities/policy.en.xhtml [10:17:31] source/fsfe.org/activities/policy.es.xhtml [10:17:31] source/fsfe.org/activities/policy.it.xhtml [10:17:31] source/fsfe.org/activities/policy.nl.xhtml [10:17:31] source/fsfe.org/activities/policy.tr.xhtml [10:17:31] source/fsfe.org/activities/15years/15years.en.xhtml [10:17:31] source/fsfe.org/activities/15years/15years.it.xhtml [10:17:31] source/fsfe.org/activities/15years/15years.nl.xhtml [10:17:31] source/fsfe.org/activities/15years/15years.sq.xhtml [10:17:31] source/fsfe.org/activities/20years/20years.de.xhtml [10:17:31] source/fsfe.org/activities/20years/20years.en.xhtml [10:17:31] source/fsfe.org/activities/20years/20years.es.xhtml [10:17:31] source/fsfe.org/activities/20years/20years.it.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/book-reviews.en.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/book-reviews.it.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/index.de.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/index.en.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/index.it.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/index.pt.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/letters.en.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/movie.en.xhtml [10:17:31] source/fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.en.xhtml [10:17:31] source/fsfe.org/activities/agnula/agnula.ca.xhtml [10:17:31] source/fsfe.org/activities/agnula/agnula.de.xhtml [10:17:31] source/fsfe.org/activities/agnula/agnula.en.xhtml [10:17:31] source/fsfe.org/activities/agnula/agnula.it.xhtml [10:17:31] source/fsfe.org/activities/agnula/agnula.nn.xhtml [10:17:31] source/fsfe.org/activities/agnula/deliverable-1.3.1.en.xhtml [10:17:31] source/fsfe.org/activities/agnula/java.en.xhtml [10:17:31] source/fsfe.org/activities/agnula/license-faq.en.xhtml [10:17:31] source/fsfe.org/activities/agnula/license-faq.it.xhtml [10:17:31] source/fsfe.org/activities/agnula/license.en.xhtml [10:17:31] source/fsfe.org/activities/android/android.ca.xhtml [10:17:31] source/fsfe.org/activities/android/android.da.xhtml [10:17:31] source/fsfe.org/activities/android/android.de.xhtml [10:17:31] source/fsfe.org/activities/android/android.el.xhtml [10:17:31] source/fsfe.org/activities/android/android.en.xhtml [10:17:31] source/fsfe.org/activities/android/android.es.xhtml [10:17:31] source/fsfe.org/activities/android/android.fr.xhtml [10:17:31] source/fsfe.org/activities/android/android.it.xhtml [10:17:31] source/fsfe.org/activities/android/android.nl.xhtml [10:17:31] source/fsfe.org/activities/android/android.pt.xhtml [10:17:31] source/fsfe.org/activities/android/android.ru.xhtml [10:17:31] source/fsfe.org/activities/android/android.sq.xhtml [10:17:31] source/fsfe.org/activities/android/android.sr.xhtml [10:17:31] source/fsfe.org/activities/android/android.tr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.da.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.el.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.en.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.es.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.fr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.it.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.nl.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.sq.xhtml [10:17:31] source/fsfe.org/activities/android/artwork.tr.xhtml [10:17:31] source/fsfe.org/activities/android/flashingdevices.en.xhtml [10:17:31] source/fsfe.org/activities/android/flashingdevices.fr.xhtml [10:17:31] source/fsfe.org/activities/android/flashingdevices.it.xhtml [10:17:31] source/fsfe.org/activities/android/help.de.xhtml [10:17:31] source/fsfe.org/activities/android/help.el.xhtml [10:17:31] source/fsfe.org/activities/android/help.en.xhtml [10:17:31] source/fsfe.org/activities/android/help.it.xhtml [10:17:31] source/fsfe.org/activities/android/help.nl.xhtml [10:17:31] source/fsfe.org/activities/android/help.ru.xhtml [10:17:31] source/fsfe.org/activities/android/help.sq.xhtml [10:17:31] source/fsfe.org/activities/android/help.tr.xhtml [10:17:31] source/fsfe.org/activities/android/is-flashing-legal.en.xhtml [10:17:31] source/fsfe.org/activities/android/is-flashing-legal.it.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.da.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.de.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.el.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.en.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.es.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.fr.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.it.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.nl.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.ru.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.sq.xhtml [10:17:31] source/fsfe.org/activities/android/liberate.tr.xhtml [10:17:31] source/fsfe.org/activities/android/sustainability.en.xhtml [10:17:31] source/fsfe.org/activities/android/workshops.en.xhtml [10:17:31] source/fsfe.org/activities/android/workshops.sq.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.de.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.el.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.en.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.es.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.fr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.it.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.sq.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A1.tr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.de.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.el.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.en.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.es.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.fr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.it.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.sq.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/DIN_A7.tr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:31] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:31] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.xhtml [10:17:31] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.en.xhtml [10:17:31] source/fsfe.org/activities/bgw/bgw.de.xhtml [10:17:31] source/fsfe.org/activities/bgw/bgw.en.xhtml [10:17:31] source/fsfe.org/activities/bgw/bgw.fr.xhtml [10:17:31] source/fsfe.org/activities/conf-events/conf-events.en.xhtml [10:17:31] source/fsfe.org/activities/conf-events/report-cccamp23.en.xhtml [10:17:31] source/fsfe.org/activities/deviceneutrality/index.de.xhtml [10:17:31] source/fsfe.org/activities/deviceneutrality/index.en.xhtml [10:17:31] source/fsfe.org/activities/deviceneutrality/index.nl.xhtml [10:17:31] source/fsfe.org/activities/dma/dma.de.xhtml [10:17:31] source/fsfe.org/activities/dma/dma.en.xhtml [10:17:31] source/fsfe.org/activities/dma/dma.nl.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.ca.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.de.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.el.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.en.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.es.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.fr.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.it.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.nl.xhtml [10:17:31] source/fsfe.org/activities/drm/drm.pt.xhtml [10:17:31] source/fsfe.org/activities/drm/open-letter-ec-drm-html.en.xhtml [10:17:31] source/fsfe.org/activities/drm/sony-rootkit-fiasco.el.xhtml [10:17:31] source/fsfe.org/activities/drm/sony-rootkit-fiasco.en.xhtml [10:17:31] source/fsfe.org/activities/drm/sony-rootkit-fiasco.es.xhtml [10:17:31] source/fsfe.org/activities/drm/sony-rootkit-fiasco.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/digitalomat.en.xhtml [10:17:31] source/fsfe.org/activities/elections/digitalomat.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/digitalomat.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/freedomvote.en.xhtml [10:17:31] source/fsfe.org/activities/elections/freedomvote.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/freedomvote.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/index.en.xhtml [10:17:31] source/fsfe.org/activities/elections/index.es.xhtml [10:17:31] source/fsfe.org/activities/elections/index.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/letspromise.en.xhtml [10:17:31] source/fsfe.org/activities/elections/letspromise.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.el.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.ru.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/example-questions.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/example-questions.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/example-questions.fr.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/example-questions.it.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/example-questions.nl.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.en.xhtml [10:17:31] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.en.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd-fs.cs.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd-fs.en.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd-fs.es.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd-fs.fr.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd.cs.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd.en.xhtml [10:17:31] source/fsfe.org/activities/eucd/eucd.it.xhtml [10:17:31] source/fsfe.org/activities/eura-slovakia/eura-slovakia.en.xhtml [10:17:31] source/fsfe.org/activities/eura-slovakia/eura-slovakia.nl.xhtml [10:17:31] source/fsfe.org/activities/fla/fiduciary.en.xhtml [10:17:31] source/fsfe.org/activities/fla/fla.en.xhtml [10:17:31] source/fsfe.org/activities/foss4smes/foss4smes.en.xhtml [10:17:31] source/fsfe.org/activities/foss4smes/foss4smes.nl.xhtml [10:17:31] source/fsfe.org/activities/fp6/focal.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/fp6.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/lafis.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/more-support.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/reasoning.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/reasoning.pt.xhtml [10:17:31] source/fsfe.org/activities/fp6/recommendation.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/recommendation.pt.xhtml [10:17:31] source/fsfe.org/activities/fp6/supporting-parties.en.xhtml [10:17:31] source/fsfe.org/activities/fp6/supporting-parties.pt.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.de.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.el.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.en.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.fr.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.it.xhtml [10:17:31] source/fsfe.org/activities/fp7/fp7.nl.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.cs.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.de.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.el.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.en.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.es.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.fr.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.it.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.nl.xhtml [10:17:31] source/fsfe.org/activities/gbn/gbn.pt.xhtml [10:17:31] source/fsfe.org/activities/gplv3/bangalore-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.el.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-summaries.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-summaries.it.xhtml [10:17:31] source/fsfe.org/activities/gplv3/barcelona-summaries.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/brussels-rms-transcript.el.xhtml [10:17:31] source/fsfe.org/activities/gplv3/brussels-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/brussels-rms-transcript.fr.xhtml [10:17:31] source/fsfe.org/activities/gplv3/brussels-rms-transcript.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/diff-draft1-draft2.de.xhtml [10:17:31] source/fsfe.org/activities/gplv3/diff-draft1-draft2.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/diff-draft2-draft3.el.xhtml [10:17:31] source/fsfe.org/activities/gplv3/diff-draft2-draft3.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/diff-gplv2-draft2.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/drm-and-gplv3.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.ca.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.de.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.es.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.fr.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.it.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/europe-gplv3-conference.pt.xhtml [10:17:31] source/fsfe.org/activities/gplv3/events.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/fisl-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/fisl-rms-transcript.es.xhtml [10:17:31] source/fsfe.org/activities/gplv3/fisl-rms-transcript.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3-torino.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3-torino.es.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3-torino.it.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3-torino.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.ca.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.de.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.el.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.es.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.fr.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.it.xhtml [10:17:31] source/fsfe.org/activities/gplv3/gplv3.nl.xhtml [10:17:31] source/fsfe.org/activities/gplv3/links.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/patents-and-gplv3.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/timeline.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/tokyo-ciaran-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.el.xhtml [10:17:31] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/topics.en.xhtml [10:17:31] source/fsfe.org/activities/gplv3/torino-rms-transcript.en.xhtml [10:17:31] source/fsfe.org/activities/igf/a2k.de.xhtml [10:17:31] source/fsfe.org/activities/igf/a2k.el.xhtml [10:17:31] source/fsfe.org/activities/igf/a2k.en.xhtml [10:17:31] source/fsfe.org/activities/igf/a2k.fr.xhtml [10:17:31] source/fsfe.org/activities/igf/a2k.nl.xhtml [10:17:31] source/fsfe.org/activities/igf/dcos.el.xhtml [10:17:31] source/fsfe.org/activities/igf/dcos.en.xhtml [10:17:31] source/fsfe.org/activities/igf/dcos.fr.xhtml [10:17:31] source/fsfe.org/activities/igf/dcos.nl.xhtml [10:17:31] source/fsfe.org/activities/igf/igf.el.xhtml [10:17:31] source/fsfe.org/activities/igf/igf.en.xhtml [10:17:31] source/fsfe.org/activities/igf/igf.fr.xhtml [10:17:31] source/fsfe.org/activities/igf/igf.nl.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.ca.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.de.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.el.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.en.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.fr.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.it.xhtml [10:17:31] source/fsfe.org/activities/igf/sovsoft.nl.xhtml [10:17:31] source/fsfe.org/activities/igf/wgig.de.xhtml [10:17:31] source/fsfe.org/activities/igf/wgig.el.xhtml [10:17:31] source/fsfe.org/activities/igf/wgig.en.xhtml [10:17:31] source/fsfe.org/activities/igf/wgig.nl.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/index.de.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/index.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/index.fr.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/index.it.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/index.nl.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/artwork/artwork.el.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/artwork/artwork.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/artwork/artwork.it.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/artwork/artwork.nl.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/artwork/artwork.sq.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/report/report_2023.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/report/report_2024.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.de.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.el.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.es.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.fr.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.it.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.nl.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.pt.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/gallery.sq.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.en.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.it.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.nl.xhtml [10:17:31] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.sq.xhtml [10:17:31] source/fsfe.org/activities/ipred2/ipred2.de.xhtml [10:17:31] source/fsfe.org/activities/ipred2/ipred2.el.xhtml [10:17:31] source/fsfe.org/activities/ipred2/ipred2.en.xhtml [10:17:31] source/fsfe.org/activities/ipred2/ipred2.fr.xhtml [10:17:31] source/fsfe.org/activities/ipred2/ipred2.nl.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.de.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.el.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.en.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.es.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.it.xhtml [10:17:31] source/fsfe.org/activities/ipred2/letter-april-2007.nl.xhtml [10:17:31] source/fsfe.org/activities/licence-questions/licence-questions.en.xhtml [10:17:31] source/fsfe.org/activities/ln/application-confirm.en.xhtml [10:17:31] source/fsfe.org/activities/ln/application-success.en.xhtml [10:17:31] source/fsfe.org/activities/ln/application.en.xhtml [10:17:31] source/fsfe.org/activities/ln/council.en.xhtml [10:17:31] source/fsfe.org/activities/ln/llw-conf.en.xhtml [10:17:31] source/fsfe.org/activities/ln/llw-past.de.xhtml [10:17:31] source/fsfe.org/activities/ln/llw-past.en.xhtml [10:17:31] source/fsfe.org/activities/ln/llw.de.xhtml [10:17:31] source/fsfe.org/activities/ln/llw.en.xhtml [10:17:31] source/fsfe.org/activities/ln/ln-procedures.en.xhtml [10:17:31] source/fsfe.org/activities/ln/ln.de.xhtml [10:17:31] source/fsfe.org/activities/ln/ln.en.xhtml [10:17:31] source/fsfe.org/activities/ln/memberlist-confirm.en.xhtml [10:17:31] source/fsfe.org/activities/ln/memberlist-success.en.xhtml [10:17:31] source/fsfe.org/activities/ln/memberlist.en.xhtml [10:17:31] source/fsfe.org/activities/ln/modpolicy.en.xhtml [10:17:31] source/fsfe.org/activities/ln/rules.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/contact.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/contact.de.xhtml [10:17:31] source/fsfe.org/activities/mankind/contact.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/contact.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/done.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/done.de.xhtml [10:17:31] source/fsfe.org/activities/mankind/done.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/done.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/help.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/help.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/help.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/links.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/links.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/links.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/mankind.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/mankind.de.xhtml [10:17:31] source/fsfe.org/activities/mankind/mankind.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/mankind.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/press.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/press.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/press.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/support.ca.xhtml [10:17:31] source/fsfe.org/activities/mankind/support.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/support.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/index.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/index.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/press-release.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/press-release.es.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/press-release.fr.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/conclusion.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/contact.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/ethical.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/facts.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/independence.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/origin.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/plan.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/social.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/support.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/technical.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/threats.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/unesco.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/why1.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/why2.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/workdone.en.xhtml [10:17:31] source/fsfe.org/activities/mankind/lsm2002/slides/workinprogress.en.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.ca.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.de.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.en.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.es.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.fr.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.it.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/article-20060421.nl.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/background.el.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/background.en.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/background.fr.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/background.it.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/background.nl.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/intervention-20040930.en.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.el.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.en.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.fr.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.it.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.nl.xhtml [10:17:31] source/fsfe.org/activities/ms-vs-eu/timeline.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.de.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.el.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.es.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.fr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.it.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.sr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.el.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.fr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.it.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-interoperability.de.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-interoperability.el.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-interoperability.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-interoperability.fr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-interoperability.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.el.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.fr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.it.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.sr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.de.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.el.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.es.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.fr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.it.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.mk.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.pt.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml-questions.sr.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml.en.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml.es.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml.it.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml.nl.xhtml [10:17:31] source/fsfe.org/activities/msooxml/msooxml.sq.xhtml [10:17:31] source/fsfe.org/activities/ngi/ngi-past.en.xhtml [10:17:31] source/fsfe.org/activities/ngi/ngi.de.xhtml [10:17:31] source/fsfe.org/activities/ngi/ngi.en.xhtml [10:17:31] source/fsfe.org/activities/ngi/ngi.it.xhtml [10:17:31] source/fsfe.org/activities/nledu/nledu.de.xhtml [10:17:31] source/fsfe.org/activities/nledu/nledu.en.xhtml [10:17:31] source/fsfe.org/activities/nledu/nledu.it.xhtml [10:17:31] source/fsfe.org/activities/nledu/nledu.nl.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/bug-report-uk.en.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/bug-report.en.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.de.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.el.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.en.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.es.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.fr.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.hr.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.it.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.pt.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.ru.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/buglist.sq.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.de.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.el.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.en.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.es.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.it.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/follow-up.ru.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.de.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.el.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.en.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.es.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.fr.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.it.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.pt.xhtml [10:17:31] source/fsfe.org/activities/pdfreaders/guideline.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.de.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.el.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.es.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.et.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.fr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.hr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.it.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.pl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.pt.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.ro.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.sq.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/letter.sv.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.el.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.es.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fi.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.it.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.pt.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.sv.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.ar.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.cs.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.de.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.el.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.es.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.fr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.hr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.it.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.pl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.pt.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfreaders.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfsprint.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfsprint.es.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfsprint.it.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/pdfsprint.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition-error.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition-error.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition-success.el.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition-success.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition-success.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.ar.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.cs.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.de.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.el.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.en.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.es.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.et.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.fr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.hr.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.it.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.nl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.pl.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.pt.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.ro.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.ru.xhtml [10:17:32] source/fsfe.org/activities/pdfreaders/petition.sv.xhtml [10:17:32] source/fsfe.org/activities/publiccode/bea.de.xhtml [10:17:32] source/fsfe.org/activities/publiccode/brochure.de.xhtml [10:17:32] source/fsfe.org/activities/publiccode/brochure.en.xhtml [10:17:32] source/fsfe.org/activities/publiccode/brochure.it.xhtml [10:17:32] source/fsfe.org/activities/publiccode/get-active.en.xhtml [10:17:32] source/fsfe.org/activities/publiccode/get-active.es.xhtml [10:17:32] source/fsfe.org/activities/publiccode/get-active.it.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.de.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.en.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.es.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.fr.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.it.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.nl.xhtml [10:17:32] source/fsfe.org/activities/publiccode/publiccode.tr.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.de.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.el.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.en.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.fr.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.nl.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/radiodirective.tr.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/statement.de.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/statement.en.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/statement.es.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/statement.it.xhtml [10:17:32] source/fsfe.org/activities/radiodirective/statement.nl.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.de.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.el.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.en.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.es.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.fr.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.it.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.nl.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.pt.xhtml [10:17:32] source/fsfe.org/activities/routers/routers.tr.xhtml [10:17:32] source/fsfe.org/activities/routers/timeline.de.xhtml [10:17:32] source/fsfe.org/activities/routers/timeline.en.xhtml [10:17:32] source/fsfe.org/activities/routers/timeline.nl.xhtml [10:17:32] source/fsfe.org/activities/self/self.de.xhtml [10:17:32] source/fsfe.org/activities/self/self.el.xhtml [10:17:32] source/fsfe.org/activities/self/self.en.xhtml [10:17:32] source/fsfe.org/activities/self/self.fr.xhtml [10:17:32] source/fsfe.org/activities/self/self.it.xhtml [10:17:32] source/fsfe.org/activities/self/self.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade-register.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade-register.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade-register.mk.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade-register.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.de.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.es.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.fr.xhtml [10:17:32] source/fsfe.org/activities/stacs/belgrade.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/london-register.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/london-register.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/london-register.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/london.de.xhtml [10:17:32] source/fsfe.org/activities/stacs/london.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/london.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/london.fr.xhtml [10:17:32] source/fsfe.org/activities/stacs/london.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.de.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.es.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.fr.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.it.xhtml [10:17:32] source/fsfe.org/activities/stacs/stacs.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-belgrade.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-belgrade.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-belgrade.mk.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-belgrade.nl.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-london.el.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-london.en.xhtml [10:17:32] source/fsfe.org/activities/stacs/tmpl-london.nl.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.ca.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/background.ru.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.ca.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/documents.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/fsfe-patstrat-response.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/how-the-eu-patent-system-works.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040510.nl.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040531.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040531.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040531.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040531.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040706.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040706.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040706.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040706.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040706.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040802.nl.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040906.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040906.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040906.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20040906.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041004.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041004.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041004.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041004.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041004.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041101.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041101.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041101.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041101.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041206.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041206.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041206.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041206.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20041206.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050103.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050103.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050103.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050103.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050103.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050207.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050307.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050307.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050307.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050307.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050307.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050405.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050405.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050405.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050405.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050502.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050502.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050502.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050502.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050502.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050606.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050606.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050606.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050606.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20050606.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20101222.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/letter-20110406.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/memorandum.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/memorandum.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/memorandum.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/memorandum.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/nortel.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/novell-cptn.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/second-reading-bullets.nl.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.ca.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.es.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/status.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.ca.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.da.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.de.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.el.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.it.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.nl.xhtml [10:17:32] source/fsfe.org/activities/swpat/swpat.ru.xhtml [10:17:32] source/fsfe.org/activities/swpat/current/model-letter-companies.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/current/model-letter-companies.fr.xhtml [10:17:32] source/fsfe.org/activities/swpat/current/unitary-patent.en.xhtml [10:17:32] source/fsfe.org/activities/swpat/current/unitary-patent.fi.xhtml [10:17:32] source/fsfe.org/activities/swpat/current/unitary-patent.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool1.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool1.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool1.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool2.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool2.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool2.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool3.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool3.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool3.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool4.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool4.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool4.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool5.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool5.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool5.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool6.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool6.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool6.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool6.sv.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool7.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool7.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool7.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool7.sv.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool8.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool8.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool8.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tagatschool8.sv.xhtml [10:17:32] source/fsfe.org/activities/tgs/tgs.de.xhtml [10:17:32] source/fsfe.org/activities/tgs/tgs.en.xhtml [10:17:32] source/fsfe.org/activities/tgs/tgs.fr.xhtml [10:17:32] source/fsfe.org/activities/tgs/tgs.sv.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-confirm.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/application-success.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.el.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/individual-signatures.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.el.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/informationmaterial.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.ca.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.el.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.pl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/openletter.pt.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.el.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.tr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.de.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.en.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.es.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.fr.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.it.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.nl.xhtml [10:17:32] source/fsfe.org/activities/upcyclingandroid/workshops.tr.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.da.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.de.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.el.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.en.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.fr.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.it.xhtml [10:17:32] source/fsfe.org/activities/whyfs/whyfs.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/fser.de.xhtml [10:17:32] source/fsfe.org/activities/wipo/fser.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/fser.it.xhtml [10:17:32] source/fsfe.org/activities/wipo/fser.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.de.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.it.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/iprip.pt.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050413.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050415.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050620.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050721.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050930.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050930.fr.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20050930.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060223.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060223.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060223.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060628.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060628.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060628.fr.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20060628.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20070928.de.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20070928.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20070928.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20070928.it.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20070928.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090324.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090325.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090327.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090420-01.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090420-02.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090430-01.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090430-01.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090430-02.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090430-02.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090501.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20090501.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100125-01.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100125-02.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100125-03.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100125.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100127-01.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20100127-02.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101013.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101013.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101013.fr.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101013.pt.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101124-01.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101124-01.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101124-02.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/statement-20101124-02.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.de.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.es.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.fr.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.it.xhtml [10:17:32] source/fsfe.org/activities/wipo/wipo.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.de.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.el.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.en.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.es.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.fr.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.hu.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.it.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.nl.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.pt.xhtml [10:17:32] source/fsfe.org/activities/wipo/wiwo.ru.xhtml [10:17:32] source/fsfe.org/activities/wsis/cs-benchmarks-03-11-14.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/debriefing-geneva.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/debriefing-paris.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/event-03-12-10.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/fs.cs.xhtml [10:17:32] source/fsfe.org/activities/wsis/fs.de.xhtml [10:17:32] source/fsfe.org/activities/wsis/fs.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/fs.fi.xhtml [10:17:32] source/fsfe.org/activities/wsis/fs.ru.xhtml [10:17:32] source/fsfe.org/activities/wsis/issues.de.xhtml [10:17:32] source/fsfe.org/activities/wsis/issues.el.xhtml [10:17:32] source/fsfe.org/activities/wsis/issues.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/issues.nl.xhtml [10:17:32] source/fsfe.org/activities/wsis/ps-20030923.de.xhtml [10:17:32] source/fsfe.org/activities/wsis/ps-20030923.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/ps-20030923.it.xhtml [10:17:32] source/fsfe.org/activities/wsis/ps-20030923.nl.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis-and-software.de.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis-and-software.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis-and-software.nl.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis.en.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis.es.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis.it.xhtml [10:17:32] source/fsfe.org/activities/wsis/wsis.nl.xhtml [10:17:32] source/fsfe.org/activities/yh4f/faq.en.xhtml [10:17:32] source/fsfe.org/activities/yh4f/index.en.xhtml [10:17:32] source/fsfe.org/activities/yh4f/jury.en.xhtml [10:17:32] source/fsfe.org/activities/yh4f/media.en.xhtml [10:17:32] source/fsfe.org/activities/yh4f/register-confirm.en.xhtml [10:17:32] source/fsfe.org/activities/yh4f/register-success.en.xhtml [10:17:32] source/fsfe.org/activities/zooom/zooom.de.xhtml [10:17:32] source/fsfe.org/activities/zooom/zooom.en.xhtml [10:17:32] source/fsfe.org/contact/email-updates.en.xhtml [10:17:32] source/fsfe.org/contact/email-updates.it.xhtml [10:17:32] source/fsfe.org/contact/projects-call/projects-call.en.xhtml [10:17:32] source/fsfe.org/contact/projects-call/projects-call.it.xhtml [10:17:32] source/fsfe.org/contact/projects-call/projects-call.nl.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-confirm.en.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-confirm.it.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-confirm.nl.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-success.en.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-success.it.xhtml [10:17:32] source/fsfe.org/contact/projects-call/submission-success.nl.xhtml [10:17:32] source/fsfe.org/contribute/contribute.bg.xhtml [10:17:32] source/fsfe.org/contribute/contribute.de.xhtml [10:17:32] source/fsfe.org/contribute/contribute.en.xhtml [10:17:32] source/fsfe.org/contribute/contribute.es.xhtml [10:17:32] source/fsfe.org/contribute/contribute.fi.xhtml [10:17:32] source/fsfe.org/contribute/contribute.fr.xhtml [10:17:32] source/fsfe.org/contribute/contribute.it.xhtml [10:17:32] source/fsfe.org/contribute/contribute.nl.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.en.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.es.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.fr.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.it.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.nl.xhtml [10:17:32] source/fsfe.org/contribute/getyourgraphic.sq.xhtml [10:17:32] source/fsfe.org/contribute/promotion-materials-archive.de.xhtml [10:17:32] source/fsfe.org/contribute/promotion-materials-archive.en.xhtml [10:17:32] source/fsfe.org/contribute/promotion-materials-archive.fr.xhtml [10:17:32] source/fsfe.org/contribute/promotion-materials-archive.nl.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-freebie.en.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-ordererror.de.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-ordererror.en.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-ordererror.fr.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-ordererror.nl.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-ordererror.sq.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-orderthanks.de.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-orderthanks.en.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-orderthanks.fr.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-orderthanks.nl.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword-orderthanks.sq.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword.en.xhtml [10:17:32] source/fsfe.org/contribute/spreadtheword.it.xhtml [10:17:32] source/fsfe.org/contribute/advocacy/cwfs.en.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.cs.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.de.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.el.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.en.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.es.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.fr.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.it.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.nl.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.pt.xhtml [10:17:32] source/fsfe.org/contribute/designers/designers.ru.xhtml [10:17:32] source/fsfe.org/contribute/designers/styleguide.el.xhtml [10:17:32] source/fsfe.org/contribute/designers/styleguide.en.xhtml [10:17:32] source/fsfe.org/contribute/designers/styleguide.fr.xhtml [10:17:32] source/fsfe.org/contribute/designers/styleguide.it.xhtml [10:17:32] source/fsfe.org/contribute/editors/editorial-guidelines.en.xhtml [10:17:32] source/fsfe.org/contribute/editors/editorial-guidelines.it.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.cs.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.de.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.el.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.en.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.fr.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.it.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.nl.xhtml [10:17:32] source/fsfe.org/contribute/editors/editors.pt.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.bg.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.de.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.el.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.en.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.es.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.et.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.fi.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.fr.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.it.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.nb.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.nl.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.nn.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.pl.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.pt.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.ru.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.sq.xhtml [10:17:32] source/fsfe.org/contribute/translators/translators.sv.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.bg.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.ca.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.da.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.de.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.el.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.en.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.es.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.et.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.fi.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.fr.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.hu.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.it.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.nb.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.nl.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.pl.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.pt.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.ru.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.sq.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.sv.xhtml [10:17:32] source/fsfe.org/contribute/translators/wordlist.tr.xhtml [10:17:32] source/fsfe.org/contribute/web/features.en.xhtml [10:17:32] source/fsfe.org/contribute/web/web.de.xhtml [10:17:32] source/fsfe.org/contribute/web/web.en.xhtml [10:17:32] source/fsfe.org/contribute/web/web.fr.xhtml [10:17:32] source/fsfe.org/contribute/web/web.nl.xhtml [10:17:32] source/fsfe.org/contribute/web/web.sq.xhtml [10:17:32] source/fsfe.org/donate/donate.de.xhtml [10:17:32] source/fsfe.org/donate/donate.en.xhtml [10:17:32] source/fsfe.org/donate/donate.es.xhtml [10:17:32] source/fsfe.org/donate/donate.fr.xhtml [10:17:32] source/fsfe.org/donate/donate.it.xhtml [10:17:32] source/fsfe.org/donate/donate.nl.xhtml [10:17:32] source/fsfe.org/donate/germany.de.xhtml [10:17:32] source/fsfe.org/donate/hardware.de.xhtml [10:17:32] source/fsfe.org/donate/hardware.en.xhtml [10:17:32] source/fsfe.org/donate/hardware.es.xhtml [10:17:32] source/fsfe.org/donate/hardware.it.xhtml [10:17:32] source/fsfe.org/donate/hardware.nl.xhtml [10:17:32] source/fsfe.org/donate/hardware.sq.xhtml [10:17:32] source/fsfe.org/donate/letter-20041209.de.xhtml [10:17:32] source/fsfe.org/donate/letter-20041209.el.xhtml [10:17:32] source/fsfe.org/donate/letter-20041209.en.xhtml [10:17:32] source/fsfe.org/donate/letter-20041209.it.xhtml [10:17:32] source/fsfe.org/donate/letter-2009.de.xhtml [10:17:32] source/fsfe.org/donate/letter-2009.el.xhtml [10:17:32] source/fsfe.org/donate/letter-2009.en.xhtml [10:17:32] source/fsfe.org/donate/letter-2009.fr.xhtml [10:17:32] source/fsfe.org/donate/letter-2009.it.xhtml [10:17:32] source/fsfe.org/donate/letter-2011.en.xhtml [10:17:32] source/fsfe.org/donate/luxembourg.fr.xhtml [10:17:32] source/fsfe.org/donate/netherlands.nl.xhtml [10:17:32] source/fsfe.org/donate/payment.en.xhtml [10:17:32] source/fsfe.org/donate/switzerland.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2001.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2002.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2003.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2004.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2005.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2006.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2007.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2008.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2009.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.cs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2010.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2011.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.ru.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2012.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2013.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2014.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2015.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2016.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2017.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2018.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2018.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2018.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2018.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2018.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2019.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2019.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2019.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2019.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2019.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2020.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2021.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2022.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2023.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus-2024.sq.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.bs.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.de.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.el.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.en.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.fi.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.fr.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.it.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.nl.xhtml [10:17:32] source/fsfe.org/donate/thankgnus.sq.xhtml [10:17:32] source/fsfe.org/donate/thankyou.de.xhtml [10:17:32] source/fsfe.org/donate/thankyou.el.xhtml [10:17:32] source/fsfe.org/donate/thankyou.en.xhtml [10:17:32] source/fsfe.org/donate/thankyou.es.xhtml [10:17:32] source/fsfe.org/donate/thankyou.fr.xhtml [10:17:32] source/fsfe.org/donate/thankyou.it.xhtml [10:17:32] source/fsfe.org/donate/thankyou.nl.xhtml [10:17:32] source/fsfe.org/donate/thankyou.ru.xhtml [10:17:32] source/fsfe.org/donate/thankyou.sq.xhtml [10:17:32] source/fsfe.org/error/400.de.xhtml [10:17:32] source/fsfe.org/error/400.en.xhtml [10:17:32] source/fsfe.org/error/400.es.xhtml [10:17:32] source/fsfe.org/error/400.fr.xhtml [10:17:32] source/fsfe.org/error/400.it.xhtml [10:17:32] source/fsfe.org/error/400.nl.xhtml [10:17:32] source/fsfe.org/error/400.sq.xhtml [10:17:32] source/fsfe.org/error/401.de.xhtml [10:17:32] source/fsfe.org/error/401.en.xhtml [10:17:32] source/fsfe.org/error/401.es.xhtml [10:17:32] source/fsfe.org/error/401.fr.xhtml [10:17:32] source/fsfe.org/error/401.it.xhtml [10:17:32] source/fsfe.org/error/401.nl.xhtml [10:17:32] source/fsfe.org/error/401.sq.xhtml [10:17:32] source/fsfe.org/error/403.de.xhtml [10:17:32] source/fsfe.org/error/403.en.xhtml [10:17:32] source/fsfe.org/error/403.es.xhtml [10:17:32] source/fsfe.org/error/403.fr.xhtml [10:17:32] source/fsfe.org/error/403.it.xhtml [10:17:32] source/fsfe.org/error/403.nl.xhtml [10:17:32] source/fsfe.org/error/403.sq.xhtml [10:17:32] source/fsfe.org/error/404.de.xhtml [10:17:32] source/fsfe.org/error/404.en.xhtml [10:17:32] source/fsfe.org/error/404.es.xhtml [10:17:32] source/fsfe.org/error/404.fr.xhtml [10:17:32] source/fsfe.org/error/404.it.xhtml [10:17:32] source/fsfe.org/error/404.nl.xhtml [10:17:32] source/fsfe.org/error/404.sq.xhtml [10:17:32] source/fsfe.org/error/405.de.xhtml [10:17:32] source/fsfe.org/error/405.en.xhtml [10:17:32] source/fsfe.org/error/405.es.xhtml [10:17:32] source/fsfe.org/error/405.fr.xhtml [10:17:32] source/fsfe.org/error/405.it.xhtml [10:17:32] source/fsfe.org/error/405.nl.xhtml [10:17:32] source/fsfe.org/error/405.sq.xhtml [10:17:32] source/fsfe.org/error/408.de.xhtml [10:17:32] source/fsfe.org/error/408.en.xhtml [10:17:32] source/fsfe.org/error/408.fr.xhtml [10:17:32] source/fsfe.org/error/408.it.xhtml [10:17:32] source/fsfe.org/error/408.sq.xhtml [10:17:32] source/fsfe.org/error/410.de.xhtml [10:17:32] source/fsfe.org/error/410.en.xhtml [10:17:32] source/fsfe.org/error/410.fr.xhtml [10:17:32] source/fsfe.org/error/410.it.xhtml [10:17:32] source/fsfe.org/error/410.nl.xhtml [10:17:32] source/fsfe.org/error/410.sq.xhtml [10:17:32] source/fsfe.org/error/411.de.xhtml [10:17:32] source/fsfe.org/error/411.en.xhtml [10:17:32] source/fsfe.org/error/411.fr.xhtml [10:17:32] source/fsfe.org/error/411.it.xhtml [10:17:32] source/fsfe.org/error/411.nl.xhtml [10:17:32] source/fsfe.org/error/411.sq.xhtml [10:17:32] source/fsfe.org/error/412.de.xhtml [10:17:32] source/fsfe.org/error/412.en.xhtml [10:17:32] source/fsfe.org/error/412.it.xhtml [10:17:32] source/fsfe.org/error/412.sq.xhtml [10:17:32] source/fsfe.org/error/413.de.xhtml [10:17:32] source/fsfe.org/error/413.en.xhtml [10:17:32] source/fsfe.org/error/413.it.xhtml [10:17:32] source/fsfe.org/error/413.nl.xhtml [10:17:32] source/fsfe.org/error/413.sq.xhtml [10:17:32] source/fsfe.org/error/414.de.xhtml [10:17:32] source/fsfe.org/error/414.en.xhtml [10:17:32] source/fsfe.org/error/414.fr.xhtml [10:17:32] source/fsfe.org/error/414.it.xhtml [10:17:32] source/fsfe.org/error/414.nl.xhtml [10:17:32] source/fsfe.org/error/414.sq.xhtml [10:17:32] source/fsfe.org/error/415.de.xhtml [10:17:32] source/fsfe.org/error/415.en.xhtml [10:17:32] source/fsfe.org/error/415.fr.xhtml [10:17:32] source/fsfe.org/error/415.it.xhtml [10:17:32] source/fsfe.org/error/415.nl.xhtml [10:17:32] source/fsfe.org/error/415.sq.xhtml [10:17:32] source/fsfe.org/error/500.de.xhtml [10:17:32] source/fsfe.org/error/500.en.xhtml [10:17:32] source/fsfe.org/error/500.es.xhtml [10:17:32] source/fsfe.org/error/500.fr.xhtml [10:17:32] source/fsfe.org/error/500.it.xhtml [10:17:32] source/fsfe.org/error/500.nl.xhtml [10:17:32] source/fsfe.org/error/500.sq.xhtml [10:17:32] source/fsfe.org/error/501.de.xhtml [10:17:32] source/fsfe.org/error/501.en.xhtml [10:17:32] source/fsfe.org/error/501.es.xhtml [10:17:32] source/fsfe.org/error/501.fr.xhtml [10:17:32] source/fsfe.org/error/501.it.xhtml [10:17:32] source/fsfe.org/error/501.nl.xhtml [10:17:32] source/fsfe.org/error/501.sq.xhtml [10:17:32] source/fsfe.org/error/502.de.xhtml [10:17:32] source/fsfe.org/error/502.en.xhtml [10:17:32] source/fsfe.org/error/502.es.xhtml [10:17:32] source/fsfe.org/error/502.fr.xhtml [10:17:32] source/fsfe.org/error/502.it.xhtml [10:17:32] source/fsfe.org/error/502.nl.xhtml [10:17:32] source/fsfe.org/error/502.sq.xhtml [10:17:32] source/fsfe.org/error/503.de.xhtml [10:17:32] source/fsfe.org/error/503.en.xhtml [10:17:32] source/fsfe.org/error/503.es.xhtml [10:17:32] source/fsfe.org/error/503.fr.xhtml [10:17:32] source/fsfe.org/error/503.it.xhtml [10:17:32] source/fsfe.org/error/503.nl.xhtml [10:17:32] source/fsfe.org/error/503.sq.xhtml [10:17:32] source/fsfe.org/events/SFD-2010.el.xhtml [10:17:32] source/fsfe.org/events/SFD-2010.en.xhtml [10:17:32] source/fsfe.org/events/archive-template.en.xhtml [10:17:32] source/fsfe.org/events/events.de.xhtml [10:17:32] source/fsfe.org/events/events.en.xhtml [10:17:32] source/fsfe.org/events/events.es.xhtml [10:17:32] source/fsfe.org/events/events.fr.xhtml [10:17:32] source/fsfe.org/events/events.it.xhtml [10:17:32] source/fsfe.org/events/events.nl.xhtml [10:17:32] source/fsfe.org/events/fscons-2010.el.xhtml [10:17:32] source/fsfe.org/events/fscons-2010.en.xhtml [10:17:32] source/fsfe.org/events/fscons-2010.pt.xhtml [10:17:32] source/fsfe.org/events/2004/picnic.en.xhtml [10:17:32] source/fsfe.org/events/2004/picnic.sv.xhtml [10:17:32] source/fsfe.org/events/2004/FISL/fisl.en.xhtml [10:17:32] source/fsfe.org/events/2004/FISL/fisl.it.xhtml [10:17:32] source/fsfe.org/events/2004/FISL/fisl.sv.xhtml [10:17:32] source/fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.en.xhtml [10:17:32] source/fsfe.org/events/2005/wsf-brazil/wsf-brazil.en.xhtml [10:17:32] source/fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.en.xhtml [10:17:32] source/fsfe.org/events/2011/lnm-award-debian.en.xhtml [10:17:32] source/fsfe.org/events/2012/fscons-2012.en.xhtml [10:17:32] source/fsfe.org/events/2013/linuxtag-2013.en.xhtml [10:17:32] source/fsfe.org/events/2013/linuxtag-2013.sq.xhtml [10:17:32] source/fsfe.org/events/2013/panel-btw2013.de.xhtml [10:17:32] source/fsfe.org/events/2013/panel-btw2013.en.xhtml [10:17:32] source/fsfe.org/events/2013/rmll-2-2013.en.xhtml [10:17:32] source/fsfe.org/events/2013/rmll-2-2013.sq.xhtml [10:17:32] source/fsfe.org/events/2013/rmll-2013.el.xhtml [10:17:32] source/fsfe.org/events/2013/rmll-2013.en.xhtml [10:17:32] source/fsfe.org/events/2013/rmll-2013.sq.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.de.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.el.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.en.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.es.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.fr.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.it.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.nl.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20160616-01.sq.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.de.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.el.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.en.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.es.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.fr.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.it.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.nl.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-01.sq.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-02.en.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-02.es.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-02.nl.xhtml [10:17:32] source/fsfe.org/events/2016/summit/event-20161106-02.sq.xhtml [10:17:32] source/fsfe.org/events/clt/clt-bus.de.xhtml [10:17:32] source/fsfe.org/events/clt/clt-hotel.de.xhtml [10:17:32] source/fsfe.org/events/tools/eventregistration.de.xhtml [10:17:32] source/fsfe.org/events/tools/eventregistration.en.xhtml [10:17:32] source/fsfe.org/events/tools/eventregistration.it.xhtml [10:17:32] source/fsfe.org/events/tools/eventregistration.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/artificial-intelligence.en.xhtml [10:17:32] source/fsfe.org/freesoftware/artificial-intelligence.it.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.de.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.en.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.es.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.it.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/comparison.sq.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.ca.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.da.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.de.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.el.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.en.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.es.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.fi.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.fr.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.hu.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.it.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.ro.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.ru.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.sk.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.sq.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.tr.xhtml [10:17:32] source/fsfe.org/freesoftware/democracy.uk.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.ar.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.de.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.el.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.en.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.es.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.fr.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.hr.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.it.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.ja.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.pl.xhtml [10:17:32] source/fsfe.org/freesoftware/freesoftware.tr.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.bg.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.ca.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.da.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.de.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.el.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.en.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.es.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.fr.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.it.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.pt.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.ru.xhtml [10:17:32] source/fsfe.org/freesoftware/gnuproject.sq.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.de.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.el.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.en.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.es.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.fr.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.it.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.nl.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.ru.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.sl.xhtml [10:17:32] source/fsfe.org/freesoftware/secure-boot.sq.xhtml [10:17:32] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.xhtml [10:17:32] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.en.xhtml [10:17:32] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.it.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.cs.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.de.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.el.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.en.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.es.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.it.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/education/argumentation.ru.xhtml [10:17:33] source/fsfe.org/freesoftware/education/edu-related-content.en.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.de.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.el.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.en.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.it.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.ru.xhtml [10:17:33] source/fsfe.org/freesoftware/education/education.sv.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.de.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.el.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.en.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.es.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.it.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/education/eduteam.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/faq.de.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/faq.en.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/led.en.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/led.it.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/legal.en.xhtml [10:17:33] source/fsfe.org/freesoftware/legal/legal.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/procurement/mEUcrosoft.en.xhtml [10:17:33] source/fsfe.org/freesoftware/procurement/procurement.da.xhtml [10:17:33] source/fsfe.org/freesoftware/procurement/procurement.en.xhtml [10:17:33] source/fsfe.org/freesoftware/procurement/procurement.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/procurement/procurement.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.de.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.es.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/bt-open-letter.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.de.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.es.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.et.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.hr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.it.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.ro.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/def.ru.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/dfd.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/dfd.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/dfd.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eif-v3.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2-01.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2-01.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2-01.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/eifv2.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/guardian-open-letter.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/minimalisticstandards.de.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/minimalisticstandards.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.cs.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.de.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.it.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/ps.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.da.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.de.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.el.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.es.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.fr.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.it.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.pt.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.ro.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.ru.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/standards.sq.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/transparency-letter.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/uk-standards-consultation.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.en.xhtml [10:17:33] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.nl.xhtml [10:17:33] source/fsfe.org/freesoftware/sustainability/sustainability.de.xhtml [10:17:33] source/fsfe.org/freesoftware/sustainability/sustainability.en.xhtml [10:17:33] source/fsfe.org/freesoftware/sustainability/sustainability.it.xhtml [10:17:33] source/fsfe.org/internal/bc.en.xhtml [10:17:33] source/fsfe.org/internal/er.en.xhtml [10:17:33] source/fsfe.org/internal/nt.en.xhtml [10:17:33] source/fsfe.org/internal/pd-result.en.xhtml [10:17:33] source/fsfe.org/internal/pd.en.xhtml [10:17:33] source/fsfe.org/internal/pt.en.xhtml [10:17:33] source/fsfe.org/internal/rc-result.en.xhtml [10:17:33] source/fsfe.org/internal/rc.en.xhtml [10:17:33] source/fsfe.org/news/archive-template.en.xhtml [10:17:33] source/fsfe.org/news/news.ca.xhtml [10:17:33] source/fsfe.org/news/news.cs.xhtml [10:17:33] source/fsfe.org/news/news.da.xhtml [10:17:33] source/fsfe.org/news/news.de.xhtml [10:17:33] source/fsfe.org/news/news.el.xhtml [10:17:33] source/fsfe.org/news/news.en.xhtml [10:17:33] source/fsfe.org/news/news.es.xhtml [10:17:33] source/fsfe.org/news/news.et.xhtml [10:17:33] source/fsfe.org/news/news.fi.xhtml [10:17:33] source/fsfe.org/news/news.fr.xhtml [10:17:33] source/fsfe.org/news/news.hr.xhtml [10:17:33] source/fsfe.org/news/news.hu.xhtml [10:17:33] source/fsfe.org/news/news.it.xhtml [10:17:33] source/fsfe.org/news/news.nb.xhtml [10:17:33] source/fsfe.org/news/news.nl.xhtml [10:17:33] source/fsfe.org/news/news.pt.xhtml [10:17:33] source/fsfe.org/news/news.ro.xhtml [10:17:33] source/fsfe.org/news/news.ru.xhtml [10:17:33] source/fsfe.org/news/news.sl.xhtml [10:17:33] source/fsfe.org/news/news.sq.xhtml [10:17:33] source/fsfe.org/news/news.sr.xhtml [10:17:33] source/fsfe.org/news/news.sv.xhtml [10:17:33] source/fsfe.org/news/newsletter.de.xhtml [10:17:33] source/fsfe.org/news/newsletter.en.xhtml [10:17:33] source/fsfe.org/news/newsletter.es.xhtml [10:17:33] source/fsfe.org/news/newsletter.fr.xhtml [10:17:33] source/fsfe.org/news/newsletter.it.xhtml [10:17:33] source/fsfe.org/news/newsletter.nl.xhtml [10:17:33] source/fsfe.org/news/podcast-opus.en.xhtml [10:17:33] source/fsfe.org/news/podcast.en.xhtml [10:17:33] source/fsfe.org/news/podcast.nl.xhtml [10:17:33] source/fsfe.org/news/2001/article-13.12.2001.de.xhtml [10:17:33] source/fsfe.org/news/2001/article-24.9.2001.de.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.de.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.en.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.es.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.fr.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.it.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-10-20-01.pt.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-12-17-01.en.xhtml [10:17:33] source/fsfe.org/news/2001/article2001-12-17-01.pt.xhtml [10:17:33] source/fsfe.org/news/2002/article-25.04.2002.de.xhtml [10:17:33] source/fsfe.org/news/2002/article-30.9.2002.de.xhtml [10:17:33] source/fsfe.org/news/2002/article2002-01-18-01.en.xhtml [10:17:33] source/fsfe.org/news/2002/article2002-01-18-01.es.xhtml [10:17:33] source/fsfe.org/news/2002/article2002-01-18-01.fr.xhtml [10:17:33] source/fsfe.org/news/2002/article2002-01-18-01.pt.xhtml [10:17:33] source/fsfe.org/news/2003/commissione-meo-presentazione.it.xhtml [10:17:33] source/fsfe.org/news/2003/commissione-meo-risposte.it.xhtml [10:17:33] source/fsfe.org/news/2003/lettera_MIUR-2003-07-16.it.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030211-01.el.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030211-01.en.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030211-01.it.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030211-01.nl.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030602-01.el.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030602-01.en.xhtml [10:17:33] source/fsfe.org/news/2003/news-20030602-01.nl.xhtml [10:17:33] source/fsfe.org/news/2003/vsi-studie.de.xhtml [10:17:33] source/fsfe.org/news/2004/cie.it.xhtml [10:17:33] source/fsfe.org/news/2004/cw-interview.de.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040521.de.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040624.de.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.ca.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.de.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.en.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.fr.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.it.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.nl.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.pl.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040917.sr.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20040930.de.xhtml [10:17:33] source/fsfe.org/news/2004/navigator-20041129.de.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040510-01.en.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040621-01.it.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040701-01.de.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040701-01.en.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040701-01.fr.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040701-01.it.xhtml [10:17:33] source/fsfe.org/news/2004/news-20040727-01.en.xhtml [10:17:33] source/fsfe.org/news/2005/letter-20050511-it-mep.it.xhtml [10:17:33] source/fsfe.org/news/2005/news-20050507-01.el.xhtml [10:17:33] source/fsfe.org/news/2005/news-20050507-01.en.xhtml [10:17:33] source/fsfe.org/news/2007/news-20070630-01.el.xhtml [10:17:33] source/fsfe.org/news/2007/news-20070630-01.en.xhtml [10:17:33] source/fsfe.org/news/2007/news-20070630-01.nl.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.de.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.el.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.en.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.es.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.it.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.nl.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071220-01.sv.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071221-01.da.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071221-01.el.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071221-01.en.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071221-01.it.xhtml [10:17:33] source/fsfe.org/news/2007/news-20071221-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.de.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.el.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.en.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.fr.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.it.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.nb.xhtml [10:17:33] source/fsfe.org/news/2008/freedom-not-fear.nl.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.de.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.el.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.en.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.fr.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.it.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.nb.xhtml [10:17:33] source/fsfe.org/news/2008/gnu-25-years.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080118-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080118-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080118-01.es.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080118-01.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080118-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080214-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080214-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080214-01.es.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080214-01.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080214-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080220-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080220-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080220-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080222-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080222-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080222-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.ca.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.es.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.fr.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080228-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080301-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080301-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080301-01.fr.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080301-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080305-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080305-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080305-01.fr.xhtml [10:17:33] source/fsfe.org/news/2008/news-20080305-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.de.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.fi.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.fr.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081202-02.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081208-01.de.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081208-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081208-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081208-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.de.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.es.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.fr.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081210-01.nl.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.de.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.el.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.en.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.es.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.fi.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.it.xhtml [10:17:33] source/fsfe.org/news/2008/news-20081215-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.nb.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090120-02.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090123-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090123-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090123-01.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090123-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090123-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090202-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.bg.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090227-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090301-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090301-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090301-01.nb.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090301-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090301-01.nn.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090311-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090311-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090311-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090311-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090323-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090323-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090323-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090323-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090325-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090325-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090325-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090411-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090411-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090411-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090414-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090414-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090414-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090414-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090418-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090418-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090418-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090418-01.nb.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090418-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090430-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090430-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090515-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090515-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090515-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090601-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090601-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090601-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090601-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090604-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090604-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090604-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090610-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090620-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090620-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090620-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090624-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090624-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090624-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090624-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090728-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090728-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090728-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090728-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090728-01.tr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090831-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090831-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090831-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090831-01.tr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090908-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090908-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090908-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090908-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090908-01.tr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20090921-01.tr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091005-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091005-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091005-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091005-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091006-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091006-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091006-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091006-01.tr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091008-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091008-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091008-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091008-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091019-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.es.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091023-02.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-02.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-02.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091109-02.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091118-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091118-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091118-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091118-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091118-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091127-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091127-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091127-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091127-01.it.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091127-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091216-01.de.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091216-01.el.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091216-01.en.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091216-01.fr.xhtml [10:17:33] source/fsfe.org/news/2009/news-20091216-01.nl.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.bg.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.de.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.el.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.en.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.es.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.fi.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.it.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.nb.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.nl.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.pt.xhtml [10:17:33] source/fsfe.org/news/2009/nyr.sr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.nl.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100126-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100129-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100129-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100129-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100129-01.nl.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100129-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100212-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100222-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100222-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100222-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100222-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100222-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.ca.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.nl.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100302-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100305-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100305-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100305-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100305-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100324-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100324-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100324-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100324-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100324-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100330-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100330-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100330-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100330-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100330-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100331-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100331-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100331-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100331-01.nb.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100331-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100428-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100508-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100510-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100510-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100519-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100519-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100702-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100702-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100702-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100702-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100705-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100705-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100705-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100802-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100802-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100802-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100802-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100803-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100803-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100907-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100907-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100907-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100907-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100907-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20100913-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101016-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101016-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101016-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101016-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101016-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101018-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101102-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101108-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101108-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101108-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101108-01.pt.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101207-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101207-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101207-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101207-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101216-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101216-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101216-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101216-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.de.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.el.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.en.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.es.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.fr.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.it.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.pl.xhtml [10:17:33] source/fsfe.org/news/2010/news-20101217-01.ru.xhtml [10:17:33] source/fsfe.org/news/2010/th-eulogy-20100508.de.xhtml [10:17:33] source/fsfe.org/news/2011/mapping-uk.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110113-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110113-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110113-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110201-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110201-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110201-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.hr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.pt.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-01.sv.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-02.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-02.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110202-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110209-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110209-01.fr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110209-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.fr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.hr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110214-01.pl.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110215-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110215-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110215-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110225-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110225-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110301-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110310-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110310-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110310-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110318-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110321-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110321-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110325-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-02.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-03.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110330-04.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110401-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110412-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110415-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110415-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110418-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110420-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110420-01.fr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110421-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110421-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110502-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110511-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110511-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110520-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110523-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110523-01.hr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110525-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110608-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110620-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110620-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110620-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110620-01.fr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110620-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110622-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110622-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110718-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110809-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110913-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20110919-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111025-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111107-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111107-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111107-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111107-01.nl.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111110-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111110-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111110-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111110-01.ru.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111114-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111114-01.es.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111114-01.sv.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111117-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111122-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.el.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.es.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.fr.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.it.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.nl.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-01.ru.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111128-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111201-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111201-02.de.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111201-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111206-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111208-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111208-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111213-01.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111213-02.en.xhtml [10:17:33] source/fsfe.org/news/2011/news-20111220-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120109-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120109-02.sq.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-01.sk.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-01.sq.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-02.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120110-02.sq.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120120-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120126-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120130-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120131-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120202-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120202-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120204-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120209-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120210-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120210-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120214-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120223-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120228-01.sq.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120303-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120303-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.cs.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120321-01.sk.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120322-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120323-02.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120323-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120323-03.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120323-03.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-02.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-02.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120328-02.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120330-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120330-01.sk.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120402-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120405-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120405-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120405-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-01.fi.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120412-02.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120425-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120425-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120426-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120501-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120502-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120508-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.et.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.ru.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.sk.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-01.sv.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-02.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-02.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-02.ru.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120509-02.sk.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120525-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120525-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120525-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120528-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120601-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120607-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120616-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120619-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120619-01.fi.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120627-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120627-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120627-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120711-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120711-01.fi.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120730-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120730-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120730-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120730-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120730-02.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120831-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120907-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120907-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120907-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120907-01.fi.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120907-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120918-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120920-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120920-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120921-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120921-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120925-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120925-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20120925-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121018-01.el.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121018-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121022-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121101-02.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121102-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121102-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121102-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121106-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121112-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121112-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121116-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121120-01.de.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121120-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121122-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121129-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121208-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121211-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121211-01.es.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121211-01.fi.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121211-01.fr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121214-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121217-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121217-01.it.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121217-01.sq.xhtml [10:17:33] source/fsfe.org/news/2012/news-20121217-01.sr.xhtml [10:17:33] source/fsfe.org/news/2012/news-20130329-01.en.xhtml [10:17:33] source/fsfe.org/news/2012/report-2012.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130212-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130212-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130212-01.fr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130212-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130212-01.sr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130218-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130221-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130221-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130226-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130226-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130312-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130312-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130319-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130319-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-02.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-02.fr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130327-02.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130402-01.el.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130402-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130402-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130422-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130422-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130423-02.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130423-02.ro.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130423-02.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130424-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130424-01.ro.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130424-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130429-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130429-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130503-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130503-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130503-01.es.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130503-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130611-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130611-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130612-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130612-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130612-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130620-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130620-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130620-01.tr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130620-02.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130620-02.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130625-02.el.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130625-02.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130625-02.fr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130625-02.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.fr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.pt.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.ru.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130626-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130703-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130703-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130703-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130712-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130712-01.fr.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130712-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130716-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130716-01.it.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130716-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130729-01.el.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130729-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130729-01.pt.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130729-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130729-02.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130730-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130730-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130730-01.et.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130730-01.pt.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130730-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130918-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130920-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130920-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130923-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130923-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130926-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130927-01.da.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130927-01.el.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130927-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20130927-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131104-02.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131105-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131107-01.el.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131107-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131107-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131211-01.de.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131213-01.en.xhtml [10:17:33] source/fsfe.org/news/2013/news-20131213-01.sq.xhtml [10:17:33] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.en.xhtml [10:17:33] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.et.xhtml [10:17:33] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.en.xhtml [10:17:33] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.et.xhtml [10:17:33] source/fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.et.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140116-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140116-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140116-01.fr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140116-01.it.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140116-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140210-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140210-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140210-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140211-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140211-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140211-01.fr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140221-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140221-01.it.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140221-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140226-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140226-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140303-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140303-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140304-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140304-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140310-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140314-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140314-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140324-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140324-01.es.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140324-01.fr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140324-01.pt.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140324-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-01.es.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-01.tr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-02.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140326-02.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140328-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140328-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140328-01.ru.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140328-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140424-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140424-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140424-01.ru.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140424-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.es.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.ru.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140506-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140527-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140527-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140527-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140527-01.ru.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140527-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.es.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.ru.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140528-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140708-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140708-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140708-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140708-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140801-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140801-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140801-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.fr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.it.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.pt.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140912-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20140929-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141016-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141016-01.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141016-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141016-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141016-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-01.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-01.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-01.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-01.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.el.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.fr.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.it.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141017-02.sq.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141120-02.de.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141120-02.en.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141120-02.nl.xhtml [10:17:33] source/fsfe.org/news/2014/news-20141203-01.de.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.es.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.fr.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.it.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.sr.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141203-01.tr.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141212-01.el.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141212-01.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141212-01.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141212-01.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141217-01.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141217-01.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141217-01.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-01.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-01.fr.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-01.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-01.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.de.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.es.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.fr.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.it.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141218-02.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.el.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.en.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.es.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.nl.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.sq.xhtml [10:17:34] source/fsfe.org/news/2014/news-20141219-01.sr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.pt.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150209-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150210-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150210-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150210-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150210-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150210-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150218-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150218-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150218-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150224-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150301-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150301-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150302-02.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150302-02.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150302-02.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150303-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150303-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150303-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150303-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150306-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150306-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150306-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150306-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150316-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150316-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150316-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150324-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150324-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150324-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150324-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150325-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150325-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150325-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150325-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150331-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150331-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150331-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-02.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150401-02.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150414-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150414-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150414-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150506-01.tr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150527-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150527-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150605-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150605-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150605-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150605-02.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150616-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150616-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150616-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150817-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150817-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150817-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150817-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150829-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150902-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150902-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150902-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150902-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150916-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150918-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150918-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150918-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150918-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150918-02.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20150922-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.pt.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151013-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151020-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151020-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151020-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151020-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151028-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151028-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151028-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151028-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151104-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151104-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151104-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151104-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151105-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151110-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151110-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151110-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151110-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151110-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151203-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151203-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151203-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151203-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151203-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.de.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.el.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.en.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.es.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.fr.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.it.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.nl.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.sq.xhtml [10:17:34] source/fsfe.org/news/2015/news-20151216-01.tr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160118-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160118-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160118-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160118-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160122-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.es.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.it.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160126-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160128-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160128-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160128-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160128-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160205-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160205-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160205-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160208-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160208-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160208-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160208-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160222-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160222-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160222-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160224-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160224-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160224-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160406-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160411-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160411-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160411-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160411-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.es.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.pt.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-02.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-02.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160428-02.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160502-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160502-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160502-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160624-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160624-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160624-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160630-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160630-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160630-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160725-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160725-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160725-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160725-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.el.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.es.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.it.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160804-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160809-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160809-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160809-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160809-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.el.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160817-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160823-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160823-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160831-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160907-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160907-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160907-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160907-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160928-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160928-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160928-01.pt.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160928-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160930-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20160930-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161027-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161031-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161031-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161031-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161110-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161110-01.es.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161110-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161110-01.ru.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161110-01.sq.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.de.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.el.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.en.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.es.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.fr.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.it.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.nl.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.pt.xhtml [10:17:34] source/fsfe.org/news/2016/news-20161202-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170105-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170105-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170105-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170109-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170109-01.es.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170109-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170109-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170110-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170110-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170110-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170116-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170116-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170116-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170209-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170209-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170209-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-02.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170214-02.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170217-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170217-01.es.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170217-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170217-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170301-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170301-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170302-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170302-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170302-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170315-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170315-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170315-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170321-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170328-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170328-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170328-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170419-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170419-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170419-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170425-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170425-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170613-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170613-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170616-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170616-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170616-01.it.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170616-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170619-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170619-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170619-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170710-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170710-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170710-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170726-01.cs.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170726-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170726-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170726-01.fr.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170726-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170811-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170811-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170811-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170811-01.ru.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170811-01.sq.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170829-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170829-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170829-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170905-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170906-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170906-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170908-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170908-01.fr.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170908-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170911-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170911-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.es.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.fr.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20170913-01.zh.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171005-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171005-01.es.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171005-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171013-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171013-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171024-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171107-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171107-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171108-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171108-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171109-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171109-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171114-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171116-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171116-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171130-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171130-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171206-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171206-01.es.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171206-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171207-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171207-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171207-02.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171211-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171211-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171211-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171212-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171212-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171212-01.nl.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171219-01.de.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171219-01.en.xhtml [10:17:34] source/fsfe.org/news/2017/news-20171219-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180111-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180119-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180212-01.el.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180212-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180212-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180212-01.sq.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180215-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180215-01.sq.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180219-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180219-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180219-01.it.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180219-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180219-01.sq.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180302-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180302-01.it.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180308-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180308-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180308-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180308-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180308-01.sv.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180322-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180322-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180322-01.it.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180322-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180322-01.sq.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180414-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180414-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180414-01.sq.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180526-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180526-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180526-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180529-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180529-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180530-02.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180530-02.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180530-02.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180601-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180601-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180601-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180601-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180613-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180613-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180613-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180613-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180705-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180705-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180705-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180705-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180716-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180716-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180723-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180723-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180725-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180725-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180725-01.es.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180725-01.fr.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180725-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180905-02.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180905-02.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180907-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180907-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180913-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180917-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20180917-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181010-01.de.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181010-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181023-02.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181023-02.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181024-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181024-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181105-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181105-01.nl.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181205-01.en.xhtml [10:17:34] source/fsfe.org/news/2018/news-20181205-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190108-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190124-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190124-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190124-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190124-01.fr.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190124-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190205-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190205-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190205-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190214-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190308-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190326-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190326-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190326-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190329-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190329-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190514-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190514-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190514-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-02.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-02.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190515-02.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190520-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190520-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190520-01.it.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190520-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190701-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190806-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190806-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190807-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190807-01.it.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190807-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190827-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190827-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190827-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190827-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190917-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190917-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190917-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190917-01.fr.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190917-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190927-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20190927-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191002-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191002-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191007-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191007-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191007-01.fr.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191007-01.it.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191007-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191012-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191012-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191014-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191014-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191022-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191022-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191022-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191028-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191028-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191028-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191028-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191028-01.sv.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191102-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191102-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191102-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191112-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191112-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191113-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191113-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191120-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191125-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191125-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191125-01.es.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191125-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191128-01.de.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191128-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191128-01.nl.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191205-01.en.xhtml [10:17:34] source/fsfe.org/news/2019/news-20191205-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200121-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200121-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200121-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200129-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200212-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200212-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200212-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200212-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200228-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200228-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200228-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200302-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200302-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200302-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200302-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200310-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200310-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200310-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200311-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200311-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200327-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200327-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200327-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200330-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200330-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200330-01.fr.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200330-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200330-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200402-02.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200402-02.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200402-02.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200402-02.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200403-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200403-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200403-01.fr.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200403-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200403-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200408-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200408-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200408-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200408-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200411-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200411-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200411-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200415-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200415-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200415-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200415-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200424-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200424-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200424-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200427-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200427-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200427-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200506-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200506-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200506-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200506-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200514-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200514-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200514-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200514-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200519-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200519-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200519-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200519-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200601-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200601-01.fr.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200601-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200601-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200609-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200609-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200609-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200609-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200610-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200610-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200610-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200610-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200629-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200629-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200629-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200630-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200630-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200630-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200630-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200720-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200720-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200720-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200720-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200810-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200810-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200810-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200810-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200820-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200820-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200820-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200904-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200904-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200904-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200907-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200907-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200907-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200910-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200910-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200910-01.es.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200910-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20200910-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201005-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201005-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201009-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201009-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201009-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201019-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201019-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201019-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201023-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201023-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201023-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201110-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201110-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201112-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201112-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201112-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201112-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201120-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201120-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201120-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201208-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201208-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201208-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201208-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201210-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201210-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201210-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201210-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201211-01.de.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201211-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201211-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201211-01.nl.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201215-01.en.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201215-01.it.xhtml [10:17:34] source/fsfe.org/news/2020/news-20201215-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210119-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210119-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210127-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210127-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210127-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210203-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210203-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210203-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210204-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210204-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210204-02.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210204-02.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210209-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210209-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210214-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210214-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210219-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210219-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210302-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210302-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210302-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210302-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210305-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210305-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210311-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210311-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210317-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210317-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210317-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210318-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210318-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210318-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210324-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210330-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210330-01.fr.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210330-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210330-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210331-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210331-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210331-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210331-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210406-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210406-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210406-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210420-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210420-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210420-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210427-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210427-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210427-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210504-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210504-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210504-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210505-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210505-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210505-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210506-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210506-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210506-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210506-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210521-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210521-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210521-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210525-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210525-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210525-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210526-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210526-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210526-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210529-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210529-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210609-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210609-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210609-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210611-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210611-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210611-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210611-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210625-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210625-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210629-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210629-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210629-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210721-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210721-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210721-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210721-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210805-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210805-01.fr.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210805-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210805-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210830-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210830-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210830-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210830-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210920-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210920-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210920-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210920-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.el.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20210928-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211008-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211008-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211008-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211011-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211011-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211011-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211011-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211015-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211015-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211015-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211027-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211027-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211102-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211102-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211102-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211102-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211110-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211110-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211118-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211118-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211118-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211122-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211122-01.fr.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211122-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211122-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211123-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211123-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211123-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211124-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211124-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211124-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.el.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.es.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.fr.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211125-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211129-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211129-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211129-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211203-01.de.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211203-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211203-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211203-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211206-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211206-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211209-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211209-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211210-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211210-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211213-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211213-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211215-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211215-01.it.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211215-01.nl.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211216-01.en.xhtml [10:17:34] source/fsfe.org/news/2021/news-20211216-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220112-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220112-01.es.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220112-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220121-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220121-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220127-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220127-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220127-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220201-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220201-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220201-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220202-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220202-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220202-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220202-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220224-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220224-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220224-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220225-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220225-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220225-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220310-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220310-01.fr.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220310-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220310-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220315-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220315-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220315-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.fr.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220316-01.pt.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220323-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220323-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220323-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220328-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220328-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220328-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220330-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220330-01.fr.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220330-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220330-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220414-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220414-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220414-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220420-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220420-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220420-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220425-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220425-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220425-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220425-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220427-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220427-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220427-01.fr.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220427-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220427-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220503-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220503-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220503-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220504-01.da.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220504-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220504-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220504-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220510-01.da.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220510-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220510-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220510-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220516-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220516-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220516-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220520-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220520-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220520-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220531-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220531-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220602-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220602-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220602-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220615-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220615-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220628-01.el.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220628-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220628-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220712-01.da.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220712-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220712-01.es.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220712-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220712-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220714-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220714-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220823-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220823-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220823-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220905-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220905-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220905-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220915-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220915-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220928-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20220928-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221004-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221004-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221026-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221026-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221026-02.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221026-02.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-01.es.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-02.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221104-02.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221118-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221118-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221118-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.es.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221121-01.pl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221205-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221205-01.es.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221205-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221205-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221206-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221206-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221209-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221212-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221214-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221214-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221215-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221215-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221215-02.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221215-02.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221219-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221219-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221219-01.nl.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221220-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221220-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221221-01.de.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221221-01.en.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221221-01.it.xhtml [10:17:34] source/fsfe.org/news/2022/news-20221221-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230104-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230104-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230109-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230109-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230113-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230113-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230119-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230119-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230119-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230123-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230123-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230126-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230126-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230215-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230215-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230215-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230215-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230215-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230220-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230220-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230222-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230222-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230227-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230227-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230227-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230227-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230301-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230308-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230313-01.el.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230313-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230321-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-02.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-02.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230323-02.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230412-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230413-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230418-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230425-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230425-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230428-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230428-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230508-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230508-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230508-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230509-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-01.fr.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230511-02.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-02.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-02.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230515-02.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230524-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230524-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230524-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230524-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230606-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230606-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230606-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230614-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230614-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230614-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230614-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230614-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230623-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230623-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230623-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230623-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-01.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-02.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-02.es.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-02.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230629-02.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230712-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230712-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230712-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-02.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-02.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230719-02.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230724-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230724-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230724-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230807-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230807-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230807-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230815-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230815-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230824-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230825-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230829-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230829-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230831-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230906-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230906-01.nl.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230907-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230907-01.it.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230915-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230920-01.de.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230920-01.en.xhtml [10:17:34] source/fsfe.org/news/2023/news-20230920-02.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230920-02.it.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230926-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230926-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230926-01.es.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230926-01.it.xhtml [10:17:35] source/fsfe.org/news/2023/news-20230926-01.nl.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231011-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231017-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231020-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231025-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231025-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231102-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231106-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231106-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231108-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231110-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231110-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231110-01.it.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231113-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231113-02.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231113-02.nl.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231115-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231115-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231116-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231116-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231116-01.es.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231116-01.fr.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231116-01.it.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231201-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231207-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231207-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231211-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231214-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231214-01.en.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231214-01.nl.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231220-01.de.xhtml [10:17:35] source/fsfe.org/news/2023/news-20231220-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240109-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240109-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240111-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240117-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240122-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240122-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240126-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240130-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240206-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240208-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240208-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240208-01.nl.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240226-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240301-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240301-01.nl.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240307-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240307-01.es.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240312-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240318-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240318-02.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240321-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240321-01.fr.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240417-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240430-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240506-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240515-01.de.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240515-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240515-01.es.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240515-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240530-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240610-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240620-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240627-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240628-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240701-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240709-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240715-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240719-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240726-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240808-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240809-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240809-01.nl.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240812-01.de.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240812-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240812-01.es.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240812-01.fr.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240812-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240813-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240828-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-01.de.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-01.es.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-01.fr.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-01.it.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240911-02.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20240920-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20241002-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20241016-01.en.xhtml [10:17:35] source/fsfe.org/news/2024/news-20241016-01.it.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-1.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-10.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-11.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-12.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-13.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-14.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-15.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-16.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-17.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-18.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-19.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-2.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-20.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-21.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-22.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-23.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-24.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-25.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-3.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-4.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-5.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-6.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-7.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-8.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-9.en.xhtml [10:17:35] source/fsfe.org/news/news/podcast/transcript/episode-special-1.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200904.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200904.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200904.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200904.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200904.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200905.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200905.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200905.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200905.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200905.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200906.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200907.tr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200908.tr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200909.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200909.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200909.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200909.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200909.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200910.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200910.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200910.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200910.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200911.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200911.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200911.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200912.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200912.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-200912.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201001.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201006.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201006.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201006.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201006.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201007.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201007.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201007.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201007.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201007.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201008.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201008.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201008.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201008.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201008.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201009.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201009.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201009.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201009.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201009.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201010.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201011.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201012.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201012.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201012.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201012.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201012.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201101.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201101.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201101.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201101.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201101.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201102.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201102.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201102.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201102.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201103.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201103.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201103.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201103.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201104.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201104.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201104.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201104.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201104.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201105.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201105.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201105.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201106.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201106.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201106.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201106.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201107.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201107.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201107.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201107.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201107.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201108.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201108.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201109.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201109.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201109.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201109.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201109.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201110.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201111.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201111.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201111.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201112.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201112.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201112.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201201.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201201.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201202.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201203.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201203.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201203.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201203.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201204.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201204.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201204.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201204.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201204.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201205.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201205.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201205.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201205.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201205.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201206.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201206.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201206.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201206.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201207.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201207.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201207.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201207.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201208.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201208.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201208.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201209.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201209.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201209.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201210.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201211.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201211.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201211.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201212.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201212.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201212.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201302.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201302.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201302.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201303.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201303.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201303.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201305.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201305.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201305.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201305.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201306.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201306.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201307.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201307.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201307.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201308.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201308.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201308.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201308.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201308.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201309.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201309.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201309.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201310.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201310.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201310.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201310.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201310.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201311.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.ro.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201312.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.ro.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201401.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201402.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201402.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201402.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201402.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201402.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201403.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201403.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201403.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201403.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201404.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201405.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201405.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201405.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201405.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201406.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.ro.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201407.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201408.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201409.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.ro.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201410.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201411.sr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201412.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201501.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201502.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201503.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201504.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201505.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201506.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201506.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201506.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201506.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201506.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201507.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201508.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201509.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201510.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201511.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201512.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201602.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201603.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201604.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201605.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201605.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201605.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201605.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201605.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201606.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201607.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201608.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201609.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201609.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201609.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201609.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201609.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201610.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201610.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201610.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201610.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201610.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201611.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201612.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201702.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201702.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201702.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201702.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201703.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201703.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201703.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201703.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201703.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201704.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201704.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201704.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201704.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201704.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201705.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201706.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201706.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201706.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201706.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201706.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201707.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201709.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201709.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201709.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201709.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201709.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201710.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201710.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201710.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201710.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201711.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201711.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201711.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201711.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201712.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201712.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201712.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201712.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.cs.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.el.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201802.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201803.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201804.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201804.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201804.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201804.sq.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201805.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201805.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201805.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201806.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201806.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201806.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201806.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201806.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201807.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201807.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201807.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201807.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201807.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201809.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201809.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201809.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201810.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201810.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201811.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201811.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201812.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201812.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201812.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201902.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201902.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201902.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201903.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201903.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201903.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201904.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201904.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201905.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201905.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201905.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201905.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201906.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201906.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201906.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201907.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201907.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201907.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201907.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201907.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201909.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201909.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201909.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201909.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201909.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201910.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201910.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201910.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201910.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201911.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201911.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201911.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201912.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201912.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201912.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201912.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-201912.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202001.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202001.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202001.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202001.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202002.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202002.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202002.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202002.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202002.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202004.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202005.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202005.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202005.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202005.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202006.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202006.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202006.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202006.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202006.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202007.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202007.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202007.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202007.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202007.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202008.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202008.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202008.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202008.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202008.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202009.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202009.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202009.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202009.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202010.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202010.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202010.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202010.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202010.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202011.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202011.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202011.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202011.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202011.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202012.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202012.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202012.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202012.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202101.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202101.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202101.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202101.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202102.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202102.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202102.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202102.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202102.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202103.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202103.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202103.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202103.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202103.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202104.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202104.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202104.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202105.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202105.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202105.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202106.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202106.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202106.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202106.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202106.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202107.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202107.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202107.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202107.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202109.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202109.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202109.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202110.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202110.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202110.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202110.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202111.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202111.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202111.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202111.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202111.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202112.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202112.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202112.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202112.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202112.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202201.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202202.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202203.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202204.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.da.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202205.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202206.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202206.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202206.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202206.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202206.pt.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.da.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.fr.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202207.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202209.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202209.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202209.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202209.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202210.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202210.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202210.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202210.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202211.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202211.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202211.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202211.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202212.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202212.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202212.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202212.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202301.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202301.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202301.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202301.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202302.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202302.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202302.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202302.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202302.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202303.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202303.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202303.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202303.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202304.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202304.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202304.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202304.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202304.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202305.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202305.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202305.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202305.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202305.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202306.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202306.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202306.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202306.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202306.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202307.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202307.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202307.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202307.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202307.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202308.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202308.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202308.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202308.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202308.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202309.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202309.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202309.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202310.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202310.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202310.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202311.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202311.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202311.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202311.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202312.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202312.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202312.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202312.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202401.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202401.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202401.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202402.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202402.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202403.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202403.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202403.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202404.de.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202404.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202404.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202404.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202405.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202405.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202405.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202406.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202406.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202406.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202406.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202407.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202407.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202407.nl.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202408.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202408.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202409.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202409.es.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202409.it.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202410.en.xhtml [10:17:35] source/fsfe.org/news/nl/nl-202410.es.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-1.de.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-1.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-1.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-1.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-10.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-10.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-10.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-11.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-11.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-11.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-12.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-12.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-12.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-13.de.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-13.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-13.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-13.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-14.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-14.fr.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-14.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-14.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-15.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-15.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-15.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-16.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-16.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-16.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-17.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-17.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-17.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-18.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-18.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-18.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-19.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-19.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-19.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-2.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-2.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-2.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-20.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-20.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-20.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-21.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-21.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-21.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-22.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-22.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-23.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-23.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-24.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-24.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-25.de.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-25.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-3.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-3.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-3.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-4.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-4.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-4.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-5.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-5.es.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-5.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-5.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-6.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-6.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-6.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-7.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-7.fr.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-7.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-7.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-8.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-8.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-8.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-9.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-9.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-9.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-special-1.en.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-special-1.it.xhtml [10:17:35] source/fsfe.org/news/podcast/episode-special-1.nl.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-1.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-10.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-11.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-12.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-13.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-14.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-15.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-16.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-17.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-18.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-19.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-2.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-20.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-21.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-22.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-23.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-24.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-25.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-3.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-4.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-5.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-6.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-7.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-8.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-9.en.xhtml [10:17:35] source/fsfe.org/news/podcast/transcript/episode-special-1.en.xhtml [10:17:35] source/fsfe.org/order/cancel.de.xhtml [10:17:35] source/fsfe.org/order/cancel.en.xhtml [10:17:35] source/fsfe.org/order/cancel.es.xhtml [10:17:35] source/fsfe.org/order/cancel.it.xhtml [10:17:35] source/fsfe.org/order/cancel.nl.xhtml [10:17:35] source/fsfe.org/order/cancel.tr.xhtml [10:17:35] source/fsfe.org/order/order.de.xhtml [10:17:35] source/fsfe.org/order/order.en.xhtml [10:17:35] source/fsfe.org/order/order.es.xhtml [10:17:35] source/fsfe.org/order/order.fr.xhtml [10:17:35] source/fsfe.org/order/order.it.xhtml [10:17:35] source/fsfe.org/order/order.nl.xhtml [10:17:35] source/fsfe.org/order/size.de.xhtml [10:17:35] source/fsfe.org/order/size.en.xhtml [10:17:35] source/fsfe.org/order/size.es.xhtml [10:17:35] source/fsfe.org/order/size.it.xhtml [10:17:35] source/fsfe.org/order/size.nl.xhtml [10:17:35] source/fsfe.org/order/thankyou.de.xhtml [10:17:35] source/fsfe.org/order/thankyou.en.xhtml [10:17:35] source/fsfe.org/order/thankyou.es.xhtml [10:17:35] source/fsfe.org/order/thankyou.it.xhtml [10:17:35] source/fsfe.org/order/thankyou.nl.xhtml [10:17:35] source/fsfe.org/order/thankyou.tr.xhtml [10:17:35] source/fsfe.org/order/tmpl-concardis.de.xhtml [10:17:35] source/fsfe.org/order/tmpl-concardis.en.xhtml [10:17:35] source/fsfe.org/order/tmpl-concardis.es.xhtml [10:17:35] source/fsfe.org/order/tmpl-concardis.it.xhtml [10:17:35] source/fsfe.org/order/tmpl-concardis.nl.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.de.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.en.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.es.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.it.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.nl.xhtml [10:17:35] source/fsfe.org/order/tmpl-thankyou.tr.xhtml [10:17:35] source/fsfe.org/press/press.de.xhtml [10:17:35] source/fsfe.org/press/press.en.xhtml [10:17:35] source/fsfe.org/press/press.es.xhtml [10:17:35] source/fsfe.org/press/press.fr.xhtml [10:17:35] source/fsfe.org/press/press.it.xhtml [10:17:35] source/fsfe.org/press/press.nl.xhtml [10:17:35] source/fsfe.org/search/search.en.xhtml [10:17:35] source/fsfe.org/search/search.nl.xhtml [10:17:35] source/fsfe.org/tags/tagged-policy.en.xhtml [10:17:35] source/fsfe.org/tags/tagged.en.xhtml [10:17:35] source/fsfe.org/tags/tagged.es.xhtml [10:17:35] source/fsfe.org/tags/tagged.nl.xhtml [10:17:35] source/fsfe.org/tags/tags.en.xhtml [10:17:35] source/fsfe.org/tags/tags.es.xhtml [10:17:35] source/fsfe.org/tags/tags.fr.xhtml [10:17:35] source/fsfe.org/tags/tags.nl.xhtml [10:17:35] source/fsfe.org/templates/concardis_relay.en.xhtml [10:17:35] source/fsfe.org/templates/registerevent/error.en.xhtml [10:17:35] source/fsfe.org/templates/registerevent/error.nl.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.de.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.el.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.en.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.fi.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.nl.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.pt.xhtml [10:17:35] source/fsfe.org/templates/registerevent/success.sq.xhtml [10:17:35] source/pdfreaders.org/about.ar.xhtml [10:17:35] source/pdfreaders.org/about.cs.xhtml [10:17:35] source/pdfreaders.org/about.de.xhtml [10:17:35] source/pdfreaders.org/about.el.xhtml [10:17:35] source/pdfreaders.org/about.en.xhtml [10:17:35] source/pdfreaders.org/about.eo.xhtml [10:17:35] source/pdfreaders.org/about.es.xhtml [10:17:35] source/pdfreaders.org/about.et.xhtml [10:17:35] source/pdfreaders.org/about.fa.xhtml [10:17:35] source/pdfreaders.org/about.fi.xhtml [10:17:35] source/pdfreaders.org/about.fr.xhtml [10:17:35] source/pdfreaders.org/about.gl.xhtml [10:17:35] source/pdfreaders.org/about.he.xhtml [10:17:35] source/pdfreaders.org/about.hr.xhtml [10:17:35] source/pdfreaders.org/about.hu.xhtml [10:17:35] source/pdfreaders.org/about.it.xhtml [10:17:35] source/pdfreaders.org/about.nb.xhtml [10:17:35] source/pdfreaders.org/about.nl.xhtml [10:17:35] source/pdfreaders.org/about.nn.xhtml [10:17:35] source/pdfreaders.org/about.pl.xhtml [10:17:35] source/pdfreaders.org/about.pt.xhtml [10:17:35] source/pdfreaders.org/about.ro.xhtml [10:17:35] source/pdfreaders.org/about.ru.xhtml [10:17:35] source/pdfreaders.org/about.sl.xhtml [10:17:35] source/pdfreaders.org/about.sv.xhtml [10:17:35] source/pdfreaders.org/about.tr.xhtml [10:17:35] source/pdfreaders.org/about.zh.xhtml [10:17:35] source/pdfreaders.org/graphics.ar.xhtml [10:17:35] source/pdfreaders.org/graphics.cs.xhtml [10:17:35] source/pdfreaders.org/graphics.de.xhtml [10:17:36] source/pdfreaders.org/graphics.el.xhtml [10:17:36] source/pdfreaders.org/graphics.en.xhtml [10:17:36] source/pdfreaders.org/graphics.eo.xhtml [10:17:36] source/pdfreaders.org/graphics.es.xhtml [10:17:36] source/pdfreaders.org/graphics.et.xhtml [10:17:36] source/pdfreaders.org/graphics.fa.xhtml [10:17:36] source/pdfreaders.org/graphics.fi.xhtml [10:17:36] source/pdfreaders.org/graphics.fr.xhtml [10:17:36] source/pdfreaders.org/graphics.gl.xhtml [10:17:36] source/pdfreaders.org/graphics.he.xhtml [10:17:36] source/pdfreaders.org/graphics.hr.xhtml [10:17:36] source/pdfreaders.org/graphics.hu.xhtml [10:17:36] source/pdfreaders.org/graphics.it.xhtml [10:17:36] source/pdfreaders.org/graphics.nb.xhtml [10:17:36] source/pdfreaders.org/graphics.nl.xhtml [10:17:36] source/pdfreaders.org/graphics.nn.xhtml [10:17:36] source/pdfreaders.org/graphics.pl.xhtml [10:17:36] source/pdfreaders.org/graphics.pt.xhtml [10:17:36] source/pdfreaders.org/graphics.ro.xhtml [10:17:36] source/pdfreaders.org/graphics.ru.xhtml [10:17:36] source/pdfreaders.org/graphics.sl.xhtml [10:17:36] source/pdfreaders.org/graphics.sv.xhtml [10:17:36] source/pdfreaders.org/graphics.tr.xhtml [10:17:36] source/pdfreaders.org/graphics.zh.xhtml [10:17:36] source/pdfreaders.org/index.ar.xhtml [10:17:36] source/pdfreaders.org/index.cs.xhtml [10:17:36] source/pdfreaders.org/index.de.xhtml [10:17:36] source/pdfreaders.org/index.el.xhtml [10:17:36] source/pdfreaders.org/index.en.xhtml [10:17:36] source/pdfreaders.org/index.eo.xhtml [10:17:36] source/pdfreaders.org/index.es.xhtml [10:17:36] source/pdfreaders.org/index.et.xhtml [10:17:36] source/pdfreaders.org/index.fa.xhtml [10:17:36] source/pdfreaders.org/index.fi.xhtml [10:17:36] source/pdfreaders.org/index.fr.xhtml [10:17:36] source/pdfreaders.org/index.gl.xhtml [10:17:36] source/pdfreaders.org/index.he.xhtml [10:17:36] source/pdfreaders.org/index.hr.xhtml [10:17:36] source/pdfreaders.org/index.hu.xhtml [10:17:36] source/pdfreaders.org/index.it.xhtml [10:17:36] source/pdfreaders.org/index.nb.xhtml [10:17:36] source/pdfreaders.org/index.nl.xhtml [10:17:36] source/pdfreaders.org/index.nn.xhtml [10:17:36] source/pdfreaders.org/index.pl.xhtml [10:17:36] source/pdfreaders.org/index.pt.xhtml [10:17:36] source/pdfreaders.org/index.ro.xhtml [10:17:36] source/pdfreaders.org/index.ru.xhtml [10:17:36] source/pdfreaders.org/index.sl.xhtml [10:17:36] source/pdfreaders.org/index.sv.xhtml [10:17:36] source/pdfreaders.org/index.tr.xhtml [10:17:36] source/pdfreaders.org/index.zh.xhtml [10:17:36] source/pdfreaders.org/os.ar.xhtml [10:17:36] source/pdfreaders.org/os.cs.xhtml [10:17:36] source/pdfreaders.org/os.de.xhtml [10:17:36] source/pdfreaders.org/os.el.xhtml [10:17:36] source/pdfreaders.org/os.en.xhtml [10:17:36] source/pdfreaders.org/os.eo.xhtml [10:17:36] source/pdfreaders.org/os.es.xhtml [10:17:36] source/pdfreaders.org/os.et.xhtml [10:17:36] source/pdfreaders.org/os.fa.xhtml [10:17:36] source/pdfreaders.org/os.fi.xhtml [10:17:36] source/pdfreaders.org/os.fr.xhtml [10:17:36] source/pdfreaders.org/os.gl.xhtml [10:17:36] source/pdfreaders.org/os.he.xhtml [10:17:36] source/pdfreaders.org/os.hr.xhtml [10:17:36] source/pdfreaders.org/os.hu.xhtml [10:17:36] source/pdfreaders.org/os.it.xhtml [10:17:36] source/pdfreaders.org/os.nb.xhtml [10:17:36] source/pdfreaders.org/os.nl.xhtml [10:17:36] source/pdfreaders.org/os.nn.xhtml [10:17:36] source/pdfreaders.org/os.pl.xhtml [10:17:36] source/pdfreaders.org/os.pt.xhtml [10:17:36] source/pdfreaders.org/os.ro.xhtml [10:17:36] source/pdfreaders.org/os.ru.xhtml [10:17:36] source/pdfreaders.org/os.sl.xhtml [10:17:36] source/pdfreaders.org/os.sv.xhtml [10:17:36] source/pdfreaders.org/os.tr.xhtml [10:17:36] source/pdfreaders.org/os.zh.xhtml [10:17:36] source/status.fsfe.org/index.en.xhtml [10:17:36] source/status.fsfe.org/fsfe.org/template.en.xhtml [10:17:36] source/status.fsfe.org/test.fsfe.org/template.en.xhtml [10:17:36] source/status.fsfe.org/translations/index.en.xhtml [10:17:36] status.fsfe.org/translations/ [10:17:36] status.fsfe.org/translations/index.ar.html [10:17:36] status.fsfe.org/translations/index.bg.html [10:17:36] status.fsfe.org/translations/index.bs.html [10:17:36] status.fsfe.org/translations/index.ca.html [10:17:36] status.fsfe.org/translations/index.cs.html [10:17:36] status.fsfe.org/translations/index.da.html [10:17:36] status.fsfe.org/translations/index.de.html [10:17:36] status.fsfe.org/translations/index.el.html [10:17:36] status.fsfe.org/translations/index.en.html [10:17:36] status.fsfe.org/translations/index.es.html [10:17:36] status.fsfe.org/translations/index.et.html [10:17:36] status.fsfe.org/translations/index.fa.html [10:17:36] status.fsfe.org/translations/index.fi.html [10:17:36] status.fsfe.org/translations/index.fr.html [10:17:36] status.fsfe.org/translations/index.hr.html [10:17:36] status.fsfe.org/translations/index.hu.html [10:17:36] status.fsfe.org/translations/index.it.html [10:17:36] status.fsfe.org/translations/index.ja.html [10:17:36] status.fsfe.org/translations/index.mk.html [10:17:36] status.fsfe.org/translations/index.nb.html [10:17:36] status.fsfe.org/translations/index.nl.html [10:17:36] status.fsfe.org/translations/index.nn.html [10:17:36] status.fsfe.org/translations/index.pl.html [10:17:36] status.fsfe.org/translations/index.pt.html [10:17:36] status.fsfe.org/translations/index.ro.html [10:17:36] status.fsfe.org/translations/index.ru.html [10:17:36] status.fsfe.org/translations/index.sk.html [10:17:36] status.fsfe.org/translations/index.sl.html [10:17:36] status.fsfe.org/translations/index.sq.html [10:17:36] status.fsfe.org/translations/index.sr.html [10:17:36] status.fsfe.org/translations/index.sv.html [10:17:36] status.fsfe.org/translations/index.tr.html [10:17:36] status.fsfe.org/translations/index.uk.html [10:17:36] status.fsfe.org/translations/index.zh.html [10:17:36] status.fsfe.org/translations/data-tmp/ [10:17:36] status.fsfe.org/translations/data/ [10:17:36] status.fsfe.org/translations/data/log.txt [10:17:36] [10:17:36] sent 9,957,977 bytes received 597,771 bytes 2,345,721.78 bytes/sec [10:17:36] total size is 1,577,551,233 speedup is 149.45 [10:17:36] Syncing files to gahn.fsfeurope.org [10:17:36] sending incremental file list [10:17:36] fsfe.org/about/people/index.ar.html [10:17:36] fsfe.org/about/people/index.bg.html [10:17:36] fsfe.org/about/people/index.bs.html [10:17:36] fsfe.org/about/people/index.ca.html [10:17:36] fsfe.org/about/people/index.cs.html [10:17:36] fsfe.org/about/people/index.da.html [10:17:36] fsfe.org/about/people/index.de.html [10:17:36] fsfe.org/about/people/index.el.html [10:17:36] fsfe.org/about/people/index.en.html [10:17:36] fsfe.org/about/people/index.es.html [10:17:36] fsfe.org/about/people/index.et.html [10:17:36] fsfe.org/about/people/index.fa.html [10:17:36] fsfe.org/about/people/index.fi.html [10:17:36] fsfe.org/about/people/index.fr.html [10:17:36] fsfe.org/about/people/index.hr.html [10:17:36] fsfe.org/about/people/index.hu.html [10:17:36] fsfe.org/about/people/index.it.html [10:17:36] fsfe.org/about/people/index.ja.html [10:17:36] fsfe.org/about/people/index.mk.html [10:17:36] fsfe.org/about/people/index.nb.html [10:17:36] fsfe.org/about/people/index.nl.html [10:17:36] fsfe.org/about/people/index.nn.html [10:17:36] fsfe.org/about/people/index.pl.html [10:17:36] fsfe.org/about/people/index.pt.html [10:17:36] fsfe.org/about/people/index.ro.html [10:17:36] fsfe.org/about/people/index.ru.html [10:17:36] fsfe.org/about/people/index.sk.html [10:17:36] fsfe.org/about/people/index.sl.html [10:17:36] fsfe.org/about/people/index.sq.html [10:17:36] fsfe.org/about/people/index.sr.html [10:17:36] fsfe.org/about/people/index.sv.html [10:17:36] fsfe.org/about/people/index.tr.html [10:17:36] fsfe.org/about/people/index.uk.html [10:17:36] fsfe.org/about/people/index.zh.html [10:17:36] fsfe.org/activities/activities.ar.html [10:17:36] fsfe.org/activities/activities.bg.html [10:17:36] fsfe.org/activities/activities.bs.html [10:17:36] fsfe.org/activities/activities.ca.html [10:17:36] fsfe.org/activities/activities.cs.html [10:17:36] fsfe.org/activities/activities.da.html [10:17:36] fsfe.org/activities/activities.de.html [10:17:36] fsfe.org/activities/activities.el.html [10:17:36] fsfe.org/activities/activities.en.html [10:17:36] fsfe.org/activities/activities.es.html [10:17:36] fsfe.org/activities/activities.et.html [10:17:36] fsfe.org/activities/activities.fa.html [10:17:36] fsfe.org/activities/activities.fi.html [10:17:36] fsfe.org/activities/activities.fr.html [10:17:36] fsfe.org/activities/activities.hr.html [10:17:36] fsfe.org/activities/activities.hu.html [10:17:36] fsfe.org/activities/activities.it.html [10:17:36] fsfe.org/activities/activities.ja.html [10:17:36] fsfe.org/activities/activities.mk.html [10:17:36] fsfe.org/activities/activities.nb.html [10:17:36] fsfe.org/activities/activities.nl.html [10:17:36] fsfe.org/activities/activities.nn.html [10:17:36] fsfe.org/activities/activities.pl.html [10:17:36] fsfe.org/activities/activities.pt.html [10:17:36] fsfe.org/activities/activities.ro.html [10:17:36] fsfe.org/activities/activities.ru.html [10:17:36] fsfe.org/activities/activities.sk.html [10:17:36] fsfe.org/activities/activities.sl.html [10:17:36] fsfe.org/activities/activities.sq.html [10:17:36] fsfe.org/activities/activities.sr.html [10:17:36] fsfe.org/activities/activities.sv.html [10:17:36] fsfe.org/activities/activities.tr.html [10:17:36] fsfe.org/activities/activities.uk.html [10:17:36] fsfe.org/activities/activities.zh.html [10:17:36] fsfe.org/activities/awareness.ar.html [10:17:36] fsfe.org/activities/awareness.bg.html [10:17:36] fsfe.org/activities/awareness.bs.html [10:17:36] fsfe.org/activities/awareness.ca.html [10:17:36] fsfe.org/activities/awareness.cs.html [10:17:36] fsfe.org/activities/awareness.da.html [10:17:36] fsfe.org/activities/awareness.de.html [10:17:36] fsfe.org/activities/awareness.el.html [10:17:36] fsfe.org/activities/awareness.en.html [10:17:36] fsfe.org/activities/awareness.es.html [10:17:36] fsfe.org/activities/awareness.et.html [10:17:36] fsfe.org/activities/awareness.fa.html [10:17:36] fsfe.org/activities/awareness.fi.html [10:17:36] fsfe.org/activities/awareness.fr.html [10:17:36] fsfe.org/activities/awareness.hr.html [10:17:36] fsfe.org/activities/awareness.hu.html [10:17:36] fsfe.org/activities/awareness.it.html [10:17:36] fsfe.org/activities/awareness.ja.html [10:17:36] fsfe.org/activities/awareness.mk.html [10:17:36] fsfe.org/activities/awareness.nb.html [10:17:36] fsfe.org/activities/awareness.nl.html [10:17:36] fsfe.org/activities/awareness.nn.html [10:17:36] fsfe.org/activities/awareness.pl.html [10:17:36] fsfe.org/activities/awareness.pt.html [10:17:36] fsfe.org/activities/awareness.ro.html [10:17:36] fsfe.org/activities/awareness.ru.html [10:17:36] fsfe.org/activities/awareness.sk.html [10:17:36] fsfe.org/activities/awareness.sl.html [10:17:36] fsfe.org/activities/awareness.sq.html [10:17:36] fsfe.org/activities/awareness.sr.html [10:17:36] fsfe.org/activities/awareness.sv.html [10:17:36] fsfe.org/activities/awareness.tr.html [10:17:36] fsfe.org/activities/awareness.uk.html [10:17:36] fsfe.org/activities/awareness.zh.html [10:17:36] fsfe.org/activities/legal.ar.html [10:17:36] fsfe.org/activities/legal.bg.html [10:17:36] fsfe.org/activities/legal.bs.html [10:17:36] fsfe.org/activities/legal.ca.html [10:17:36] fsfe.org/activities/legal.cs.html [10:17:36] fsfe.org/activities/legal.da.html [10:17:37] fsfe.org/activities/legal.de.html [10:17:37] fsfe.org/activities/legal.el.html [10:17:37] fsfe.org/activities/legal.en.html [10:17:37] fsfe.org/activities/legal.es.html [10:17:37] fsfe.org/activities/legal.et.html [10:17:37] fsfe.org/activities/legal.fa.html [10:17:37] fsfe.org/activities/legal.fi.html [10:17:37] fsfe.org/activities/legal.fr.html [10:17:37] fsfe.org/activities/legal.hr.html [10:17:37] fsfe.org/activities/legal.hu.html [10:17:37] fsfe.org/activities/legal.it.html [10:17:37] fsfe.org/activities/legal.ja.html [10:17:37] fsfe.org/activities/legal.mk.html [10:17:37] fsfe.org/activities/legal.nb.html [10:17:37] fsfe.org/activities/legal.nl.html [10:17:37] fsfe.org/activities/legal.nn.html [10:17:37] fsfe.org/activities/legal.pl.html [10:17:37] fsfe.org/activities/legal.pt.html [10:17:37] fsfe.org/activities/legal.ro.html [10:17:37] fsfe.org/activities/legal.ru.html [10:17:37] fsfe.org/activities/legal.sk.html [10:17:37] fsfe.org/activities/legal.sl.html [10:17:37] fsfe.org/activities/legal.sq.html [10:17:37] fsfe.org/activities/legal.sr.html [10:17:37] fsfe.org/activities/legal.sv.html [10:17:37] fsfe.org/activities/legal.tr.html [10:17:37] fsfe.org/activities/legal.uk.html [10:17:37] fsfe.org/activities/legal.zh.html [10:17:37] fsfe.org/activities/policy.ar.html [10:17:37] fsfe.org/activities/policy.bg.html [10:17:37] fsfe.org/activities/policy.bs.html [10:17:37] fsfe.org/activities/policy.ca.html [10:17:37] fsfe.org/activities/policy.cs.html [10:17:37] fsfe.org/activities/policy.da.html [10:17:37] fsfe.org/activities/policy.de.html [10:17:37] fsfe.org/activities/policy.el.html [10:17:37] fsfe.org/activities/policy.en.html [10:17:37] fsfe.org/activities/policy.es.html [10:17:37] fsfe.org/activities/policy.et.html [10:17:37] fsfe.org/activities/policy.fa.html [10:17:37] fsfe.org/activities/policy.fi.html [10:17:37] fsfe.org/activities/policy.fr.html [10:17:37] fsfe.org/activities/policy.hr.html [10:17:37] fsfe.org/activities/policy.hu.html [10:17:37] fsfe.org/activities/policy.it.html [10:17:37] fsfe.org/activities/policy.ja.html [10:17:37] fsfe.org/activities/policy.mk.html [10:17:37] fsfe.org/activities/policy.nb.html [10:17:37] fsfe.org/activities/policy.nl.html [10:17:37] fsfe.org/activities/policy.nn.html [10:17:37] fsfe.org/activities/policy.pl.html [10:17:37] fsfe.org/activities/policy.pt.html [10:17:37] fsfe.org/activities/policy.ro.html [10:17:37] fsfe.org/activities/policy.ru.html [10:17:37] fsfe.org/activities/policy.sk.html [10:17:37] fsfe.org/activities/policy.sl.html [10:17:37] fsfe.org/activities/policy.sq.html [10:17:37] fsfe.org/activities/policy.sr.html [10:17:37] fsfe.org/activities/policy.sv.html [10:17:37] fsfe.org/activities/policy.tr.html [10:17:37] fsfe.org/activities/policy.uk.html [10:17:37] fsfe.org/activities/policy.zh.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.ar.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.bg.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.bs.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.ca.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.cs.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.da.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.de.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.el.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.en.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.es.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.et.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.fa.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.fi.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.fr.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.hr.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.hu.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.it.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.ja.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.mk.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.nb.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.nl.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.nn.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.pl.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.pt.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.ro.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.ru.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.sk.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.sl.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.sq.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.sr.html [10:17:37] fsfe.org/activities/apple-litigation/apple-litigation.sv.html [10:17:42] fsfe.org/activities/apple-litigation/apple-litigation.tr.html [10:17:42] fsfe.org/activities/apple-litigation/apple-litigation.uk.html [10:17:42] fsfe.org/activities/apple-litigation/apple-litigation.zh.html [10:17:42] fsfe.org/activities/deviceneutrality/index.ar.html [10:17:42] fsfe.org/activities/deviceneutrality/index.bg.html [10:17:42] fsfe.org/activities/deviceneutrality/index.bs.html [10:17:42] fsfe.org/activities/deviceneutrality/index.ca.html [10:17:42] fsfe.org/activities/deviceneutrality/index.cs.html [10:17:42] fsfe.org/activities/deviceneutrality/index.da.html [10:17:42] fsfe.org/activities/deviceneutrality/index.de.html [10:17:42] fsfe.org/activities/deviceneutrality/index.el.html [10:17:42] fsfe.org/activities/deviceneutrality/index.en.html [10:17:42] fsfe.org/activities/deviceneutrality/index.es.html [10:17:42] fsfe.org/activities/deviceneutrality/index.et.html [10:17:42] fsfe.org/activities/deviceneutrality/index.fa.html [10:17:42] fsfe.org/activities/deviceneutrality/index.fi.html [10:17:42] fsfe.org/activities/deviceneutrality/index.fr.html [10:17:42] fsfe.org/activities/deviceneutrality/index.hr.html [10:17:42] fsfe.org/activities/deviceneutrality/index.hu.html [10:17:42] fsfe.org/activities/deviceneutrality/index.it.html [10:17:42] fsfe.org/activities/deviceneutrality/index.ja.html [10:17:42] fsfe.org/activities/deviceneutrality/index.mk.html [10:17:43] fsfe.org/activities/deviceneutrality/index.nb.html [10:17:43] fsfe.org/activities/deviceneutrality/index.nl.html [10:17:43] fsfe.org/activities/deviceneutrality/index.nn.html [10:17:43] fsfe.org/activities/deviceneutrality/index.pl.html [10:17:43] fsfe.org/activities/deviceneutrality/index.pt.html [10:17:43] fsfe.org/activities/deviceneutrality/index.ro.html [10:17:43] fsfe.org/activities/deviceneutrality/index.ru.html [10:17:43] fsfe.org/activities/deviceneutrality/index.sk.html [10:17:43] fsfe.org/activities/deviceneutrality/index.sl.html [10:17:43] fsfe.org/activities/deviceneutrality/index.sq.html [10:17:43] fsfe.org/activities/deviceneutrality/index.sr.html [10:17:43] fsfe.org/activities/deviceneutrality/index.sv.html [10:17:43] fsfe.org/activities/deviceneutrality/index.tr.html [10:17:43] fsfe.org/activities/deviceneutrality/index.uk.html [10:17:43] fsfe.org/activities/deviceneutrality/index.zh.html [10:17:43] fsfe.org/activities/dma/dma.ar.html [10:17:43] fsfe.org/activities/dma/dma.bg.html [10:17:43] fsfe.org/activities/dma/dma.bs.html [10:17:43] fsfe.org/activities/dma/dma.ca.html [10:17:43] fsfe.org/activities/dma/dma.cs.html [10:17:43] fsfe.org/activities/dma/dma.da.html [10:17:43] fsfe.org/activities/dma/dma.de.html [10:17:43] fsfe.org/activities/dma/dma.el.html [10:17:43] fsfe.org/activities/dma/dma.en.html [10:17:43] fsfe.org/activities/dma/dma.es.html [10:17:43] fsfe.org/activities/dma/dma.et.html [10:17:43] fsfe.org/activities/dma/dma.fa.html [10:17:43] fsfe.org/activities/dma/dma.fi.html [10:17:43] fsfe.org/activities/dma/dma.fr.html [10:17:43] fsfe.org/activities/dma/dma.hr.html [10:17:43] fsfe.org/activities/dma/dma.hu.html [10:17:43] fsfe.org/activities/dma/dma.it.html [10:17:43] fsfe.org/activities/dma/dma.ja.html [10:17:43] fsfe.org/activities/dma/dma.mk.html [10:17:43] fsfe.org/activities/dma/dma.nb.html [10:17:43] fsfe.org/activities/dma/dma.nl.html [10:17:43] fsfe.org/activities/dma/dma.nn.html [10:17:43] fsfe.org/activities/dma/dma.pl.html [10:17:43] fsfe.org/activities/dma/dma.pt.html [10:17:43] fsfe.org/activities/dma/dma.ro.html [10:17:43] fsfe.org/activities/dma/dma.ru.html [10:17:43] fsfe.org/activities/dma/dma.sk.html [10:17:43] fsfe.org/activities/dma/dma.sl.html [10:17:43] fsfe.org/activities/dma/dma.sq.html [10:17:43] fsfe.org/activities/dma/dma.sr.html [10:17:43] fsfe.org/activities/dma/dma.sv.html [10:17:43] fsfe.org/activities/dma/dma.tr.html [10:17:43] fsfe.org/activities/dma/dma.uk.html [10:17:43] fsfe.org/activities/dma/dma.zh.html [10:17:43] fsfe.org/graphics/logos/ [10:17:43] fsfe.org/graphics/logos/applelitigation-logo.png [10:17:43] fsfe.org/search/index.js [10:17:43] fsfe.org/tags/tagged-policy.ar.html [10:17:43] fsfe.org/tags/tagged-policy.bg.html [10:17:43] fsfe.org/tags/tagged-policy.bs.html [10:17:43] fsfe.org/tags/tagged-policy.ca.html [10:17:43] fsfe.org/tags/tagged-policy.cs.html [10:17:43] fsfe.org/tags/tagged-policy.da.html [10:17:43] fsfe.org/tags/tagged-policy.de.html [10:17:43] fsfe.org/tags/tagged-policy.el.html [10:17:43] fsfe.org/tags/tagged-policy.en.html [10:17:43] fsfe.org/tags/tagged-policy.es.html [10:17:43] fsfe.org/tags/tagged-policy.et.html [10:17:43] fsfe.org/tags/tagged-policy.fa.html [10:17:43] fsfe.org/tags/tagged-policy.fi.html [10:17:43] fsfe.org/tags/tagged-policy.fr.html [10:17:43] fsfe.org/tags/tagged-policy.hr.html [10:17:43] fsfe.org/tags/tagged-policy.hu.html [10:17:43] fsfe.org/tags/tagged-policy.it.html [10:17:43] fsfe.org/tags/tagged-policy.ja.html [10:17:43] fsfe.org/tags/tagged-policy.mk.html [10:17:43] fsfe.org/tags/tagged-policy.nb.html [10:17:43] fsfe.org/tags/tagged-policy.nl.html [10:17:43] fsfe.org/tags/tagged-policy.nn.html [10:17:43] fsfe.org/tags/tagged-policy.pl.html [10:17:43] fsfe.org/tags/tagged-policy.pt.html [10:17:43] fsfe.org/tags/tagged-policy.ro.html [10:17:43] fsfe.org/tags/tagged-policy.ru.html [10:17:43] fsfe.org/tags/tagged-policy.sk.html [10:17:43] fsfe.org/tags/tagged-policy.sl.html [10:17:43] fsfe.org/tags/tagged-policy.sq.html [10:17:43] fsfe.org/tags/tagged-policy.sr.html [10:17:43] fsfe.org/tags/tagged-policy.sv.html [10:17:43] fsfe.org/tags/tagged-policy.tr.html [10:17:43] fsfe.org/tags/tagged-policy.uk.html [10:17:43] fsfe.org/tags/tagged-policy.zh.html [10:17:43] source/drm.info/act-now.de.xhtml [10:17:43] source/fsfe.org/boilerplate.en.xhtml [10:17:43] source/fsfe.org/index.cs.xhtml [10:17:43] source/fsfe.org/index.de.xhtml [10:17:43] source/fsfe.org/index.el.xhtml [10:17:43] source/fsfe.org/index.en.xhtml [10:17:43] source/fsfe.org/index.es.xhtml [10:17:43] source/fsfe.org/index.fr.xhtml [10:17:43] source/fsfe.org/index.it.xhtml [10:17:43] source/fsfe.org/index.nl.xhtml [10:17:43] source/fsfe.org/index.pt.xhtml [10:17:43] source/fsfe.org/index.tr.xhtml [10:17:43] source/fsfe.org/index.uk.xhtml [10:17:43] source/fsfe.org/about/about.de.xhtml [10:17:43] source/fsfe.org/about/about.el.xhtml [10:17:43] source/fsfe.org/about/about.en.xhtml [10:17:43] source/fsfe.org/about/about.es.xhtml [10:17:43] source/fsfe.org/about/about.fr.xhtml [10:17:43] source/fsfe.org/about/about.it.xhtml [10:17:43] source/fsfe.org/about/about.nl.xhtml [10:17:43] source/fsfe.org/about/about.pl.xhtml [10:17:43] source/fsfe.org/about/about.tr.xhtml [10:17:43] source/fsfe.org/about/about.uk.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.de.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.el.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.en.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.es.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.fr.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.nl.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.sq.xhtml [10:17:43] source/fsfe.org/about/codeofconduct.uk.xhtml [10:17:43] source/fsfe.org/about/contact.de.xhtml [10:17:43] source/fsfe.org/about/contact.en.xhtml [10:17:43] source/fsfe.org/about/contact.nl.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.da.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.de.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.el.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.en.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.es.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.fr.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.hr.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.it.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.nl.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.pt.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.ru.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.sq.xhtml [10:17:43] source/fsfe.org/about/fsfnetwork.uk.xhtml [10:17:43] source/fsfe.org/about/groups.en.xhtml [10:17:43] source/fsfe.org/about/js-licences.en.xhtml [10:17:43] source/fsfe.org/about/mission.bg.xhtml [10:17:43] source/fsfe.org/about/mission.de.xhtml [10:17:43] source/fsfe.org/about/mission.el.xhtml [10:17:43] source/fsfe.org/about/mission.en.xhtml [10:17:43] source/fsfe.org/about/mission.es.xhtml [10:17:43] source/fsfe.org/about/mission.fi.xhtml [10:17:43] source/fsfe.org/about/mission.fr.xhtml [10:17:43] source/fsfe.org/about/mission.it.xhtml [10:17:43] source/fsfe.org/about/mission.nl.xhtml [10:17:43] source/fsfe.org/about/mission.pt.xhtml [10:17:43] source/fsfe.org/about/mission.sq.xhtml [10:17:43] source/fsfe.org/about/mission.tr.xhtml [10:17:43] source/fsfe.org/about/mission.uk.xhtml [10:17:43] source/fsfe.org/about/ourwork.en.xhtml [10:17:43] source/fsfe.org/about/ourwork.it.xhtml [10:17:43] source/fsfe.org/about/ourwork.nl.xhtml [10:17:43] source/fsfe.org/about/overview2010.de.xhtml [10:17:43] source/fsfe.org/about/overview2010.el.xhtml [10:17:43] source/fsfe.org/about/overview2010.en.xhtml [10:17:43] source/fsfe.org/about/principles.de.xhtml [10:17:43] source/fsfe.org/about/principles.en.xhtml [10:17:43] source/fsfe.org/about/principles.fr.xhtml [10:17:43] source/fsfe.org/about/principles.nl.xhtml [10:17:43] source/fsfe.org/about/principles.pt.xhtml [10:17:43] source/fsfe.org/about/principles.ru.xhtml [10:17:43] source/fsfe.org/about/statement-20201220.en.xhtml [10:17:43] source/fsfe.org/about/timeline.en.xhtml [10:17:43] source/fsfe.org/about/timeline.it.xhtml [10:17:43] source/fsfe.org/about/timeline.nl.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.de.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.en.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.es.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.fi.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.fr.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.nl.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.pt.xhtml [10:17:43] source/fsfe.org/about/transparency-commitment.sq.xhtml [10:17:43] source/fsfe.org/about/associates/associates.ar.xhtml [10:17:43] source/fsfe.org/about/associates/associates.en.xhtml [10:17:43] source/fsfe.org/about/associates/associates.es.xhtml [10:17:43] source/fsfe.org/about/associates/associates.fr.xhtml [10:17:43] source/fsfe.org/about/associates/associates.nl.xhtml [10:17:43] source/fsfe.org/about/associates/associates.pt.xhtml [10:17:43] source/fsfe.org/about/funds/2001.en.xhtml [10:17:43] source/fsfe.org/about/funds/2001.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2001.it.xhtml [10:17:43] source/fsfe.org/about/funds/2001.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2001.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2002.en.xhtml [10:17:43] source/fsfe.org/about/funds/2002.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2002.it.xhtml [10:17:43] source/fsfe.org/about/funds/2002.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2003.de.xhtml [10:17:43] source/fsfe.org/about/funds/2003.el.xhtml [10:17:43] source/fsfe.org/about/funds/2003.en.xhtml [10:17:43] source/fsfe.org/about/funds/2003.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2003.it.xhtml [10:17:43] source/fsfe.org/about/funds/2003.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2003.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2004.de.xhtml [10:17:43] source/fsfe.org/about/funds/2004.el.xhtml [10:17:43] source/fsfe.org/about/funds/2004.en.xhtml [10:17:43] source/fsfe.org/about/funds/2004.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2004.it.xhtml [10:17:43] source/fsfe.org/about/funds/2004.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2004.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2005.de.xhtml [10:17:43] source/fsfe.org/about/funds/2005.el.xhtml [10:17:43] source/fsfe.org/about/funds/2005.en.xhtml [10:17:43] source/fsfe.org/about/funds/2005.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2005.it.xhtml [10:17:43] source/fsfe.org/about/funds/2005.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2005.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2006.de.xhtml [10:17:43] source/fsfe.org/about/funds/2006.el.xhtml [10:17:43] source/fsfe.org/about/funds/2006.en.xhtml [10:17:43] source/fsfe.org/about/funds/2006.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2006.it.xhtml [10:17:43] source/fsfe.org/about/funds/2006.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2006.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2007.de.xhtml [10:17:43] source/fsfe.org/about/funds/2007.el.xhtml [10:17:43] source/fsfe.org/about/funds/2007.en.xhtml [10:17:43] source/fsfe.org/about/funds/2007.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2007.it.xhtml [10:17:43] source/fsfe.org/about/funds/2007.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2007.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2008.de.xhtml [10:17:43] source/fsfe.org/about/funds/2008.el.xhtml [10:17:43] source/fsfe.org/about/funds/2008.en.xhtml [10:17:43] source/fsfe.org/about/funds/2008.fr.xhtml [10:17:43] source/fsfe.org/about/funds/2008.it.xhtml [10:17:43] source/fsfe.org/about/funds/2008.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2008.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2009.el.xhtml [10:17:43] source/fsfe.org/about/funds/2009.en.xhtml [10:17:43] source/fsfe.org/about/funds/2009.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2009.ru.xhtml [10:17:43] source/fsfe.org/about/funds/2010.en.xhtml [10:17:43] source/fsfe.org/about/funds/2011.en.xhtml [10:17:43] source/fsfe.org/about/funds/2012.en.xhtml [10:17:43] source/fsfe.org/about/funds/2013.en.xhtml [10:17:43] source/fsfe.org/about/funds/2014.en.xhtml [10:17:43] source/fsfe.org/about/funds/2015.en.xhtml [10:17:43] source/fsfe.org/about/funds/2016.en.xhtml [10:17:43] source/fsfe.org/about/funds/2017.en.xhtml [10:17:43] source/fsfe.org/about/funds/2017.nl.xhtml [10:17:43] source/fsfe.org/about/funds/2018.en.xhtml [10:17:43] source/fsfe.org/about/funds/2019.en.xhtml [10:17:43] source/fsfe.org/about/funds/2020.en.xhtml [10:17:43] source/fsfe.org/about/funds/2021.en.xhtml [10:17:43] source/fsfe.org/about/funds/2022.en.xhtml [10:17:43] source/fsfe.org/about/funds/funds.de.xhtml [10:17:43] source/fsfe.org/about/funds/funds.el.xhtml [10:17:43] source/fsfe.org/about/funds/funds.en.xhtml [10:17:43] source/fsfe.org/about/funds/funds.es.xhtml [10:17:43] source/fsfe.org/about/funds/funds.fr.xhtml [10:17:43] source/fsfe.org/about/funds/funds.it.xhtml [10:17:43] source/fsfe.org/about/funds/funds.nl.xhtml [10:17:43] source/fsfe.org/about/funds/funds.ru.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.da.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.de.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.el.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.en.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.es.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.fr.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.hr.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.hu.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.it.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.nl.xhtml [10:17:43] source/fsfe.org/about/graphics/graphics.ru.xhtml [10:17:43] source/fsfe.org/about/graphics/sponsoring/sponsoring.da.xhtml [10:17:43] source/fsfe.org/about/graphics/sponsoring/sponsoring.de.xhtml [10:17:43] source/fsfe.org/about/graphics/sponsoring/sponsoring.el.xhtml [10:17:43] source/fsfe.org/about/graphics/sponsoring/sponsoring.en.xhtml [10:17:44] source/fsfe.org/about/graphics/sponsoring/sponsoring.fi.xhtml [10:17:44] source/fsfe.org/about/graphics/sponsoring/sponsoring.fr.xhtml [10:17:44] source/fsfe.org/about/graphics/sponsoring/sponsoring.it.xhtml [10:17:44] source/fsfe.org/about/graphics/sponsoring/sponsoring.nl.xhtml [10:17:44] source/fsfe.org/about/graphics/sponsoring/sponsoring.ru.xhtml [10:17:44] source/fsfe.org/about/history/doi.cs.xhtml [10:17:44] source/fsfe.org/about/history/doi.de.xhtml [10:17:44] source/fsfe.org/about/history/doi.el.xhtml [10:17:44] source/fsfe.org/about/history/doi.en.xhtml [10:17:44] source/fsfe.org/about/history/doi.fr.xhtml [10:17:44] source/fsfe.org/about/history/doi.it.xhtml [10:17:44] source/fsfe.org/about/history/doi.nl.xhtml [10:17:44] source/fsfe.org/about/history/doi.pt.xhtml [10:17:44] source/fsfe.org/about/history/preamble.cs.xhtml [10:17:44] source/fsfe.org/about/history/preamble.de.xhtml [10:17:44] source/fsfe.org/about/history/preamble.el.xhtml [10:17:44] source/fsfe.org/about/history/preamble.en.xhtml [10:17:44] source/fsfe.org/about/history/preamble.fr.xhtml [10:17:44] source/fsfe.org/about/history/preamble.it.xhtml [10:17:44] source/fsfe.org/about/history/preamble.nl.xhtml [10:17:44] source/fsfe.org/about/history/preamble.pt.xhtml [10:17:44] source/fsfe.org/about/jobs/index.en.xhtml [10:17:44] source/fsfe.org/about/jobs/internship.en.xhtml [10:17:44] source/fsfe.org/about/jobs/internship.fr.xhtml [10:17:44] source/fsfe.org/about/jobs/internship.it.xhtml [10:17:44] source/fsfe.org/about/legal/imprint.en.xhtml [10:17:44] source/fsfe.org/about/legal/imprint.fr.xhtml [10:17:44] source/fsfe.org/about/legal/imprint.it.xhtml [10:17:44] source/fsfe.org/about/legal/imprint.nl.xhtml [10:17:44] source/fsfe.org/about/legal/legal.en.xhtml [10:17:44] source/fsfe.org/about/legal/legal.es.xhtml [10:17:44] source/fsfe.org/about/legal/legal.fi.xhtml [10:17:44] source/fsfe.org/about/legal/legal.fr.xhtml [10:17:44] source/fsfe.org/about/legal/legal.it.xhtml [10:17:44] source/fsfe.org/about/legal/legal.nl.xhtml [10:17:44] source/fsfe.org/about/legal/legal.pt.xhtml [10:17:44] source/fsfe.org/about/people/index.de.xhtml [10:17:44] source/fsfe.org/about/people/index.en.xhtml [10:17:44] source/fsfe.org/about/people/index.es.xhtml [10:17:44] source/fsfe.org/about/people/index.it.xhtml [10:17:44] source/fsfe.org/about/people/index.nl.xhtml [10:17:44] source/fsfe.org/about/people/testimonials.de.xhtml [10:17:44] source/fsfe.org/about/people/testimonials.en.xhtml [10:17:44] source/fsfe.org/about/people/testimonials.it.xhtml [10:17:44] source/fsfe.org/about/people/testimonials.nl.xhtml [10:17:44] source/fsfe.org/about/people/albers/albers.de.xhtml [10:17:44] source/fsfe.org/about/people/albers/albers.en.xhtml [10:17:44] source/fsfe.org/about/people/albers/albers.nl.xhtml [10:17:44] source/fsfe.org/about/people/bakker/bakker.en.xhtml [10:17:44] source/fsfe.org/about/people/bakker/bakker.nl.xhtml [10:17:44] source/fsfe.org/about/people/ceballos/ceballos.en.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.de.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.el.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.en.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.fr.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.it.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.nl.xhtml [10:17:44] source/fsfe.org/about/people/gerloff/gerloff.ru.xhtml [10:17:44] source/fsfe.org/about/people/greve/cv.el.xhtml [10:17:44] source/fsfe.org/about/people/greve/cv.en.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.de.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.el.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.en.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.fr.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.it.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.nl.xhtml [10:17:44] source/fsfe.org/about/people/greve/greve.ru.xhtml [10:17:44] source/fsfe.org/about/people/interviews/cryptie.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/cryptie.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/gkotsopoulou.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/gkotsopoulou.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/grun.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/grun.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/lequertier.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/lequertier.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/mueller.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/mueller.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/ockers.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/ockers.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/snow.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/snow.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/weitzhofer.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/weitzhofer.it.xhtml [10:17:44] source/fsfe.org/about/people/interviews/zerolo.en.xhtml [10:17:44] source/fsfe.org/about/people/interviews/zerolo.it.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.de.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.el.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.en.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.it.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.nl.xhtml [10:17:44] source/fsfe.org/about/people/kirschner/kirschner.ru.xhtml [10:17:44] source/fsfe.org/about/people/ku/ku.en.xhtml [10:17:44] source/fsfe.org/about/people/lasota/lasota.en.xhtml [10:17:44] source/fsfe.org/about/people/mehl/mehl.de.xhtml [10:17:44] source/fsfe.org/about/people/mehl/mehl.en.xhtml [10:17:44] source/fsfe.org/about/people/mehl/mehl.nl.xhtml [10:17:44] source/fsfe.org/about/people/partsafyllidou/partsafyllidou.en.xhtml [10:17:44] source/fsfe.org/about/people/repentinus/repentinus.de.xhtml [10:17:44] source/fsfe.org/about/people/repentinus/repentinus.en.xhtml [10:17:44] source/fsfe.org/about/people/repentinus/repentinus.nl.xhtml [10:17:44] source/fsfe.org/about/people/rikken/rikken.en.xhtml [10:17:44] source/fsfe.org/about/people/roussos/roussos.en.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.el.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.en.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.fr.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.nb.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.nl.xhtml [10:17:44] source/fsfe.org/about/people/roy/roy.ru.xhtml [10:17:44] source/fsfe.org/about/people/sander/sander.en.xhtml [10:17:44] source/fsfe.org/about/people/tobiasd/tobiasd.en.xhtml [10:17:44] source/fsfe.org/about/softwarefreedom/testimonials.en.xhtml [10:17:44] source/fsfe.org/activities/activities.de.xhtml [10:17:44] source/fsfe.org/activities/activities.en.xhtml [10:17:44] source/fsfe.org/activities/activities.es.xhtml [10:17:44] source/fsfe.org/activities/activities.fr.xhtml [10:17:44] source/fsfe.org/activities/activities.it.xhtml [10:17:44] source/fsfe.org/activities/activities.nl.xhtml [10:17:44] source/fsfe.org/activities/activities.pt.xhtml [10:17:44] source/fsfe.org/activities/activities.tr.xhtml [10:17:44] source/fsfe.org/activities/awareness.en.xhtml [10:17:44] source/fsfe.org/activities/awareness.es.xhtml [10:17:44] source/fsfe.org/activities/awareness.it.xhtml [10:17:44] source/fsfe.org/activities/awareness.nl.xhtml [10:17:44] source/fsfe.org/activities/awareness.tr.xhtml [10:17:44] source/fsfe.org/activities/legal.en.xhtml [10:17:44] source/fsfe.org/activities/legal.es.xhtml [10:17:44] source/fsfe.org/activities/legal.it.xhtml [10:17:44] source/fsfe.org/activities/legal.nl.xhtml [10:17:44] source/fsfe.org/activities/legal.tr.xhtml [10:17:44] source/fsfe.org/activities/policy.en.xhtml [10:17:44] source/fsfe.org/activities/policy.es.xhtml [10:17:44] source/fsfe.org/activities/policy.it.xhtml [10:17:44] source/fsfe.org/activities/policy.nl.xhtml [10:17:44] source/fsfe.org/activities/policy.tr.xhtml [10:17:44] source/fsfe.org/activities/15years/15years.en.xhtml [10:17:44] source/fsfe.org/activities/15years/15years.it.xhtml [10:17:44] source/fsfe.org/activities/15years/15years.nl.xhtml [10:17:44] source/fsfe.org/activities/15years/15years.sq.xhtml [10:17:44] source/fsfe.org/activities/20years/20years.de.xhtml [10:17:44] source/fsfe.org/activities/20years/20years.en.xhtml [10:17:44] source/fsfe.org/activities/20years/20years.es.xhtml [10:17:44] source/fsfe.org/activities/20years/20years.it.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/book-reviews.en.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/book-reviews.it.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/index.de.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/index.en.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/index.it.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/index.pt.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/letters.en.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/movie.en.xhtml [10:17:44] source/fsfe.org/activities/ada-zangemann/spark-childrens-interest-in-coding.en.xhtml [10:17:44] source/fsfe.org/activities/agnula/agnula.ca.xhtml [10:17:44] source/fsfe.org/activities/agnula/agnula.de.xhtml [10:17:44] source/fsfe.org/activities/agnula/agnula.en.xhtml [10:17:44] source/fsfe.org/activities/agnula/agnula.it.xhtml [10:17:44] source/fsfe.org/activities/agnula/agnula.nn.xhtml [10:17:44] source/fsfe.org/activities/agnula/deliverable-1.3.1.en.xhtml [10:17:44] source/fsfe.org/activities/agnula/java.en.xhtml [10:17:44] source/fsfe.org/activities/agnula/license-faq.en.xhtml [10:17:44] source/fsfe.org/activities/agnula/license-faq.it.xhtml [10:17:44] source/fsfe.org/activities/agnula/license.en.xhtml [10:17:44] source/fsfe.org/activities/android/android.ca.xhtml [10:17:44] source/fsfe.org/activities/android/android.da.xhtml [10:17:44] source/fsfe.org/activities/android/android.de.xhtml [10:17:44] source/fsfe.org/activities/android/android.el.xhtml [10:17:44] source/fsfe.org/activities/android/android.en.xhtml [10:17:44] source/fsfe.org/activities/android/android.es.xhtml [10:17:44] source/fsfe.org/activities/android/android.fr.xhtml [10:17:44] source/fsfe.org/activities/android/android.it.xhtml [10:17:44] source/fsfe.org/activities/android/android.nl.xhtml [10:17:44] source/fsfe.org/activities/android/android.pt.xhtml [10:17:44] source/fsfe.org/activities/android/android.ru.xhtml [10:17:44] source/fsfe.org/activities/android/android.sq.xhtml [10:17:44] source/fsfe.org/activities/android/android.sr.xhtml [10:17:44] source/fsfe.org/activities/android/android.tr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.da.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.el.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.en.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.es.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.fr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.it.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.nl.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.sq.xhtml [10:17:44] source/fsfe.org/activities/android/artwork.tr.xhtml [10:17:44] source/fsfe.org/activities/android/flashingdevices.en.xhtml [10:17:44] source/fsfe.org/activities/android/flashingdevices.fr.xhtml [10:17:44] source/fsfe.org/activities/android/flashingdevices.it.xhtml [10:17:44] source/fsfe.org/activities/android/help.de.xhtml [10:17:44] source/fsfe.org/activities/android/help.el.xhtml [10:17:44] source/fsfe.org/activities/android/help.en.xhtml [10:17:44] source/fsfe.org/activities/android/help.it.xhtml [10:17:44] source/fsfe.org/activities/android/help.nl.xhtml [10:17:44] source/fsfe.org/activities/android/help.ru.xhtml [10:17:44] source/fsfe.org/activities/android/help.sq.xhtml [10:17:44] source/fsfe.org/activities/android/help.tr.xhtml [10:17:44] source/fsfe.org/activities/android/is-flashing-legal.en.xhtml [10:17:44] source/fsfe.org/activities/android/is-flashing-legal.it.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.da.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.de.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.el.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.en.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.es.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.fr.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.it.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.nl.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.ru.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.sq.xhtml [10:17:44] source/fsfe.org/activities/android/liberate.tr.xhtml [10:17:44] source/fsfe.org/activities/android/sustainability.en.xhtml [10:17:44] source/fsfe.org/activities/android/workshops.en.xhtml [10:17:44] source/fsfe.org/activities/android/workshops.sq.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.de.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.el.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.en.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.es.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.fr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.it.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.sq.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A1.tr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.de.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.el.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.en.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.es.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.fr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.it.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.sq.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/DIN_A7.tr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.en.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.fi.xhtml [10:17:44] source/fsfe.org/activities/android/artwork/leaflets/leaflet-free-your-android-fdroid-text.tr.xhtml [10:17:44] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.de.xhtml [10:17:44] source/fsfe.org/activities/avm-gpl-violation/avm-gpl-violation.en.xhtml [10:17:44] source/fsfe.org/activities/bgw/bgw.de.xhtml [10:17:44] source/fsfe.org/activities/bgw/bgw.en.xhtml [10:17:44] source/fsfe.org/activities/bgw/bgw.fr.xhtml [10:17:44] source/fsfe.org/activities/conf-events/conf-events.en.xhtml [10:17:44] source/fsfe.org/activities/conf-events/report-cccamp23.en.xhtml [10:17:44] source/fsfe.org/activities/deviceneutrality/index.de.xhtml [10:17:44] source/fsfe.org/activities/deviceneutrality/index.en.xhtml [10:17:44] source/fsfe.org/activities/deviceneutrality/index.nl.xhtml [10:17:44] source/fsfe.org/activities/dma/dma.de.xhtml [10:17:44] source/fsfe.org/activities/dma/dma.en.xhtml [10:17:44] source/fsfe.org/activities/dma/dma.nl.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.ca.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.de.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.el.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.en.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.es.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.fr.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.it.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.nl.xhtml [10:17:44] source/fsfe.org/activities/drm/drm.pt.xhtml [10:17:44] source/fsfe.org/activities/drm/open-letter-ec-drm-html.en.xhtml [10:17:44] source/fsfe.org/activities/drm/sony-rootkit-fiasco.el.xhtml [10:17:44] source/fsfe.org/activities/drm/sony-rootkit-fiasco.en.xhtml [10:17:44] source/fsfe.org/activities/drm/sony-rootkit-fiasco.es.xhtml [10:17:44] source/fsfe.org/activities/drm/sony-rootkit-fiasco.nl.xhtml [10:17:44] source/fsfe.org/activities/elections/digitalomat.en.xhtml [10:17:44] source/fsfe.org/activities/elections/digitalomat.fr.xhtml [10:17:44] source/fsfe.org/activities/elections/digitalomat.nl.xhtml [10:17:44] source/fsfe.org/activities/elections/freedomvote.en.xhtml [10:17:44] source/fsfe.org/activities/elections/freedomvote.fr.xhtml [10:17:44] source/fsfe.org/activities/elections/freedomvote.nl.xhtml [10:17:44] source/fsfe.org/activities/elections/index.en.xhtml [10:17:44] source/fsfe.org/activities/elections/index.es.xhtml [10:17:44] source/fsfe.org/activities/elections/index.fr.xhtml [10:17:44] source/fsfe.org/activities/elections/letspromise.en.xhtml [10:17:45] source/fsfe.org/activities/elections/letspromise.fr.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.el.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.fr.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.nl.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/200909-germany-bundestagswahl.ru.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201103-france-cantonales.fr.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-baden-wuerttemberg.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-rheinland-pfalz.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201103-germany-sachsen-anhalt.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201105-germany-bremen.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201109-germany-berlin.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201203-germany-saarland.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-nrw.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201205-germany-schle-hol.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bavaria.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-bundestagswahl.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201309-germany-hessen.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201403-germany-bayern-muc.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-berlin.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201608-germany-meck-pomm.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201610-germany-berlin-handlungsempfehlungen.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201709-germany-bundestagswahl.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/201803-italy-general-elections.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/askyourcandidates.nl.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/example-questions.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/example-questions.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/example-questions.fr.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/example-questions.it.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/example-questions.nl.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/votingbenchmarks.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree-text.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/2015-CH-weagree/weagree.de.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/ep2014/askyourcandidates.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014-templates.en.xhtml [10:17:45] source/fsfe.org/activities/elections/askyourcandidates/ep2014/ayc-ep2014.en.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd-fs.cs.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd-fs.en.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd-fs.es.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd-fs.fr.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd.cs.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd.en.xhtml [10:17:45] source/fsfe.org/activities/eucd/eucd.it.xhtml [10:17:45] source/fsfe.org/activities/eura-slovakia/eura-slovakia.en.xhtml [10:17:45] source/fsfe.org/activities/eura-slovakia/eura-slovakia.nl.xhtml [10:17:45] source/fsfe.org/activities/fla/fiduciary.en.xhtml [10:17:45] source/fsfe.org/activities/fla/fla.en.xhtml [10:17:45] source/fsfe.org/activities/foss4smes/foss4smes.en.xhtml [10:17:45] source/fsfe.org/activities/foss4smes/foss4smes.nl.xhtml [10:17:45] source/fsfe.org/activities/fp6/focal.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/fp6.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/lafis.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/more-support.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/reasoning.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/reasoning.pt.xhtml [10:17:45] source/fsfe.org/activities/fp6/recommendation.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/recommendation.pt.xhtml [10:17:45] source/fsfe.org/activities/fp6/supporting-parties.en.xhtml [10:17:45] source/fsfe.org/activities/fp6/supporting-parties.pt.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.de.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.el.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.en.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.fr.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.it.xhtml [10:17:45] source/fsfe.org/activities/fp7/fp7.nl.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.cs.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.de.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.el.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.en.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.es.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.fr.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.it.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.nl.xhtml [10:17:45] source/fsfe.org/activities/gbn/gbn.pt.xhtml [10:17:45] source/fsfe.org/activities/gplv3/bangalore-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.el.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-moglen-transcript.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-summaries.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-summaries.it.xhtml [10:17:45] source/fsfe.org/activities/gplv3/barcelona-summaries.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/brussels-rms-transcript.el.xhtml [10:17:45] source/fsfe.org/activities/gplv3/brussels-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/brussels-rms-transcript.fr.xhtml [10:17:45] source/fsfe.org/activities/gplv3/brussels-rms-transcript.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/diff-draft1-draft2.de.xhtml [10:17:45] source/fsfe.org/activities/gplv3/diff-draft1-draft2.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/diff-draft2-draft3.el.xhtml [10:17:45] source/fsfe.org/activities/gplv3/diff-draft2-draft3.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/diff-gplv2-draft2.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/drm-and-gplv3.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.ca.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.de.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.es.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.fr.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.it.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/europe-gplv3-conference.pt.xhtml [10:17:45] source/fsfe.org/activities/gplv3/events.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/fisl-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/fisl-rms-transcript.es.xhtml [10:17:45] source/fsfe.org/activities/gplv3/fisl-rms-transcript.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3-torino.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3-torino.es.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3-torino.it.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3-torino.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.ca.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.de.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.el.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.es.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.fr.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.it.xhtml [10:17:45] source/fsfe.org/activities/gplv3/gplv3.nl.xhtml [10:17:45] source/fsfe.org/activities/gplv3/links.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/patents-and-gplv3.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/timeline.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/tokyo-ciaran-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.el.xhtml [10:17:45] source/fsfe.org/activities/gplv3/tokyo-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/topics.en.xhtml [10:17:45] source/fsfe.org/activities/gplv3/torino-rms-transcript.en.xhtml [10:17:45] source/fsfe.org/activities/igf/a2k.de.xhtml [10:17:45] source/fsfe.org/activities/igf/a2k.el.xhtml [10:17:45] source/fsfe.org/activities/igf/a2k.en.xhtml [10:17:45] source/fsfe.org/activities/igf/a2k.fr.xhtml [10:17:45] source/fsfe.org/activities/igf/a2k.nl.xhtml [10:17:45] source/fsfe.org/activities/igf/dcos.el.xhtml [10:17:45] source/fsfe.org/activities/igf/dcos.en.xhtml [10:17:45] source/fsfe.org/activities/igf/dcos.fr.xhtml [10:17:45] source/fsfe.org/activities/igf/dcos.nl.xhtml [10:17:45] source/fsfe.org/activities/igf/igf.el.xhtml [10:17:45] source/fsfe.org/activities/igf/igf.en.xhtml [10:17:45] source/fsfe.org/activities/igf/igf.fr.xhtml [10:17:45] source/fsfe.org/activities/igf/igf.nl.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.ca.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.de.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.el.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.en.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.fr.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.it.xhtml [10:17:45] source/fsfe.org/activities/igf/sovsoft.nl.xhtml [10:17:45] source/fsfe.org/activities/igf/wgig.de.xhtml [10:17:45] source/fsfe.org/activities/igf/wgig.el.xhtml [10:17:45] source/fsfe.org/activities/igf/wgig.en.xhtml [10:17:45] source/fsfe.org/activities/igf/wgig.nl.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/index.de.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/index.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/index.fr.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/index.it.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/index.nl.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/artwork/artwork.el.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/artwork/artwork.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/artwork/artwork.it.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/artwork/artwork.nl.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/artwork/artwork.sq.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/report/report_2023.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/report/report_2024.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.de.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.el.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.es.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.fr.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.it.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.nl.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.pt.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/gallery.sq.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.en.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.it.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.nl.xhtml [10:17:45] source/fsfe.org/activities/ilovefs/whylovefs/whylovefs.sq.xhtml [10:17:45] source/fsfe.org/activities/ipred2/ipred2.de.xhtml [10:17:45] source/fsfe.org/activities/ipred2/ipred2.el.xhtml [10:17:45] source/fsfe.org/activities/ipred2/ipred2.en.xhtml [10:17:45] source/fsfe.org/activities/ipred2/ipred2.fr.xhtml [10:17:45] source/fsfe.org/activities/ipred2/ipred2.nl.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.de.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.el.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.en.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.es.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.it.xhtml [10:17:45] source/fsfe.org/activities/ipred2/letter-april-2007.nl.xhtml [10:17:45] source/fsfe.org/activities/licence-questions/licence-questions.en.xhtml [10:17:45] source/fsfe.org/activities/ln/application-confirm.en.xhtml [10:17:45] source/fsfe.org/activities/ln/application-success.en.xhtml [10:17:45] source/fsfe.org/activities/ln/application.en.xhtml [10:17:45] source/fsfe.org/activities/ln/council.en.xhtml [10:17:45] source/fsfe.org/activities/ln/llw-conf.en.xhtml [10:17:45] source/fsfe.org/activities/ln/llw-past.de.xhtml [10:17:45] source/fsfe.org/activities/ln/llw-past.en.xhtml [10:17:45] source/fsfe.org/activities/ln/llw.de.xhtml [10:17:45] source/fsfe.org/activities/ln/llw.en.xhtml [10:17:45] source/fsfe.org/activities/ln/ln-procedures.en.xhtml [10:17:45] source/fsfe.org/activities/ln/ln.de.xhtml [10:17:45] source/fsfe.org/activities/ln/ln.en.xhtml [10:17:45] source/fsfe.org/activities/ln/memberlist-confirm.en.xhtml [10:17:45] source/fsfe.org/activities/ln/memberlist-success.en.xhtml [10:17:45] source/fsfe.org/activities/ln/memberlist.en.xhtml [10:17:45] source/fsfe.org/activities/ln/modpolicy.en.xhtml [10:17:45] source/fsfe.org/activities/ln/rules.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/contact.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/contact.de.xhtml [10:17:45] source/fsfe.org/activities/mankind/contact.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/contact.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/done.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/done.de.xhtml [10:17:45] source/fsfe.org/activities/mankind/done.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/done.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/help.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/help.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/help.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/links.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/links.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/links.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/mankind.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/mankind.de.xhtml [10:17:45] source/fsfe.org/activities/mankind/mankind.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/mankind.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/press.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/press.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/press.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/support.ca.xhtml [10:17:45] source/fsfe.org/activities/mankind/support.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/support.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/index.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/index.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/press-release.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/press-release.es.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/press-release.fr.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/conclusion.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/contact.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/ethical.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/facts.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/independence.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/origin.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/plan.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/social.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/support.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/technical.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/threats.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/unesco.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/why1.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/why2.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/workdone.en.xhtml [10:17:45] source/fsfe.org/activities/mankind/lsm2002/slides/workinprogress.en.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.ca.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.de.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.en.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.es.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.fr.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.it.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/article-20060421.nl.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/background.el.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/background.en.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/background.fr.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/background.it.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/background.nl.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/intervention-20040930.en.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.de.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.el.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.en.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.fr.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.it.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/ms-vs-eu.nl.xhtml [10:17:45] source/fsfe.org/activities/ms-vs-eu/timeline.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.de.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.el.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.es.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.fr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.it.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-converter-hoax.sr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.el.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.fr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.it.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-idiosyncrasies.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-interoperability.de.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-interoperability.el.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-interoperability.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-interoperability.fr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-interoperability.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.de.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.el.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.fr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.it.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions-for-ms.sr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.de.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.el.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.es.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.fr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.it.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.mk.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.pt.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml-questions.sr.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml.en.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml.es.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml.it.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml.nl.xhtml [10:17:45] source/fsfe.org/activities/msooxml/msooxml.sq.xhtml [10:17:45] source/fsfe.org/activities/ngi/ngi-past.en.xhtml [10:17:45] source/fsfe.org/activities/ngi/ngi.de.xhtml [10:17:45] source/fsfe.org/activities/ngi/ngi.en.xhtml [10:17:45] source/fsfe.org/activities/ngi/ngi.it.xhtml [10:17:45] source/fsfe.org/activities/nledu/nledu.de.xhtml [10:17:45] source/fsfe.org/activities/nledu/nledu.en.xhtml [10:17:45] source/fsfe.org/activities/nledu/nledu.it.xhtml [10:17:45] source/fsfe.org/activities/nledu/nledu.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/bug-report-uk.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/bug-report.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.hr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/buglist.sq.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/follow-up.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/guideline.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.et.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.hr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.pl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.ro.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.sq.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/letter.sv.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fi.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/parliamentary-questions-eu.sv.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.ar.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.cs.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.hr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.pl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfreaders.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfsprint.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfsprint.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfsprint.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/pdfsprint.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition-error.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition-error.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition-success.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition-success.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition-success.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.ar.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.cs.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.de.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.el.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.en.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.es.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.et.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.fr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.hr.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.it.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.nl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.pl.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.pt.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.ro.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.ru.xhtml [10:17:45] source/fsfe.org/activities/pdfreaders/petition.sv.xhtml [10:17:45] source/fsfe.org/activities/publiccode/bea.de.xhtml [10:17:45] source/fsfe.org/activities/publiccode/brochure.de.xhtml [10:17:45] source/fsfe.org/activities/publiccode/brochure.en.xhtml [10:17:45] source/fsfe.org/activities/publiccode/brochure.it.xhtml [10:17:45] source/fsfe.org/activities/publiccode/get-active.en.xhtml [10:17:45] source/fsfe.org/activities/publiccode/get-active.es.xhtml [10:17:45] source/fsfe.org/activities/publiccode/get-active.it.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.de.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.en.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.es.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.fr.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.it.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.nl.xhtml [10:17:45] source/fsfe.org/activities/publiccode/publiccode.tr.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.de.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.el.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.en.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.fr.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.nl.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/radiodirective.tr.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/statement.de.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/statement.en.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/statement.es.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/statement.it.xhtml [10:17:45] source/fsfe.org/activities/radiodirective/statement.nl.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.de.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.el.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.en.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.es.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.fr.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.it.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.nl.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.pt.xhtml [10:17:45] source/fsfe.org/activities/routers/routers.tr.xhtml [10:17:45] source/fsfe.org/activities/routers/timeline.de.xhtml [10:17:45] source/fsfe.org/activities/routers/timeline.en.xhtml [10:17:45] source/fsfe.org/activities/routers/timeline.nl.xhtml [10:17:45] source/fsfe.org/activities/self/self.de.xhtml [10:17:45] source/fsfe.org/activities/self/self.el.xhtml [10:17:45] source/fsfe.org/activities/self/self.en.xhtml [10:17:45] source/fsfe.org/activities/self/self.fr.xhtml [10:17:45] source/fsfe.org/activities/self/self.it.xhtml [10:17:45] source/fsfe.org/activities/self/self.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade-register.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade-register.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade-register.mk.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade-register.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.de.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.es.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.fr.xhtml [10:17:45] source/fsfe.org/activities/stacs/belgrade.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/london-register.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/london-register.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/london-register.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/london.de.xhtml [10:17:45] source/fsfe.org/activities/stacs/london.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/london.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/london.fr.xhtml [10:17:45] source/fsfe.org/activities/stacs/london.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.de.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.es.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.fr.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.it.xhtml [10:17:45] source/fsfe.org/activities/stacs/stacs.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-belgrade.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-belgrade.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-belgrade.mk.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-belgrade.nl.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-london.el.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-london.en.xhtml [10:17:45] source/fsfe.org/activities/stacs/tmpl-london.nl.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.ca.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/background.ru.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.ca.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/documents.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/fsfe-patstrat-response.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/how-the-eu-patent-system-works.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040510.nl.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040531.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040531.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040531.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040531.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040706.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040706.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040706.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040706.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040706.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040802.nl.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040906.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040906.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040906.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20040906.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041004.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041004.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041004.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041004.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041004.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041101.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041101.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041101.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041101.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041206.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041206.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041206.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041206.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20041206.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050103.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050103.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050103.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050103.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050103.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050207.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050307.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050307.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050307.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050307.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050307.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050405.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050405.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050405.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050405.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050502.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050502.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050502.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050502.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050502.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050606.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050606.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050606.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050606.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20050606.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20101222.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/letter-20110406.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/memorandum.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/memorandum.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/memorandum.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/memorandum.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/nortel.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/novell-cptn.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/second-reading-bullets.nl.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.ca.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.es.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/status.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.ca.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.da.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.de.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.el.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.it.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.nl.xhtml [10:17:45] source/fsfe.org/activities/swpat/swpat.ru.xhtml [10:17:45] source/fsfe.org/activities/swpat/current/model-letter-companies.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/current/model-letter-companies.fr.xhtml [10:17:45] source/fsfe.org/activities/swpat/current/unitary-patent.en.xhtml [10:17:45] source/fsfe.org/activities/swpat/current/unitary-patent.fi.xhtml [10:17:45] source/fsfe.org/activities/swpat/current/unitary-patent.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool1.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool1.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool1.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool2.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool2.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool2.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool3.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool3.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool3.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool4.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool4.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool4.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool5.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool5.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool5.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool6.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool6.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool6.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool6.sv.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool7.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool7.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool7.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool7.sv.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool8.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool8.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool8.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tagatschool8.sv.xhtml [10:17:45] source/fsfe.org/activities/tgs/tgs.de.xhtml [10:17:45] source/fsfe.org/activities/tgs/tgs.en.xhtml [10:17:45] source/fsfe.org/activities/tgs/tgs.fr.xhtml [10:17:45] source/fsfe.org/activities/tgs/tgs.sv.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.de.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.en.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.es.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.fr.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.it.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-confirm.nl.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.de.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.en.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.es.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.fr.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.it.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/application-success.nl.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.de.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.el.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.en.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.fr.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.it.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/howtoupcycle.nl.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.de.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.en.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.es.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.fr.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.it.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/individual-signatures.nl.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/informationmaterial.de.xhtml [10:17:45] source/fsfe.org/activities/upcyclingandroid/informationmaterial.el.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/informationmaterial.en.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/informationmaterial.es.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/informationmaterial.fr.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/informationmaterial.it.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.en.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/is-flashing-legal.it.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.ca.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.de.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.el.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.en.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.es.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.fr.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.it.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.nl.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.pl.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/openletter.pt.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.de.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.el.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.en.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.es.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.fr.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.it.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.nl.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/upcyclingandroid.tr.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.de.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.en.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.es.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.fr.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.it.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.nl.xhtml [10:17:46] source/fsfe.org/activities/upcyclingandroid/workshops.tr.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.da.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.de.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.el.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.en.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.fr.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.it.xhtml [10:17:46] source/fsfe.org/activities/whyfs/whyfs.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/fser.de.xhtml [10:17:46] source/fsfe.org/activities/wipo/fser.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/fser.it.xhtml [10:17:46] source/fsfe.org/activities/wipo/fser.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.de.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.it.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/iprip.pt.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050413.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050415.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050620.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050721.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050930.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050930.fr.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20050930.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060223.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060223.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060223.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060628.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060628.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060628.fr.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20060628.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20070928.de.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20070928.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20070928.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20070928.it.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20070928.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090324.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090325.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090327.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090420-01.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090420-02.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090430-01.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090430-01.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090430-02.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090430-02.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090501.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20090501.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100125-01.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100125-02.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100125-03.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100125.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100127-01.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20100127-02.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101013.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101013.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101013.fr.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101013.pt.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101124-01.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101124-01.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101124-02.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/statement-20101124-02.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.de.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.es.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.fr.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.it.xhtml [10:17:46] source/fsfe.org/activities/wipo/wipo.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.de.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.el.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.en.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.es.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.fr.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.hu.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.it.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.nl.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.pt.xhtml [10:17:46] source/fsfe.org/activities/wipo/wiwo.ru.xhtml [10:17:46] source/fsfe.org/activities/wsis/cs-benchmarks-03-11-14.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/debriefing-geneva.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/debriefing-paris.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/event-03-12-10.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/fs.cs.xhtml [10:17:46] source/fsfe.org/activities/wsis/fs.de.xhtml [10:17:46] source/fsfe.org/activities/wsis/fs.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/fs.fi.xhtml [10:17:46] source/fsfe.org/activities/wsis/fs.ru.xhtml [10:17:46] source/fsfe.org/activities/wsis/issues.de.xhtml [10:17:46] source/fsfe.org/activities/wsis/issues.el.xhtml [10:17:46] source/fsfe.org/activities/wsis/issues.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/issues.nl.xhtml [10:17:46] source/fsfe.org/activities/wsis/ps-20030923.de.xhtml [10:17:46] source/fsfe.org/activities/wsis/ps-20030923.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/ps-20030923.it.xhtml [10:17:46] source/fsfe.org/activities/wsis/ps-20030923.nl.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis-and-software.de.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis-and-software.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis-and-software.nl.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis.en.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis.es.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis.it.xhtml [10:17:46] source/fsfe.org/activities/wsis/wsis.nl.xhtml [10:17:46] source/fsfe.org/activities/yh4f/faq.en.xhtml [10:17:46] source/fsfe.org/activities/yh4f/index.en.xhtml [10:17:46] source/fsfe.org/activities/yh4f/jury.en.xhtml [10:17:46] source/fsfe.org/activities/yh4f/media.en.xhtml [10:17:46] source/fsfe.org/activities/yh4f/register-confirm.en.xhtml [10:17:46] source/fsfe.org/activities/yh4f/register-success.en.xhtml [10:17:46] source/fsfe.org/activities/zooom/zooom.de.xhtml [10:17:46] source/fsfe.org/activities/zooom/zooom.en.xhtml [10:17:46] source/fsfe.org/contact/email-updates.en.xhtml [10:17:46] source/fsfe.org/contact/email-updates.it.xhtml [10:17:46] source/fsfe.org/contact/projects-call/projects-call.en.xhtml [10:17:46] source/fsfe.org/contact/projects-call/projects-call.it.xhtml [10:17:46] source/fsfe.org/contact/projects-call/projects-call.nl.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-confirm.en.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-confirm.it.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-confirm.nl.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-success.en.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-success.it.xhtml [10:17:46] source/fsfe.org/contact/projects-call/submission-success.nl.xhtml [10:17:46] source/fsfe.org/contribute/contribute.bg.xhtml [10:17:46] source/fsfe.org/contribute/contribute.de.xhtml [10:17:46] source/fsfe.org/contribute/contribute.en.xhtml [10:17:46] source/fsfe.org/contribute/contribute.es.xhtml [10:17:46] source/fsfe.org/contribute/contribute.fi.xhtml [10:17:46] source/fsfe.org/contribute/contribute.fr.xhtml [10:17:46] source/fsfe.org/contribute/contribute.it.xhtml [10:17:46] source/fsfe.org/contribute/contribute.nl.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.en.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.es.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.fr.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.it.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.nl.xhtml [10:17:46] source/fsfe.org/contribute/getyourgraphic.sq.xhtml [10:17:46] source/fsfe.org/contribute/promotion-materials-archive.de.xhtml [10:17:46] source/fsfe.org/contribute/promotion-materials-archive.en.xhtml [10:17:46] source/fsfe.org/contribute/promotion-materials-archive.fr.xhtml [10:17:46] source/fsfe.org/contribute/promotion-materials-archive.nl.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-freebie.en.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-ordererror.de.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-ordererror.en.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-ordererror.fr.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-ordererror.nl.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-ordererror.sq.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-orderthanks.de.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-orderthanks.en.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-orderthanks.fr.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-orderthanks.nl.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword-orderthanks.sq.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword.en.xhtml [10:17:46] source/fsfe.org/contribute/spreadtheword.it.xhtml [10:17:46] source/fsfe.org/contribute/advocacy/cwfs.en.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.cs.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.de.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.el.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.en.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.es.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.fr.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.it.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.nl.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.pt.xhtml [10:17:46] source/fsfe.org/contribute/designers/designers.ru.xhtml [10:17:46] source/fsfe.org/contribute/designers/styleguide.el.xhtml [10:17:46] source/fsfe.org/contribute/designers/styleguide.en.xhtml [10:17:46] source/fsfe.org/contribute/designers/styleguide.fr.xhtml [10:17:46] source/fsfe.org/contribute/designers/styleguide.it.xhtml [10:17:46] source/fsfe.org/contribute/editors/editorial-guidelines.en.xhtml [10:17:46] source/fsfe.org/contribute/editors/editorial-guidelines.it.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.cs.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.de.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.el.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.en.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.fr.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.it.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.nl.xhtml [10:17:46] source/fsfe.org/contribute/editors/editors.pt.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.bg.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.de.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.el.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.en.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.es.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.et.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.fi.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.fr.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.it.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.nb.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.nl.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.nn.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.pl.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.pt.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.ru.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.sq.xhtml [10:17:46] source/fsfe.org/contribute/translators/translators.sv.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.bg.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.ca.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.da.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.de.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.el.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.en.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.es.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.et.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.fi.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.fr.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.hu.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.it.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.nb.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.nl.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.pl.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.pt.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.ru.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.sq.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.sv.xhtml [10:17:46] source/fsfe.org/contribute/translators/wordlist.tr.xhtml [10:17:46] source/fsfe.org/contribute/web/features.en.xhtml [10:17:46] source/fsfe.org/contribute/web/web.de.xhtml [10:17:46] source/fsfe.org/contribute/web/web.en.xhtml [10:17:46] source/fsfe.org/contribute/web/web.fr.xhtml [10:17:46] source/fsfe.org/contribute/web/web.nl.xhtml [10:17:46] source/fsfe.org/contribute/web/web.sq.xhtml [10:17:46] source/fsfe.org/donate/donate.de.xhtml [10:17:46] source/fsfe.org/donate/donate.en.xhtml [10:17:46] source/fsfe.org/donate/donate.es.xhtml [10:17:46] source/fsfe.org/donate/donate.fr.xhtml [10:17:46] source/fsfe.org/donate/donate.it.xhtml [10:17:46] source/fsfe.org/donate/donate.nl.xhtml [10:17:46] source/fsfe.org/donate/germany.de.xhtml [10:17:46] source/fsfe.org/donate/hardware.de.xhtml [10:17:46] source/fsfe.org/donate/hardware.en.xhtml [10:17:46] source/fsfe.org/donate/hardware.es.xhtml [10:17:46] source/fsfe.org/donate/hardware.it.xhtml [10:17:46] source/fsfe.org/donate/hardware.nl.xhtml [10:17:46] source/fsfe.org/donate/hardware.sq.xhtml [10:17:46] source/fsfe.org/donate/letter-20041209.de.xhtml [10:17:46] source/fsfe.org/donate/letter-20041209.el.xhtml [10:17:46] source/fsfe.org/donate/letter-20041209.en.xhtml [10:17:46] source/fsfe.org/donate/letter-20041209.it.xhtml [10:17:46] source/fsfe.org/donate/letter-2009.de.xhtml [10:17:46] source/fsfe.org/donate/letter-2009.el.xhtml [10:17:46] source/fsfe.org/donate/letter-2009.en.xhtml [10:17:46] source/fsfe.org/donate/letter-2009.fr.xhtml [10:17:46] source/fsfe.org/donate/letter-2009.it.xhtml [10:17:46] source/fsfe.org/donate/letter-2011.en.xhtml [10:17:46] source/fsfe.org/donate/luxembourg.fr.xhtml [10:17:46] source/fsfe.org/donate/netherlands.nl.xhtml [10:17:46] source/fsfe.org/donate/payment.en.xhtml [10:17:46] source/fsfe.org/donate/switzerland.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2001.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2002.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2003.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2004.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2005.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2006.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2007.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2008.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.nl.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2009.ru.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.cs.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.de.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.el.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.en.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.it.xhtml [10:17:46] source/fsfe.org/donate/thankgnus-2010.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2010.ru.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.el.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.ru.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2011.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.el.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.ru.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2012.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2013.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2014.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2015.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2016.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2017.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2018.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2018.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2018.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2018.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2018.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2019.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2019.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2019.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2019.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2019.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2020.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2021.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2022.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2023.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus-2024.sq.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.bs.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.de.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.el.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.en.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.fi.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.fr.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.it.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.nl.xhtml [10:17:47] source/fsfe.org/donate/thankgnus.sq.xhtml [10:17:47] source/fsfe.org/donate/thankyou.de.xhtml [10:17:47] source/fsfe.org/donate/thankyou.el.xhtml [10:17:47] source/fsfe.org/donate/thankyou.en.xhtml [10:17:47] source/fsfe.org/donate/thankyou.es.xhtml [10:17:47] source/fsfe.org/donate/thankyou.fr.xhtml [10:17:47] source/fsfe.org/donate/thankyou.it.xhtml [10:17:47] source/fsfe.org/donate/thankyou.nl.xhtml [10:17:47] source/fsfe.org/donate/thankyou.ru.xhtml [10:17:47] source/fsfe.org/donate/thankyou.sq.xhtml [10:17:47] source/fsfe.org/error/400.de.xhtml [10:17:47] source/fsfe.org/error/400.en.xhtml [10:17:47] source/fsfe.org/error/400.es.xhtml [10:17:47] source/fsfe.org/error/400.fr.xhtml [10:17:47] source/fsfe.org/error/400.it.xhtml [10:17:47] source/fsfe.org/error/400.nl.xhtml [10:17:47] source/fsfe.org/error/400.sq.xhtml [10:17:47] source/fsfe.org/error/401.de.xhtml [10:17:47] source/fsfe.org/error/401.en.xhtml [10:17:47] source/fsfe.org/error/401.es.xhtml [10:17:47] source/fsfe.org/error/401.fr.xhtml [10:17:47] source/fsfe.org/error/401.it.xhtml [10:17:47] source/fsfe.org/error/401.nl.xhtml [10:17:47] source/fsfe.org/error/401.sq.xhtml [10:17:47] source/fsfe.org/error/403.de.xhtml [10:17:47] source/fsfe.org/error/403.en.xhtml [10:17:47] source/fsfe.org/error/403.es.xhtml [10:17:47] source/fsfe.org/error/403.fr.xhtml [10:17:47] source/fsfe.org/error/403.it.xhtml [10:17:47] source/fsfe.org/error/403.nl.xhtml [10:17:47] source/fsfe.org/error/403.sq.xhtml [10:17:47] source/fsfe.org/error/404.de.xhtml [10:17:47] source/fsfe.org/error/404.en.xhtml [10:17:47] source/fsfe.org/error/404.es.xhtml [10:17:47] source/fsfe.org/error/404.fr.xhtml [10:17:47] source/fsfe.org/error/404.it.xhtml [10:17:47] source/fsfe.org/error/404.nl.xhtml [10:17:47] source/fsfe.org/error/404.sq.xhtml [10:17:47] source/fsfe.org/error/405.de.xhtml [10:17:47] source/fsfe.org/error/405.en.xhtml [10:17:47] source/fsfe.org/error/405.es.xhtml [10:17:47] source/fsfe.org/error/405.fr.xhtml [10:17:47] source/fsfe.org/error/405.it.xhtml [10:17:47] source/fsfe.org/error/405.nl.xhtml [10:17:47] source/fsfe.org/error/405.sq.xhtml [10:17:47] source/fsfe.org/error/408.de.xhtml [10:17:47] source/fsfe.org/error/408.en.xhtml [10:17:47] source/fsfe.org/error/408.fr.xhtml [10:17:47] source/fsfe.org/error/408.it.xhtml [10:17:47] source/fsfe.org/error/408.sq.xhtml [10:17:47] source/fsfe.org/error/410.de.xhtml [10:17:47] source/fsfe.org/error/410.en.xhtml [10:17:47] source/fsfe.org/error/410.fr.xhtml [10:17:47] source/fsfe.org/error/410.it.xhtml [10:17:47] source/fsfe.org/error/410.nl.xhtml [10:17:47] source/fsfe.org/error/410.sq.xhtml [10:17:47] source/fsfe.org/error/411.de.xhtml [10:17:47] source/fsfe.org/error/411.en.xhtml [10:17:47] source/fsfe.org/error/411.fr.xhtml [10:17:47] source/fsfe.org/error/411.it.xhtml [10:17:47] source/fsfe.org/error/411.nl.xhtml [10:17:47] source/fsfe.org/error/411.sq.xhtml [10:17:47] source/fsfe.org/error/412.de.xhtml [10:17:47] source/fsfe.org/error/412.en.xhtml [10:17:47] source/fsfe.org/error/412.it.xhtml [10:17:47] source/fsfe.org/error/412.sq.xhtml [10:17:47] source/fsfe.org/error/413.de.xhtml [10:17:47] source/fsfe.org/error/413.en.xhtml [10:17:47] source/fsfe.org/error/413.it.xhtml [10:17:47] source/fsfe.org/error/413.nl.xhtml [10:17:47] source/fsfe.org/error/413.sq.xhtml [10:17:47] source/fsfe.org/error/414.de.xhtml [10:17:47] source/fsfe.org/error/414.en.xhtml [10:17:47] source/fsfe.org/error/414.fr.xhtml [10:17:47] source/fsfe.org/error/414.it.xhtml [10:17:47] source/fsfe.org/error/414.nl.xhtml [10:17:47] source/fsfe.org/error/414.sq.xhtml [10:17:47] source/fsfe.org/error/415.de.xhtml [10:17:47] source/fsfe.org/error/415.en.xhtml [10:17:47] source/fsfe.org/error/415.fr.xhtml [10:17:47] source/fsfe.org/error/415.it.xhtml [10:17:47] source/fsfe.org/error/415.nl.xhtml [10:17:47] source/fsfe.org/error/415.sq.xhtml [10:17:47] source/fsfe.org/error/500.de.xhtml [10:17:47] source/fsfe.org/error/500.en.xhtml [10:17:47] source/fsfe.org/error/500.es.xhtml [10:17:47] source/fsfe.org/error/500.fr.xhtml [10:17:47] source/fsfe.org/error/500.it.xhtml [10:17:47] source/fsfe.org/error/500.nl.xhtml [10:17:47] source/fsfe.org/error/500.sq.xhtml [10:17:47] source/fsfe.org/error/501.de.xhtml [10:17:47] source/fsfe.org/error/501.en.xhtml [10:17:47] source/fsfe.org/error/501.es.xhtml [10:17:47] source/fsfe.org/error/501.fr.xhtml [10:17:47] source/fsfe.org/error/501.it.xhtml [10:17:47] source/fsfe.org/error/501.nl.xhtml [10:17:47] source/fsfe.org/error/501.sq.xhtml [10:17:47] source/fsfe.org/error/502.de.xhtml [10:17:47] source/fsfe.org/error/502.en.xhtml [10:17:47] source/fsfe.org/error/502.es.xhtml [10:17:47] source/fsfe.org/error/502.fr.xhtml [10:17:47] source/fsfe.org/error/502.it.xhtml [10:17:47] source/fsfe.org/error/502.nl.xhtml [10:17:47] source/fsfe.org/error/502.sq.xhtml [10:17:47] source/fsfe.org/error/503.de.xhtml [10:17:47] source/fsfe.org/error/503.en.xhtml [10:17:47] source/fsfe.org/error/503.es.xhtml [10:17:47] source/fsfe.org/error/503.fr.xhtml [10:17:47] source/fsfe.org/error/503.it.xhtml [10:17:47] source/fsfe.org/error/503.nl.xhtml [10:17:47] source/fsfe.org/error/503.sq.xhtml [10:17:47] source/fsfe.org/events/SFD-2010.el.xhtml [10:17:47] source/fsfe.org/events/SFD-2010.en.xhtml [10:17:47] source/fsfe.org/events/archive-template.en.xhtml [10:17:47] source/fsfe.org/events/events.de.xhtml [10:17:47] source/fsfe.org/events/events.en.xhtml [10:17:47] source/fsfe.org/events/events.es.xhtml [10:17:47] source/fsfe.org/events/events.fr.xhtml [10:17:47] source/fsfe.org/events/events.it.xhtml [10:17:47] source/fsfe.org/events/events.nl.xhtml [10:17:47] source/fsfe.org/events/fscons-2010.el.xhtml [10:17:47] source/fsfe.org/events/fscons-2010.en.xhtml [10:17:47] source/fsfe.org/events/fscons-2010.pt.xhtml [10:17:47] source/fsfe.org/events/2004/picnic.en.xhtml [10:17:47] source/fsfe.org/events/2004/picnic.sv.xhtml [10:17:47] source/fsfe.org/events/2004/FISL/fisl.en.xhtml [10:17:47] source/fsfe.org/events/2004/FISL/fisl.it.xhtml [10:17:47] source/fsfe.org/events/2004/FISL/fisl.sv.xhtml [10:17:47] source/fsfe.org/events/2005/gnulinuxtag/gnulinuxtag.en.xhtml [10:17:47] source/fsfe.org/events/2005/wsf-brazil/wsf-brazil.en.xhtml [10:17:47] source/fsfe.org/events/2006/gnulinuxtag2006/gnulinuxtag2006.en.xhtml [10:17:47] source/fsfe.org/events/2011/lnm-award-debian.en.xhtml [10:17:47] source/fsfe.org/events/2012/fscons-2012.en.xhtml [10:17:47] source/fsfe.org/events/2013/linuxtag-2013.en.xhtml [10:17:47] source/fsfe.org/events/2013/linuxtag-2013.sq.xhtml [10:17:47] source/fsfe.org/events/2013/panel-btw2013.de.xhtml [10:17:47] source/fsfe.org/events/2013/panel-btw2013.en.xhtml [10:17:47] source/fsfe.org/events/2013/rmll-2-2013.en.xhtml [10:17:47] source/fsfe.org/events/2013/rmll-2-2013.sq.xhtml [10:17:47] source/fsfe.org/events/2013/rmll-2013.el.xhtml [10:17:47] source/fsfe.org/events/2013/rmll-2013.en.xhtml [10:17:47] source/fsfe.org/events/2013/rmll-2013.sq.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.de.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.el.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.en.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.es.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.fr.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.it.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.nl.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20160616-01.sq.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.de.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.el.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.en.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.es.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.fr.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.it.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.nl.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-01.sq.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-02.en.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-02.es.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-02.nl.xhtml [10:17:47] source/fsfe.org/events/2016/summit/event-20161106-02.sq.xhtml [10:17:47] source/fsfe.org/events/clt/clt-bus.de.xhtml [10:17:47] source/fsfe.org/events/clt/clt-hotel.de.xhtml [10:17:47] source/fsfe.org/events/tools/eventregistration.de.xhtml [10:17:47] source/fsfe.org/events/tools/eventregistration.en.xhtml [10:17:47] source/fsfe.org/events/tools/eventregistration.it.xhtml [10:17:47] source/fsfe.org/events/tools/eventregistration.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/artificial-intelligence.en.xhtml [10:17:47] source/fsfe.org/freesoftware/artificial-intelligence.it.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.de.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.en.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.es.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.it.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/comparison.sq.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.ca.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.da.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.de.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.el.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.en.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.es.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.fi.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.hu.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.it.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.ro.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.sk.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.sq.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.tr.xhtml [10:17:47] source/fsfe.org/freesoftware/democracy.uk.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.ar.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.de.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.el.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.en.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.es.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.hr.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.it.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.ja.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.pl.xhtml [10:17:47] source/fsfe.org/freesoftware/freesoftware.tr.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.bg.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.ca.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.da.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.de.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.el.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.en.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.es.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.it.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/gnuproject.sq.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.de.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.el.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.en.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.es.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.it.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.sl.xhtml [10:17:47] source/fsfe.org/freesoftware/secure-boot.sq.xhtml [10:17:47] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.de.xhtml [10:17:47] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.en.xhtml [10:17:47] source/fsfe.org/freesoftware/developmentcooperation/developmentcooperation.it.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.cs.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.de.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.el.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.en.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.es.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.it.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/education/argumentation.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/education/edu-related-content.en.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.de.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.el.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.en.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.it.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/education/education.sv.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.de.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.el.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.en.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.es.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.it.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/education/eduteam.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/faq.de.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/faq.en.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/led.en.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/led.it.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/legal.en.xhtml [10:17:47] source/fsfe.org/freesoftware/legal/legal.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/procurement/mEUcrosoft.en.xhtml [10:17:47] source/fsfe.org/freesoftware/procurement/procurement.da.xhtml [10:17:47] source/fsfe.org/freesoftware/procurement/procurement.en.xhtml [10:17:47] source/fsfe.org/freesoftware/procurement/procurement.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/procurement/procurement.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/2012-06-uk-consultation-os.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/2014-02-uk-consultation-os.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/2014-03-26.OpenLetterToVilella.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.de.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.es.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bsa-letter-analysis.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/bt-open-letter.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.de.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.es.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.et.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.hr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.it.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.ro.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/def.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/dfd.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/dfd.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/dfd.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eif-v3.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2-01.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2-01.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2-01.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/eifv2.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/guardian-open-letter.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/minimalisticstandards.de.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/minimalisticstandards.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.cs.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.de.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.it.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/ps.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.da.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.de.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.el.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.es.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.fr.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.it.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.pt.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.ro.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.ru.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/standards.sq.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/transparency-letter.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/uk-standards-consultation.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.en.xhtml [10:17:47] source/fsfe.org/freesoftware/standards/why-frand-is-bad-for-free-software.nl.xhtml [10:17:47] source/fsfe.org/freesoftware/sustainability/sustainability.de.xhtml [10:17:47] source/fsfe.org/freesoftware/sustainability/sustainability.en.xhtml [10:17:47] source/fsfe.org/freesoftware/sustainability/sustainability.it.xhtml [10:17:47] source/fsfe.org/internal/bc.en.xhtml [10:17:47] source/fsfe.org/internal/er.en.xhtml [10:17:47] source/fsfe.org/internal/nt.en.xhtml [10:17:47] source/fsfe.org/internal/pd-result.en.xhtml [10:17:47] source/fsfe.org/internal/pd.en.xhtml [10:17:47] source/fsfe.org/internal/pt.en.xhtml [10:17:47] source/fsfe.org/internal/rc-result.en.xhtml [10:17:47] source/fsfe.org/internal/rc.en.xhtml [10:17:47] source/fsfe.org/news/archive-template.en.xhtml [10:17:47] source/fsfe.org/news/news.ca.xhtml [10:17:47] source/fsfe.org/news/news.cs.xhtml [10:17:47] source/fsfe.org/news/news.da.xhtml [10:17:47] source/fsfe.org/news/news.de.xhtml [10:17:47] source/fsfe.org/news/news.el.xhtml [10:17:47] source/fsfe.org/news/news.en.xhtml [10:17:47] source/fsfe.org/news/news.es.xhtml [10:17:47] source/fsfe.org/news/news.et.xhtml [10:17:47] source/fsfe.org/news/news.fi.xhtml [10:17:47] source/fsfe.org/news/news.fr.xhtml [10:17:47] source/fsfe.org/news/news.hr.xhtml [10:17:47] source/fsfe.org/news/news.hu.xhtml [10:17:47] source/fsfe.org/news/news.it.xhtml [10:17:47] source/fsfe.org/news/news.nb.xhtml [10:17:47] source/fsfe.org/news/news.nl.xhtml [10:17:47] source/fsfe.org/news/news.pt.xhtml [10:17:47] source/fsfe.org/news/news.ro.xhtml [10:17:47] source/fsfe.org/news/news.ru.xhtml [10:17:47] source/fsfe.org/news/news.sl.xhtml [10:17:47] source/fsfe.org/news/news.sq.xhtml [10:17:47] source/fsfe.org/news/news.sr.xhtml [10:17:47] source/fsfe.org/news/news.sv.xhtml [10:17:47] source/fsfe.org/news/newsletter.de.xhtml [10:17:47] source/fsfe.org/news/newsletter.en.xhtml [10:17:47] source/fsfe.org/news/newsletter.es.xhtml [10:17:47] source/fsfe.org/news/newsletter.fr.xhtml [10:17:47] source/fsfe.org/news/newsletter.it.xhtml [10:17:47] source/fsfe.org/news/newsletter.nl.xhtml [10:17:47] source/fsfe.org/news/podcast-opus.en.xhtml [10:17:47] source/fsfe.org/news/podcast.en.xhtml [10:17:47] source/fsfe.org/news/podcast.nl.xhtml [10:17:47] source/fsfe.org/news/2001/article-13.12.2001.de.xhtml [10:17:47] source/fsfe.org/news/2001/article-24.9.2001.de.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.de.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.en.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.es.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.fr.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.it.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-10-20-01.pt.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-12-17-01.en.xhtml [10:17:47] source/fsfe.org/news/2001/article2001-12-17-01.pt.xhtml [10:17:47] source/fsfe.org/news/2002/article-25.04.2002.de.xhtml [10:17:47] source/fsfe.org/news/2002/article-30.9.2002.de.xhtml [10:17:47] source/fsfe.org/news/2002/article2002-01-18-01.en.xhtml [10:17:47] source/fsfe.org/news/2002/article2002-01-18-01.es.xhtml [10:17:47] source/fsfe.org/news/2002/article2002-01-18-01.fr.xhtml [10:17:47] source/fsfe.org/news/2002/article2002-01-18-01.pt.xhtml [10:17:47] source/fsfe.org/news/2003/commissione-meo-presentazione.it.xhtml [10:17:47] source/fsfe.org/news/2003/commissione-meo-risposte.it.xhtml [10:17:47] source/fsfe.org/news/2003/lettera_MIUR-2003-07-16.it.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030211-01.el.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030211-01.en.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030211-01.it.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030211-01.nl.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030602-01.el.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030602-01.en.xhtml [10:17:47] source/fsfe.org/news/2003/news-20030602-01.nl.xhtml [10:17:47] source/fsfe.org/news/2003/vsi-studie.de.xhtml [10:17:47] source/fsfe.org/news/2004/cie.it.xhtml [10:17:47] source/fsfe.org/news/2004/cw-interview.de.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040521.de.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040624.de.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.ca.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.de.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.en.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.fr.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.it.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.nl.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.pl.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040917.sr.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20040930.de.xhtml [10:17:47] source/fsfe.org/news/2004/navigator-20041129.de.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040510-01.en.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040621-01.it.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040701-01.de.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040701-01.en.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040701-01.fr.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040701-01.it.xhtml [10:17:47] source/fsfe.org/news/2004/news-20040727-01.en.xhtml [10:17:47] source/fsfe.org/news/2005/letter-20050511-it-mep.it.xhtml [10:17:47] source/fsfe.org/news/2005/news-20050507-01.el.xhtml [10:17:47] source/fsfe.org/news/2005/news-20050507-01.en.xhtml [10:17:47] source/fsfe.org/news/2007/news-20070630-01.el.xhtml [10:17:47] source/fsfe.org/news/2007/news-20070630-01.en.xhtml [10:17:47] source/fsfe.org/news/2007/news-20070630-01.nl.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.de.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.el.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.en.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.es.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.it.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.nl.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071220-01.sv.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071221-01.da.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071221-01.el.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071221-01.en.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071221-01.it.xhtml [10:17:47] source/fsfe.org/news/2007/news-20071221-01.nl.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.de.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.el.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.en.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.fr.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.it.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.nb.xhtml [10:17:47] source/fsfe.org/news/2008/freedom-not-fear.nl.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.de.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.el.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.en.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.fr.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.it.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.nb.xhtml [10:17:47] source/fsfe.org/news/2008/gnu-25-years.nl.xhtml [10:17:47] source/fsfe.org/news/2008/news-20080118-01.el.xhtml [10:17:47] source/fsfe.org/news/2008/news-20080118-01.en.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080118-01.es.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080118-01.it.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080118-01.nl.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080214-01.el.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080214-01.en.xhtml [10:17:48] source/fsfe.org/news/2008/news-20080214-01.es.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080214-01.it.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080214-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080220-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080220-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080220-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080222-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080222-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080222-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.ca.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.es.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.fr.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.it.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080228-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080301-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080301-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080301-01.fr.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080301-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080305-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080305-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080305-01.fr.xhtml [10:17:49] source/fsfe.org/news/2008/news-20080305-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.de.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.fi.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.fr.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.it.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081202-02.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081208-01.de.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081208-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081208-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081208-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.de.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.es.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.fr.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.it.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081210-01.nl.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.de.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.el.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.en.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.es.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.fi.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.it.xhtml [10:17:49] source/fsfe.org/news/2008/news-20081215-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.nb.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090120-02.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090123-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090123-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090123-01.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090123-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090123-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090202-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.bg.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090227-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090301-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090301-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090301-01.nb.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090301-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090301-01.nn.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090311-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090311-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090311-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090311-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090323-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090323-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090323-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090323-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090325-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090325-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090325-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090411-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090411-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090411-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090414-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090414-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090414-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090414-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090418-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090418-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090418-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090418-01.nb.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090418-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090430-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090430-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090515-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090515-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090515-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090601-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090601-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090601-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090601-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090604-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090604-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090604-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090610-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090620-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090620-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090620-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090624-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090624-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090624-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090624-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090728-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090728-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090728-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090728-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090728-01.tr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090831-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090831-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090831-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090831-01.tr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090908-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090908-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090908-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090908-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090908-01.tr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20090921-01.tr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091005-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091005-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091005-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091005-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091006-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091006-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091006-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091006-01.tr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091008-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091008-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091008-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091008-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091019-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.es.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091023-02.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-02.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-02.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091109-02.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091118-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091118-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091118-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091118-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091118-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091127-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091127-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091127-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091127-01.it.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091127-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091216-01.de.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091216-01.el.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091216-01.en.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091216-01.fr.xhtml [10:17:49] source/fsfe.org/news/2009/news-20091216-01.nl.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.bg.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.de.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.el.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.en.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.es.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.fi.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.it.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.nb.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.nl.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.pt.xhtml [10:17:49] source/fsfe.org/news/2009/nyr.sr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.nl.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100126-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100129-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100129-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100129-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100129-01.nl.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100129-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100212-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100222-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100222-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100222-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100222-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100222-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.ca.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.nl.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100302-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100305-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100305-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100305-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100305-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100324-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100324-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100324-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100324-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100324-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100330-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100330-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100330-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100330-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100330-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100331-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100331-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100331-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100331-01.nb.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100331-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100428-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100508-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100510-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100510-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100519-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100519-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100702-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100702-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100702-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100702-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100705-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100705-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100705-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100802-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100802-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100802-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100802-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100803-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100803-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100907-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100907-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100907-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100907-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100907-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20100913-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101016-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101016-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101016-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101016-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101016-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101018-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101102-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101108-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101108-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101108-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101108-01.pt.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101207-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101207-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101207-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101207-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101216-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101216-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101216-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101216-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.de.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.el.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.en.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.es.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.fr.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.it.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.pl.xhtml [10:17:49] source/fsfe.org/news/2010/news-20101217-01.ru.xhtml [10:17:49] source/fsfe.org/news/2010/th-eulogy-20100508.de.xhtml [10:17:49] source/fsfe.org/news/2011/mapping-uk.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110113-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110113-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110113-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110201-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110201-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110201-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.hr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.pt.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-01.sv.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-02.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-02.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110202-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110209-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110209-01.fr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110209-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.fr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.hr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110214-01.pl.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110215-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110215-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110215-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110225-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110225-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110301-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110310-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110310-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110310-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110318-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110321-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110321-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110325-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-02.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-03.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110330-04.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110401-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110412-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110415-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110415-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110418-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110420-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110420-01.fr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110421-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110421-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110502-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110511-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110511-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110520-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110523-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110523-01.hr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110525-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110608-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110620-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110620-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110620-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110620-01.fr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110620-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110622-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110622-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110718-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110809-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110913-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20110919-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111025-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111107-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111107-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111107-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111107-01.nl.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111110-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111110-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111110-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111110-01.ru.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111114-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111114-01.es.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111114-01.sv.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111117-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111122-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.el.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.es.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.fr.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.it.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.nl.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-01.ru.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111128-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111201-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111201-02.de.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111201-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111206-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111208-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111208-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111213-01.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111213-02.en.xhtml [10:17:49] source/fsfe.org/news/2011/news-20111220-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120109-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120109-02.sq.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-01.sk.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-01.sq.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-02.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120110-02.sq.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120120-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120126-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120130-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120131-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120202-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120202-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120204-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120209-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120210-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120210-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120214-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120223-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120228-01.sq.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120303-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120303-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.cs.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120321-01.sk.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120322-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120323-02.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120323-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120323-03.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120323-03.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-02.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-02.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120328-02.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120330-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120330-01.sk.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120402-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120405-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120405-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120405-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-01.fi.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120412-02.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120425-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120425-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120426-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120501-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120502-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120508-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.et.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.ru.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.sk.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-01.sv.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-02.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-02.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-02.ru.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120509-02.sk.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120525-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120525-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120525-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120528-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120601-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120607-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120616-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120619-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120619-01.fi.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120627-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120627-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120627-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120711-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120711-01.fi.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120730-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120730-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120730-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120730-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120730-02.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120831-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120907-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120907-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120907-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120907-01.fi.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120907-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120918-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120920-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120920-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120921-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120921-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120925-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120925-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20120925-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121018-01.el.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121018-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121022-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121101-02.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121102-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121102-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121102-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121106-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121112-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121112-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121116-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121120-01.de.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121120-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121122-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121129-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121208-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121211-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121211-01.es.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121211-01.fi.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121211-01.fr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121214-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121217-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121217-01.it.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121217-01.sq.xhtml [10:17:49] source/fsfe.org/news/2012/news-20121217-01.sr.xhtml [10:17:49] source/fsfe.org/news/2012/news-20130329-01.en.xhtml [10:17:49] source/fsfe.org/news/2012/report-2012.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130212-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130212-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130212-01.fr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130212-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130212-01.sr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130218-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130221-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130221-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130226-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130226-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130312-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130312-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130319-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130319-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-02.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-02.fr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130327-02.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130402-01.el.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130402-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130402-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130422-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130422-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130423-02.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130423-02.ro.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130423-02.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130424-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130424-01.ro.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130424-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130429-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130429-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130503-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130503-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130503-01.es.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130503-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130611-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130611-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130612-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130612-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130612-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130620-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130620-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130620-01.tr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130620-02.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130620-02.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130625-02.el.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130625-02.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130625-02.fr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130625-02.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.fr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.pt.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.ru.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130626-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130703-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130703-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130703-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130712-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130712-01.fr.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130712-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130716-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130716-01.it.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130716-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130729-01.el.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130729-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130729-01.pt.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130729-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130729-02.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130730-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130730-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130730-01.et.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130730-01.pt.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130730-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130918-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130920-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130920-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130923-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130923-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130926-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130927-01.da.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130927-01.el.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130927-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20130927-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131104-02.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131105-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131107-01.el.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131107-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131107-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131211-01.de.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131213-01.en.xhtml [10:17:50] source/fsfe.org/news/2013/news-20131213-01.sq.xhtml [10:17:50] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.en.xhtml [10:17:50] source/fsfe.org/news/2013/i-voting/2013-07-26_Open_Letter_to_NEC.et.xhtml [10:17:50] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.en.xhtml [10:17:50] source/fsfe.org/news/2013/i-voting/2013-08-19_Response_from_the_Electronic_Voting_Committee.et.xhtml [10:17:50] source/fsfe.org/news/2013/i-voting/2013-10-08_Follow-up_Letter_to_the_Electronic_Voting_Committee.et.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140116-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140116-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140116-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140116-01.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140116-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140210-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140210-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140210-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140211-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140211-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140211-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140221-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140221-01.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140221-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140226-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140226-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140303-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140303-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140304-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140304-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140310-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140314-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140314-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140324-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140324-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140324-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140324-01.pt.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140324-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-01.tr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-02.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140326-02.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140328-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140328-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140328-01.ru.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140328-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140424-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140424-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140424-01.ru.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140424-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.ru.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140506-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140527-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140527-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140527-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140527-01.ru.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140527-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.ru.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140528-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140708-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140708-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140708-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140708-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140801-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140801-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140801-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.pt.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140912-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20140929-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141016-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141016-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141016-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141016-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141016-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141017-02.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141120-02.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141120-02.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141120-02.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.sr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141203-01.tr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141212-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141212-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141212-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141212-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141217-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141217-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141217-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-01.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.de.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.fr.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.it.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141218-02.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.el.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.en.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.es.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.nl.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.sq.xhtml [10:17:50] source/fsfe.org/news/2014/news-20141219-01.sr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.pt.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150209-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150210-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150210-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150210-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150210-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150210-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150218-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150218-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150218-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150224-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150301-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150301-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150302-02.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150302-02.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150302-02.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150303-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150303-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150303-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150303-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150306-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150306-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150306-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150306-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150316-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150316-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150316-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150324-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150324-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150324-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150324-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150325-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150325-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150325-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150325-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150331-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150331-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150331-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-02.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150401-02.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150414-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150414-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150414-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150506-01.tr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150527-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150527-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150605-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150605-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150605-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150605-02.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150616-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150616-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150616-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150817-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150817-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150817-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150817-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150829-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150902-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150902-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150902-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150902-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150916-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150918-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150918-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150918-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150918-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150918-02.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20150922-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.pt.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151013-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151020-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151020-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151020-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151020-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151028-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151028-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151028-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151028-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151104-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151104-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151104-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151104-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151105-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151110-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151110-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151110-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151110-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151110-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151203-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151203-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151203-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151203-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151203-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.de.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.el.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.en.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.es.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.fr.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.it.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.nl.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.sq.xhtml [10:17:50] source/fsfe.org/news/2015/news-20151216-01.tr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160118-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160118-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160118-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160118-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160122-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.es.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.it.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160126-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160128-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160128-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160128-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160128-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160205-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160205-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160205-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160208-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160208-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160208-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160208-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160222-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160222-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160222-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160224-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160224-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160224-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160406-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160411-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160411-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160411-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160411-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.es.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.pt.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-02.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-02.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160428-02.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160502-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160502-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160502-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160624-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160624-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160624-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160630-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160630-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160630-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160725-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160725-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160725-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160725-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.el.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.es.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.it.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160804-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160809-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160809-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160809-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160809-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.el.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160817-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160823-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160823-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160831-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160907-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160907-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160907-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160907-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160928-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160928-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160928-01.pt.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160928-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160930-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20160930-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161027-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161031-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161031-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161031-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161110-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161110-01.es.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161110-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161110-01.ru.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161110-01.sq.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.de.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.el.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.en.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.es.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.fr.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.it.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.nl.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.pt.xhtml [10:17:50] source/fsfe.org/news/2016/news-20161202-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170105-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170105-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170105-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170109-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170109-01.es.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170109-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170109-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170110-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170110-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170110-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170116-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170116-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170116-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170209-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170209-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170209-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-02.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170214-02.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170217-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170217-01.es.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170217-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170217-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170301-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170301-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170302-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170302-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170302-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170315-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170315-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170315-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170321-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170328-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170328-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170328-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170419-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170419-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170419-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170425-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170425-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170613-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170613-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170616-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170616-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170616-01.it.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170616-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170619-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170619-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170619-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170710-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170710-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170710-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170726-01.cs.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170726-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170726-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170726-01.fr.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170726-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170811-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170811-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170811-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170811-01.ru.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170811-01.sq.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170829-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170829-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170829-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170905-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170906-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170906-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170908-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170908-01.fr.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170908-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170911-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170911-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.es.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.fr.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20170913-01.zh.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171005-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171005-01.es.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171005-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171013-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171013-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171024-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171107-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171107-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171108-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171108-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171109-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171109-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171114-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171116-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171116-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171130-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171130-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171206-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171206-01.es.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171206-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171207-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171207-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171207-02.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171211-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171211-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171211-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171212-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171212-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171212-01.nl.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171219-01.de.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171219-01.en.xhtml [10:17:50] source/fsfe.org/news/2017/news-20171219-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180111-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180119-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180212-01.el.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180212-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180212-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180212-01.sq.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180215-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180215-01.sq.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180219-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180219-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180219-01.it.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180219-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180219-01.sq.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180302-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180302-01.it.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180308-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180308-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180308-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180308-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180308-01.sv.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180322-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180322-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180322-01.it.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180322-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180322-01.sq.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180414-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180414-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180414-01.sq.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180526-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180526-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180526-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180529-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180529-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180530-02.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180530-02.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180530-02.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180601-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180601-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180601-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180601-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180613-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180613-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180613-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180613-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180705-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180705-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180705-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180705-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180716-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180716-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180723-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180723-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180725-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180725-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180725-01.es.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180725-01.fr.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180725-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180905-02.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180905-02.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180907-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180907-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180913-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180917-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20180917-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181010-01.de.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181010-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181023-02.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181023-02.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181024-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181024-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181105-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181105-01.nl.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181205-01.en.xhtml [10:17:50] source/fsfe.org/news/2018/news-20181205-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190108-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190124-01.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190124-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190124-01.es.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190124-01.fr.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190124-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190205-01.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190205-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190205-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190214-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190308-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190326-01.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190326-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190326-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190329-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190329-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190514-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190514-01.es.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190514-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-01.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-01.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-02.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-02.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190515-02.nl.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190520-01.de.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190520-01.en.xhtml [10:17:50] source/fsfe.org/news/2019/news-20190520-01.it.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190520-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190701-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190806-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190806-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190807-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190807-01.it.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190807-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190827-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190827-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190827-01.es.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190827-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190917-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190917-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190917-01.es.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190917-01.fr.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190917-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190927-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20190927-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191002-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191002-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191007-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191007-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191007-01.fr.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191007-01.it.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191007-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191012-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191012-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191014-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191014-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191022-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191022-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191022-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191028-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191028-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191028-01.es.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191028-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191028-01.sv.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191102-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191102-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191102-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191112-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191112-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191113-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191113-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191120-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191125-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191125-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191125-01.es.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191125-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191128-01.de.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191128-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191128-01.nl.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191205-01.en.xhtml [10:17:51] source/fsfe.org/news/2019/news-20191205-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200121-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200121-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200121-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200129-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200212-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200212-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200212-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200212-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200228-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200228-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200228-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200302-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200302-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200302-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200302-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200310-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200310-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200310-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200311-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200311-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200327-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200327-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200327-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200330-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200330-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200330-01.fr.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200330-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200330-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200402-02.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200402-02.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200402-02.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200402-02.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200403-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200403-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200403-01.fr.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200403-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200403-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200408-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200408-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200408-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200408-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200411-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200411-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200411-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200415-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200415-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200415-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200415-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200424-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200424-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200424-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200427-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200427-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200427-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200506-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200506-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200506-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200506-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200514-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200514-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200514-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200514-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200519-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200519-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200519-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200519-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200601-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200601-01.fr.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200601-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200601-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200609-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200609-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200609-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200609-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200610-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200610-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200610-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200610-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200629-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200629-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200629-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200630-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200630-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200630-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200630-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200720-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200720-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200720-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200720-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200810-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200810-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200810-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200810-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200820-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200820-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200820-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200904-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200904-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200904-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200907-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200907-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200907-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200910-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200910-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200910-01.es.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200910-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20200910-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201005-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201005-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201009-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201009-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201009-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201019-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201019-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201019-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201023-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201023-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201023-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201110-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201110-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201112-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201112-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201112-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201112-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201120-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201120-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201120-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201208-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201208-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201208-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201208-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201210-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201210-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201210-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201210-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201211-01.de.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201211-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201211-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201211-01.nl.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201215-01.en.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201215-01.it.xhtml [10:17:51] source/fsfe.org/news/2020/news-20201215-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210119-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210119-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210127-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210127-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210127-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210203-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210203-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210203-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210204-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210204-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210204-02.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210204-02.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210209-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210209-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210214-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210214-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210219-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210219-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210302-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210302-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210302-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210302-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210305-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210305-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210311-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210311-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210317-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210317-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210317-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210318-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210318-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210318-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210324-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210330-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210330-01.fr.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210330-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210330-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210331-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210331-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210331-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210331-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210406-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210406-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210406-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210420-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210420-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210420-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210427-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210427-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210427-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210504-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210504-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210504-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210505-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210505-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210505-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210506-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210506-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210506-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210506-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210521-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210521-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210521-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210525-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210525-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210525-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210526-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210526-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210526-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210529-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210529-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210609-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210609-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210609-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210611-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210611-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210611-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210611-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210625-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210625-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210629-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210629-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210629-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210721-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210721-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210721-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210721-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210805-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210805-01.fr.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210805-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210805-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210830-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210830-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210830-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210830-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210920-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210920-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210920-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210920-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.el.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20210928-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211008-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211008-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211008-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211011-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211011-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211011-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211011-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211015-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211015-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211015-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211027-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211027-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211102-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211102-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211102-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211102-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211110-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211110-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211118-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211118-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211118-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211122-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211122-01.fr.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211122-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211122-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211123-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211123-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211123-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211124-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211124-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211124-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.el.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.es.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.fr.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211125-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211129-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211129-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211129-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211203-01.de.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211203-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211203-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211203-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211206-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211206-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211209-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211209-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211210-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211210-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211213-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211213-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211215-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211215-01.it.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211215-01.nl.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211216-01.en.xhtml [10:17:51] source/fsfe.org/news/2021/news-20211216-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220112-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220112-01.es.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220112-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220121-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220121-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220127-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220127-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220127-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220201-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220201-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220201-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220202-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220202-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220202-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220202-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220224-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220224-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220224-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220225-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220225-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220225-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220310-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220310-01.fr.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220310-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220310-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220315-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220315-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220315-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.fr.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220316-01.pt.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220323-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220323-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220323-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220328-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220328-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220328-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220330-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220330-01.fr.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220330-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220330-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220414-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220414-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220414-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220420-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220420-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220420-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220425-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220425-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220425-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220425-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220427-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220427-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220427-01.fr.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220427-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220427-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220503-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220503-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220503-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220504-01.da.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220504-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220504-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220504-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220510-01.da.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220510-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220510-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220510-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220516-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220516-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220516-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220520-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220520-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220520-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220531-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220531-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220602-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220602-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220602-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220615-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220615-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220628-01.el.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220628-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220628-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220712-01.da.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220712-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220712-01.es.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220712-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220712-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220714-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220714-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220823-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220823-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220823-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220905-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220905-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220905-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220915-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220915-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220928-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20220928-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221004-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221004-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221026-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221026-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221026-02.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221026-02.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-01.es.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-02.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221104-02.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221118-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221118-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221118-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.es.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221121-01.pl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221205-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221205-01.es.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221205-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221205-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221206-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221206-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221209-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221212-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221214-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221214-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221215-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221215-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221215-02.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221215-02.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221219-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221219-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221219-01.nl.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221220-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221220-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221221-01.de.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221221-01.en.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221221-01.it.xhtml [10:17:51] source/fsfe.org/news/2022/news-20221221-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230104-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230104-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230109-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230109-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230113-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230113-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230119-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230119-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230119-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230123-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230123-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230126-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230126-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230215-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230215-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230215-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230215-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230215-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230220-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230220-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230222-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230222-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230227-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230227-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230227-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230227-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230301-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230308-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230313-01.el.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230313-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230321-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-02.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230323-02.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230412-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230413-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230418-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230425-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230425-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230428-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230428-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230508-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230508-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230508-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230509-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-01.fr.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230511-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-02.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230515-02.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230524-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230524-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230524-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230524-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230606-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230606-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230606-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230614-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230614-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230614-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230614-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230614-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230623-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230623-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230623-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230623-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-02.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-02.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230629-02.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230712-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230712-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230712-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-02.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230719-02.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230724-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230724-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230724-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230807-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230807-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230807-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230815-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230815-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230824-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230825-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230829-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230829-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230831-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230906-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230906-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230907-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230907-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230915-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230920-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230920-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230920-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230920-02.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230926-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230926-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230926-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230926-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20230926-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231011-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231017-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231020-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231025-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231025-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231102-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231106-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231106-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231108-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231110-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231110-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231110-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231113-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231113-02.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231113-02.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231115-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231115-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231116-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231116-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231116-01.es.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231116-01.fr.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231116-01.it.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231201-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231207-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231207-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231211-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231214-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231214-01.en.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231214-01.nl.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231220-01.de.xhtml [10:17:51] source/fsfe.org/news/2023/news-20231220-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240109-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240109-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240111-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240117-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240122-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240122-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240126-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240130-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240206-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240208-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240208-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240208-01.nl.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240226-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240301-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240301-01.nl.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240307-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240307-01.es.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240312-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240318-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240318-02.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240321-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240321-01.fr.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240417-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240430-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240506-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240515-01.de.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240515-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240515-01.es.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240515-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240530-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240610-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240620-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240627-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240628-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240701-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240709-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240715-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240719-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240726-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240808-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240809-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240809-01.nl.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240812-01.de.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240812-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240812-01.es.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240812-01.fr.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240812-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240813-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240828-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-01.de.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-01.es.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-01.fr.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-01.it.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240911-02.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20240920-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20241002-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20241016-01.en.xhtml [10:17:51] source/fsfe.org/news/2024/news-20241016-01.it.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-1.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-10.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-11.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-12.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-13.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-14.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-15.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-16.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-17.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-18.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-19.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-2.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-20.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-21.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-22.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-23.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-24.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-25.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-3.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-4.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-5.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-6.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-7.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-8.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-9.en.xhtml [10:17:51] source/fsfe.org/news/news/podcast/transcript/episode-special-1.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200904.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200904.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200904.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200904.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200904.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200905.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200905.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200905.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200905.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200905.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200906.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200907.tr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200908.tr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200909.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200909.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200909.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200909.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200909.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200910.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200910.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200910.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200910.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200911.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200911.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200911.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200912.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200912.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-200912.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201001.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201006.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201006.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201006.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201006.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201007.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201007.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201007.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201007.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201007.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201008.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201008.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201008.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201008.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201008.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201009.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201009.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201009.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201009.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201009.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201010.pt.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201011.pt.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201012.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201012.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201012.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201012.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201012.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201101.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201101.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201101.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201101.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201101.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201102.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201102.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201102.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201102.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201103.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201103.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201103.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201103.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201104.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201104.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201104.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201104.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201104.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201105.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201105.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201105.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201106.cs.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201106.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201106.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201106.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201107.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201107.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201107.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201107.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201107.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201108.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201108.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201109.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201109.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201109.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201109.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201109.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.cs.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201110.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201111.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201111.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201111.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201112.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201112.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201112.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201201.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201201.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201202.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201203.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201203.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201203.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201203.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201204.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201204.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201204.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201204.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201204.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201205.cs.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201205.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201205.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201205.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201205.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201206.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201206.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201206.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201206.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201207.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201207.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201207.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201207.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201208.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201208.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201208.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201209.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201209.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201209.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.cs.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201210.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201211.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201211.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201211.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201212.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201212.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201212.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201302.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201302.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201302.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201303.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201303.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201303.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201305.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201305.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201305.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201305.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201306.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201306.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201307.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201307.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201307.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201308.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201308.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201308.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201308.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201308.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201309.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201309.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201309.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201310.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201310.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201310.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201310.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201310.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201311.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.ro.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201312.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.ro.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201401.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201402.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201402.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201402.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201402.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201402.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201403.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201403.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201403.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201403.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201404.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201405.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201405.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201405.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201405.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201406.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.ro.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201407.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201408.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201409.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.pt.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.ro.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201410.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201411.sr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201412.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201501.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201502.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201503.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201504.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201505.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201506.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201506.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201506.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201506.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201506.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201507.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.pt.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201508.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201509.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201510.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.el.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.en.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.es.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.fr.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.it.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.nl.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201511.sq.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201512.de.xhtml [10:17:51] source/fsfe.org/news/nl/nl-201512.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201512.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201602.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201603.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201604.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201605.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201605.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201605.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201605.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201605.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201606.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201607.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201608.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201609.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201609.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201609.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201609.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201609.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201610.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201610.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201610.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201610.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201610.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201611.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201612.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201702.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201702.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201702.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201702.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201703.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201703.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201703.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201703.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201703.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201704.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201704.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201704.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201704.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201704.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201705.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201706.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201706.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201706.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201706.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201706.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.cs.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201707.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201709.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201709.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201709.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201709.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201709.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201710.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201710.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201710.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201710.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201711.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201711.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201711.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201711.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201712.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201712.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201712.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201712.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.cs.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.el.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201802.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201803.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201804.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201804.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201804.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201804.sq.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201805.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201805.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201805.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201806.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201806.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201806.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201806.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201806.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201807.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201807.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201807.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201807.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201807.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201809.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201809.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201809.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201810.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201810.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201811.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201811.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201812.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201812.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201812.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201902.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201902.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201902.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201903.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201903.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201903.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201904.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201904.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201905.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201905.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201905.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201905.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201906.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201906.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201906.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201907.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201907.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201907.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201907.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201907.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201909.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201909.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201909.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201909.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201909.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201910.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201910.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201910.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201910.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201911.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201911.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201911.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201912.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201912.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201912.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201912.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-201912.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202001.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202001.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202001.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202001.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202002.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202002.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202002.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202002.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202002.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202004.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202005.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202005.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202005.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202005.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202006.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202006.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202006.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202006.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202006.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202007.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202007.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202007.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202007.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202007.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202008.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202008.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202008.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202008.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202008.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202009.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202009.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202009.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202009.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202010.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202010.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202010.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202010.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202010.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202011.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202011.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202011.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202011.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202011.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202012.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202012.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202012.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202012.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202101.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202101.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202101.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202101.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202102.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202102.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202102.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202102.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202102.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202103.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202103.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202103.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202103.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202103.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202104.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202104.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202104.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202105.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202105.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202105.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202106.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202106.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202106.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202106.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202106.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202107.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202107.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202107.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202107.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202109.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202109.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202109.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202110.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202110.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202110.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202110.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202111.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202111.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202111.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202111.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202111.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202112.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202112.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202112.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202112.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202112.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202201.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202202.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202203.pt.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202204.pt.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.da.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202205.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202206.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202206.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202206.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202206.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202206.pt.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.da.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.fr.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202207.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202209.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202209.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202209.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202209.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202210.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202210.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202210.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202210.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202211.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202211.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202211.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202211.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202212.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202212.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202212.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202212.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202301.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202301.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202301.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202301.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202302.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202302.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202302.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202302.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202302.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202303.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202303.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202303.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202303.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202304.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202304.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202304.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202304.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202304.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202305.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202305.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202305.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202305.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202305.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202306.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202306.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202306.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202306.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202306.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202307.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202307.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202307.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202307.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202307.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202308.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202308.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202308.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202308.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202308.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202309.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202309.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202309.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202310.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202310.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202310.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202311.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202311.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202311.it.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202311.nl.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202312.de.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202312.en.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202312.es.xhtml [10:17:52] source/fsfe.org/news/nl/nl-202312.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202401.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202401.it.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202401.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202402.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202402.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202403.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202403.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202403.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202404.de.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202404.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202404.it.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202404.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202405.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202405.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202405.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202406.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202406.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202406.it.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202406.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202407.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202407.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202407.nl.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202408.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202408.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202409.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202409.es.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202409.it.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202410.en.xhtml [10:17:53] source/fsfe.org/news/nl/nl-202410.es.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-1.de.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-1.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-1.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-1.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-10.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-10.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-10.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-11.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-11.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-11.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-12.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-12.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-12.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-13.de.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-13.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-13.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-13.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-14.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-14.fr.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-14.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-14.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-15.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-15.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-15.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-16.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-16.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-16.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-17.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-17.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-17.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-18.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-18.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-18.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-19.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-19.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-19.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-2.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-2.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-2.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-20.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-20.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-20.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-21.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-21.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-21.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-22.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-22.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-23.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-23.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-24.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-24.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-25.de.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-25.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-3.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-3.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-3.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-4.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-4.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-4.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-5.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-5.es.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-5.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-5.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-6.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-6.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-6.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-7.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-7.fr.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-7.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-7.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-8.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-8.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-8.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-9.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-9.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-9.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-special-1.en.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-special-1.it.xhtml [10:17:53] source/fsfe.org/news/podcast/episode-special-1.nl.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-1.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-10.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-11.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-12.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-13.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-14.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-15.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-16.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-17.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-18.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-19.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-2.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-20.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-21.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-22.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-23.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-24.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-25.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-3.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-4.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-5.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-6.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-7.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-8.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-9.en.xhtml [10:17:53] source/fsfe.org/news/podcast/transcript/episode-special-1.en.xhtml [10:17:53] source/fsfe.org/order/cancel.de.xhtml [10:17:53] source/fsfe.org/order/cancel.en.xhtml [10:17:53] source/fsfe.org/order/cancel.es.xhtml [10:17:53] source/fsfe.org/order/cancel.it.xhtml [10:17:53] source/fsfe.org/order/cancel.nl.xhtml [10:17:53] source/fsfe.org/order/cancel.tr.xhtml [10:17:53] source/fsfe.org/order/order.de.xhtml [10:17:53] source/fsfe.org/order/order.en.xhtml [10:17:53] source/fsfe.org/order/order.es.xhtml [10:17:53] source/fsfe.org/order/order.fr.xhtml [10:17:53] source/fsfe.org/order/order.it.xhtml [10:17:53] source/fsfe.org/order/order.nl.xhtml [10:17:53] source/fsfe.org/order/size.de.xhtml [10:17:53] source/fsfe.org/order/size.en.xhtml [10:17:53] source/fsfe.org/order/size.es.xhtml [10:17:53] source/fsfe.org/order/size.it.xhtml [10:17:53] source/fsfe.org/order/size.nl.xhtml [10:17:53] source/fsfe.org/order/thankyou.de.xhtml [10:17:53] source/fsfe.org/order/thankyou.en.xhtml [10:17:53] source/fsfe.org/order/thankyou.es.xhtml [10:17:53] source/fsfe.org/order/thankyou.it.xhtml [10:17:53] source/fsfe.org/order/thankyou.nl.xhtml [10:17:53] source/fsfe.org/order/thankyou.tr.xhtml [10:17:53] source/fsfe.org/order/tmpl-concardis.de.xhtml [10:17:53] source/fsfe.org/order/tmpl-concardis.en.xhtml [10:17:53] source/fsfe.org/order/tmpl-concardis.es.xhtml [10:17:53] source/fsfe.org/order/tmpl-concardis.it.xhtml [10:17:53] source/fsfe.org/order/tmpl-concardis.nl.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.de.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.en.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.es.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.it.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.nl.xhtml [10:17:53] source/fsfe.org/order/tmpl-thankyou.tr.xhtml [10:17:53] source/fsfe.org/press/press.de.xhtml [10:17:53] source/fsfe.org/press/press.en.xhtml [10:17:53] source/fsfe.org/press/press.es.xhtml [10:17:53] source/fsfe.org/press/press.fr.xhtml [10:17:53] source/fsfe.org/press/press.it.xhtml [10:17:53] source/fsfe.org/press/press.nl.xhtml [10:17:53] source/fsfe.org/search/search.en.xhtml [10:17:53] source/fsfe.org/search/search.nl.xhtml [10:17:53] source/fsfe.org/tags/tagged-policy.en.xhtml [10:17:53] source/fsfe.org/tags/tagged.en.xhtml [10:17:53] source/fsfe.org/tags/tagged.es.xhtml [10:17:53] source/fsfe.org/tags/tagged.nl.xhtml [10:17:53] source/fsfe.org/tags/tags.en.xhtml [10:17:53] source/fsfe.org/tags/tags.es.xhtml [10:17:53] source/fsfe.org/tags/tags.fr.xhtml [10:17:53] source/fsfe.org/tags/tags.nl.xhtml [10:17:53] source/fsfe.org/templates/concardis_relay.en.xhtml [10:17:53] source/fsfe.org/templates/registerevent/error.en.xhtml [10:17:53] source/fsfe.org/templates/registerevent/error.nl.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.de.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.el.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.en.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.fi.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.nl.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.pt.xhtml [10:17:53] source/fsfe.org/templates/registerevent/success.sq.xhtml [10:17:53] source/pdfreaders.org/about.ar.xhtml [10:17:53] source/pdfreaders.org/about.cs.xhtml [10:17:53] source/pdfreaders.org/about.de.xhtml [10:17:53] source/pdfreaders.org/about.el.xhtml [10:17:53] source/pdfreaders.org/about.en.xhtml [10:17:53] source/pdfreaders.org/about.eo.xhtml [10:17:53] source/pdfreaders.org/about.es.xhtml [10:17:53] source/pdfreaders.org/about.et.xhtml [10:17:53] source/pdfreaders.org/about.fa.xhtml [10:17:53] source/pdfreaders.org/about.fi.xhtml [10:17:53] source/pdfreaders.org/about.fr.xhtml [10:17:53] source/pdfreaders.org/about.gl.xhtml [10:17:53] source/pdfreaders.org/about.he.xhtml [10:17:53] source/pdfreaders.org/about.hr.xhtml [10:17:53] source/pdfreaders.org/about.hu.xhtml [10:17:53] source/pdfreaders.org/about.it.xhtml [10:17:53] source/pdfreaders.org/about.nb.xhtml [10:17:53] source/pdfreaders.org/about.nl.xhtml [10:17:53] source/pdfreaders.org/about.nn.xhtml [10:17:53] source/pdfreaders.org/about.pl.xhtml [10:17:53] source/pdfreaders.org/about.pt.xhtml [10:17:53] source/pdfreaders.org/about.ro.xhtml [10:17:53] source/pdfreaders.org/about.ru.xhtml [10:17:53] source/pdfreaders.org/about.sl.xhtml [10:17:53] source/pdfreaders.org/about.sv.xhtml [10:17:53] source/pdfreaders.org/about.tr.xhtml [10:17:53] source/pdfreaders.org/about.zh.xhtml [10:17:53] source/pdfreaders.org/graphics.ar.xhtml [10:17:53] source/pdfreaders.org/graphics.cs.xhtml [10:17:53] source/pdfreaders.org/graphics.de.xhtml [10:17:53] source/pdfreaders.org/graphics.el.xhtml [10:17:53] source/pdfreaders.org/graphics.en.xhtml [10:17:53] source/pdfreaders.org/graphics.eo.xhtml [10:17:53] source/pdfreaders.org/graphics.es.xhtml [10:17:53] source/pdfreaders.org/graphics.et.xhtml [10:17:53] source/pdfreaders.org/graphics.fa.xhtml [10:17:53] source/pdfreaders.org/graphics.fi.xhtml [10:17:53] source/pdfreaders.org/graphics.fr.xhtml [10:17:53] source/pdfreaders.org/graphics.gl.xhtml [10:17:53] source/pdfreaders.org/graphics.he.xhtml [10:17:53] source/pdfreaders.org/graphics.hr.xhtml [10:17:53] source/pdfreaders.org/graphics.hu.xhtml [10:17:53] source/pdfreaders.org/graphics.it.xhtml [10:17:53] source/pdfreaders.org/graphics.nb.xhtml [10:17:53] source/pdfreaders.org/graphics.nl.xhtml [10:17:53] source/pdfreaders.org/graphics.nn.xhtml [10:17:53] source/pdfreaders.org/graphics.pl.xhtml [10:17:53] source/pdfreaders.org/graphics.pt.xhtml [10:17:53] source/pdfreaders.org/graphics.ro.xhtml [10:17:53] source/pdfreaders.org/graphics.ru.xhtml [10:17:53] source/pdfreaders.org/graphics.sl.xhtml [10:17:53] source/pdfreaders.org/graphics.sv.xhtml [10:17:53] source/pdfreaders.org/graphics.tr.xhtml [10:17:53] source/pdfreaders.org/graphics.zh.xhtml [10:17:53] source/pdfreaders.org/index.ar.xhtml [10:17:53] source/pdfreaders.org/index.cs.xhtml [10:17:53] source/pdfreaders.org/index.de.xhtml [10:17:53] source/pdfreaders.org/index.el.xhtml [10:17:53] source/pdfreaders.org/index.en.xhtml [10:17:53] source/pdfreaders.org/index.eo.xhtml [10:17:53] source/pdfreaders.org/index.es.xhtml [10:17:53] source/pdfreaders.org/index.et.xhtml [10:17:53] source/pdfreaders.org/index.fa.xhtml [10:17:53] source/pdfreaders.org/index.fi.xhtml [10:17:53] source/pdfreaders.org/index.fr.xhtml [10:17:53] source/pdfreaders.org/index.gl.xhtml [10:17:53] source/pdfreaders.org/index.he.xhtml [10:17:53] source/pdfreaders.org/index.hr.xhtml [10:17:53] source/pdfreaders.org/index.hu.xhtml [10:17:53] source/pdfreaders.org/index.it.xhtml [10:17:53] source/pdfreaders.org/index.nb.xhtml [10:17:53] source/pdfreaders.org/index.nl.xhtml [10:17:53] source/pdfreaders.org/index.nn.xhtml [10:17:53] source/pdfreaders.org/index.pl.xhtml [10:17:53] source/pdfreaders.org/index.pt.xhtml [10:17:53] source/pdfreaders.org/index.ro.xhtml [10:17:53] source/pdfreaders.org/index.ru.xhtml [10:17:53] source/pdfreaders.org/index.sl.xhtml [10:17:53] source/pdfreaders.org/index.sv.xhtml [10:17:53] source/pdfreaders.org/index.tr.xhtml [10:17:53] source/pdfreaders.org/index.zh.xhtml [10:17:53] source/pdfreaders.org/os.ar.xhtml [10:17:53] source/pdfreaders.org/os.cs.xhtml [10:17:53] source/pdfreaders.org/os.de.xhtml [10:17:53] source/pdfreaders.org/os.el.xhtml [10:17:53] source/pdfreaders.org/os.en.xhtml [10:17:53] source/pdfreaders.org/os.eo.xhtml [10:17:53] source/pdfreaders.org/os.es.xhtml [10:17:53] source/pdfreaders.org/os.et.xhtml [10:17:53] source/pdfreaders.org/os.fa.xhtml [10:17:53] source/pdfreaders.org/os.fi.xhtml [10:17:53] source/pdfreaders.org/os.fr.xhtml [10:17:53] source/pdfreaders.org/os.gl.xhtml [10:17:53] source/pdfreaders.org/os.he.xhtml [10:17:53] source/pdfreaders.org/os.hr.xhtml [10:17:53] source/pdfreaders.org/os.hu.xhtml [10:17:53] source/pdfreaders.org/os.it.xhtml [10:17:53] source/pdfreaders.org/os.nb.xhtml [10:17:53] source/pdfreaders.org/os.nl.xhtml [10:17:53] source/pdfreaders.org/os.nn.xhtml [10:17:53] source/pdfreaders.org/os.pl.xhtml [10:17:53] source/pdfreaders.org/os.pt.xhtml [10:17:53] source/pdfreaders.org/os.ro.xhtml [10:17:53] source/pdfreaders.org/os.ru.xhtml [10:17:53] source/pdfreaders.org/os.sl.xhtml [10:17:53] source/pdfreaders.org/os.sv.xhtml [10:17:53] source/pdfreaders.org/os.tr.xhtml [10:17:53] source/pdfreaders.org/os.zh.xhtml [10:17:53] source/status.fsfe.org/index.en.xhtml [10:17:53] source/status.fsfe.org/fsfe.org/template.en.xhtml [10:17:53] source/status.fsfe.org/test.fsfe.org/template.en.xhtml [10:17:53] source/status.fsfe.org/translations/index.en.xhtml [10:17:53] status.fsfe.org/translations/ [10:17:53] status.fsfe.org/translations/index.ar.html [10:17:53] status.fsfe.org/translations/index.bg.html [10:17:53] status.fsfe.org/translations/index.bs.html [10:17:53] status.fsfe.org/translations/index.ca.html [10:17:53] status.fsfe.org/translations/index.cs.html [10:17:53] status.fsfe.org/translations/index.da.html [10:17:53] status.fsfe.org/translations/index.de.html [10:17:53] status.fsfe.org/translations/index.el.html [10:17:53] status.fsfe.org/translations/index.en.html [10:17:53] status.fsfe.org/translations/index.es.html [10:17:53] status.fsfe.org/translations/index.et.html [10:17:53] status.fsfe.org/translations/index.fa.html [10:17:53] status.fsfe.org/translations/index.fi.html [10:17:53] status.fsfe.org/translations/index.fr.html [10:17:53] status.fsfe.org/translations/index.hr.html [10:17:53] status.fsfe.org/translations/index.hu.html [10:17:53] status.fsfe.org/translations/index.it.html [10:17:53] status.fsfe.org/translations/index.ja.html [10:17:53] status.fsfe.org/translations/index.mk.html [10:17:53] status.fsfe.org/translations/index.nb.html [10:17:53] status.fsfe.org/translations/index.nl.html [10:17:53] status.fsfe.org/translations/index.nn.html [10:17:53] status.fsfe.org/translations/index.pl.html [10:17:53] status.fsfe.org/translations/index.pt.html [10:17:53] status.fsfe.org/translations/index.ro.html [10:17:53] status.fsfe.org/translations/index.ru.html [10:17:53] status.fsfe.org/translations/index.sk.html [10:17:53] status.fsfe.org/translations/index.sl.html [10:17:53] status.fsfe.org/translations/index.sq.html [10:17:53] status.fsfe.org/translations/index.sr.html [10:17:53] status.fsfe.org/translations/index.sv.html [10:17:53] status.fsfe.org/translations/index.tr.html [10:17:53] status.fsfe.org/translations/index.uk.html [10:17:53] status.fsfe.org/translations/index.zh.html [10:17:53] status.fsfe.org/translations/data-tmp/ [10:17:53] status.fsfe.org/translations/data/ [10:17:53] status.fsfe.org/translations/data/log.txt [10:17:53] [10:17:53] sent 9,957,989 bytes received 597,799 bytes 541,322.46 bytes/sec [10:17:53] total size is 1,577,551,233 speedup is 149.45