diff --git a/html-versions/4 - Webarchive.html b/html-versions/4 - Webarchive.html new file mode 100644 index 0000000000000000000000000000000000000000..82b4b5a9f24a1de80b65cf6fe6ff6d3359c778e6 --- /dev/null +++ b/html-versions/4 - Webarchive.html @@ -0,0 +1,13530 @@ + + +
+ +.at
, .ac.at
, .gv.at
, .wien
, .tirol
PRINT OUT THE INTERNET!
[
+ {
+ "id": 37,
+ "name": "Frau/Gender",
+ "begin": "29.11.2016",
+ "groups": [
+ {
+ "seeds": [
+ "http://abtreibung.at/"
+ ],
+ "group_id": 1,
+ "name": "Abtreibung.at"
+ },
+ {
+ "seeds": [
+ "http://aep.at"
+ ],
+ "group_id": 2,
+ "name": "Arbeitskreis Emanzipation Partnerschaft"
+ },
+
We'd love to properly count the unique visitors in the Webarchive backend, so we kindly ask you to opt in to tracking by instantiating webarchiv.WebarchivSession
with the parameter allow_tracking=True
.
This sends your SHA256-hashed MAC address as a fingerprint to the server on authentication. It is only ever used to count unique users.
+If you leave allow_tracking
at the default value False
, an empty string is sent as fingerprint.
Tools for accessing the Webarchive API
+ +webarchiv.py
from the ONB LabsThe documentation is available under https://webarchiv.onb.ac.at/api.html#.
+ +API_KEY = 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ'
+
Take a look at https://webarchiv.onb.ac.at/api.html#/ and try it out.
+ +import requests
+
+BASE_URL = 'https://webarchiv.onb.ac.at/api'
+
Let's take a look at /welcome
r = requests.get(f'{BASE_URL}/welcome')
+r.json()
+
{'@context': 'http://schema.org/', + '@type': 'WebAPI', + 'name': 'Webarchive Austria Search API', + 'version': '0.1.0', + 'description': 'The Webarchive Austria Search API lets you find archived webpages by Fulltext or URL. The API uses standard schema.org types and is compliant with the JSON-LD specification.', + 'documentation': 'https://webarchiv.onb.ac.at/api.html', + 'provider': {'@type': 'Organization', + 'name': 'Austrian National Library', + 'contactPoint': [{'@type': 'ContactPoint', + 'name': 'Webarchive Austria', + 'url': 'https://webarchiv.onb.ac.at'}]}, + 'versions': ['0.1.0'], + 'license': 'https://creativecommons.org/publicdomain/mark/1.0/', + 'transport': 'HTTP', + 'apiProtocol': 'JSON API', + 'webApiDefinitions': [{'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/authenticate', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'POST'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/search/domainname', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/search/domainname?q={q}&page={page}&pagesize={pagesize}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/search/fulltext', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/search/fulltext?q={q}&from={from}&to={to}&maxaggs={maxaggs}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/search/fulltext/seed', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/search/fulltext/seed?q={q}&g={g}&from={from}&to={to}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/search/fulltext/capture', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/search/fulltext/capture?q={q}&g={g}&from={from}&to={to}&page={page}&pagesize={pagesize}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/search/wayback', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/search/wayback?q={q}&from={from}&to={to}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/status/fulltext', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/status/fulltext?requestid={requestid}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/status/wayback', + 'urlTemplate': 'https://webarchiv.onb.ac.at/api/status/wayback?requestid={requestid}&t={t}&apikey={apikey}', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'GET'}, + {'@type': 'EntryPoint', + 'url': 'https://webarchiv.onb.ac.at/api/status/kill', + 'encodingType': 'application/json', + 'contentType': 'application/ld+json', + 'httpMethod': 'DELETE'}]}+
We need a fingerprint and a valid API key. +A key has been generated for PyDays19.
+ +import uuid
+
+FINGERPRINT = str(uuid.uuid4())
+API_KEY = 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ'
+
+FINGERPRINT, API_KEY
+
('c941f5c6-c97b-4f75-bf7d-5419df62cf5f', 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ')+
We need to authenticate first in order to get a valid token.
+ +auth_r = requests.post(f'{BASE_URL}/authentication', json={
+ 'apikey': API_KEY,
+ 'version': '0.1.0',
+ 'fingerprint': FINGERPRINT
+})
+auth_r.status_code
+
201+
auth_r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/authenticate.jsonld', + 'apikey': 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ', + 'fingerprint': 'c941f5c6-c97b-4f75-bf7d-5419df62cf5f', + 'timestamp': 1556089763561, + 't': '9defd49246b9e8c36202ce33d6a43e268530996a', + 'version': '0.1.0'}+
token = auth_r.json()['t']
+
Now we can submit other requests, a search for example.
+ +search_r = requests.get(f'{BASE_URL}/search/domainname', params={
+ 'apikey': API_KEY,
+ 't': token,
+ 'q': 'wien'
+})
+search_r.status_code
+
200+
search_r.json()
+
{'hits': [{'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wieno.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien1.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiener.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiengut.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienmed.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienwin.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiental.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wieners.wien'}], + 'searchstring': 'wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/domainnamesearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 35101, + 'type': 1, + 'took': 427, + 'version': '0.1.0'}+
We use the online generator at https://generator.swagger.io/.
+ +import io
+import zipfile
+import shutil
+
+def generate_swagger_client():
+ # Generate Python Client
+ generated_r = requests.post('https://generator.swagger.io/api/gen/clients/python', json={
+ 'swaggerUrl': 'https://webarchiv.onb.ac.at/api/swagger.json'
+ })
+ generated_r.raise_for_status()
+ link = generated_r.json()['link']
+ # Download ZIP with generated client
+ zip_r = requests.get(link)
+ zip_r.raise_for_status()
+ # Open and extract
+ zip_file = zipfile.ZipFile(io.BytesIO(zip_r.content))
+ zip_file.extractall()
+ # Move package to working directory and clean up
+ shutil.move('python-client/swagger_client', 'swagger_client')
+ shutil.rmtree('python-client')
+
import swagger_client
+
Set base URL
+ +client = swagger_client.ApiClient()
+client.configuration.host = 'https://webarchiv.onb.ac.at/api'
+
Authenticate
+ +auth_obj = swagger_client.Authenticate(apikey=API_KEY, fingerprint=str(uuid.uuid4()))
+aa = swagger_client.AuthenticationApi(client)
+auth_r = aa.authenticate(body=auth_obj)
+auth_r
+
{'apikey': 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ', + 'fingerprint': '635fbeae-50d5-4df7-8372-7bc93bcbec74', + 't': 'b831ef03103dd7bb74838e0678e7d2bf2aaef809', + 'timestamp': 1555515615761, + 'version': '0.1.0'}+
token = auth_r.t
+
Search for domain name
+ +search_api = swagger_client.SearchApi(client)
+search_r = search_api.search_domainname(q='wien', t=token, apikey=API_KEY)
+
search_r
+
{'hits': [{'value': 'wieno.wien'}, + {'value': 'wien.wien'}, + {'value': 'wien1.wien'}, + {'value': 'wiener.wien'}, + {'value': 'wien-wien.at'}, + {'value': 'wiengut.wien'}, + {'value': 'wienmed.wien'}, + {'value': 'wienwin.wien'}, + {'value': 'wiental.wien'}, + {'value': 'wieners.wien'}], + 'message': '', + 'requestid': '', + 'returncode': 0, + 'searchstring': 'wien', + 'took': 615, + 'total': 35101, + 'type': 1, + 'version': '0.1.0'}+
from pyswagger import App
+from pyswagger.contrib.client.requests import Client
+from pyswagger.utils import jp_compose
+
Create client and app
+ +app = App.create(url='https://webarchiv.onb.ac.at/api/swagger.json')
+client = Client()
+
Add missing support for JSON-LD
+ +app.mime_codec.register('application/ld+json', app.mime_codec._codecs['application/json'])
+
List operations
+ +app.op
+
{'welcome!##!welcome': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8033160>, + 'snapshot!##!getSnapshot': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8021eb8>, + 'search!##!searchhistogram': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8021be0>, + 'search!##!searchcapturegroup': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8021898>, + 'search!##!searchdomaingroup': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc80215c0>, + 'search!##!searchDomainname': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8021320>, + 'search!##!killSearchRequest': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc80210f0>, + 'search!##!getWaybackCalheatmapSearchRequestStatus': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8010dd8>, + 'search!##!getFulltextsearchRequestStatus': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8010b00>, + 'search!##!searchWayback': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8010860>, + 'search!##!searchFulltext': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc8010588>, + 'savepage!##!send': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc80103c8>, + 'authentication!##!authenticate': <pyswagger.spec.v2_0.objects.Operation at 0x7f9fc80100b8>}+
Authenticate
+ +r = client.request(app.op['authenticate'](body={
+ 'apikey': API_KEY,
+ 'fingerprint': '1234'
+}))
+r.status
+
201+
r.data
+
{'apikey': 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ', + 'fingerprint': '1234', + 'timestamp': 1555515632891, + 't': '7cf715f4487b1ace3eacf19bf3febda27f854819', + 'version': '0.1.0', + '@context': 'https://webarchiv.onb.ac.at/contexts/authenticate.jsonld'}+
token = r.data['t']
+
Search for domain name
+ +r = client.request(app.op['searchDomainname'](
+ apikey=API_KEY,
+ t=token,
+ q='wien'
+))
+r.status
+
200+
r.data
+
{'hits': [{'value': 'wieno.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wien.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wien1.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wiener.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wien-wien.at', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wiengut.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wienmed.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wienwin.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wiental.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}, + {'value': 'wieners.wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld'}], + 'searchstring': 'wien', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 35101, + 'type': 1, + 'took': 37, + 'version': '0.1.0', + 'context': 'https://webarchiv.onb.ac.at/contexts/domainnamesearchresult.jsonld'}+
webarchiv.py
is part of this repository. It makes extensive use of requests
.
If you need the direct download link:
+https://labs.onb.ac.at/gitlab/labs-team/webarchive-api/raw/master/webarchiv.py?inline=false
+ +import webarchiv
+
Authentication is automatic
+ +session = webarchiv.WebarchivSession(API_KEY, allow_tracking=True)
+
Search for domain name
+ +r = session.domain_name_search('wien')
+r.status_code
+
200+
r.json()
+
{'hits': [{'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wieno.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien1.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiener.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiengut.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienmed.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienwin.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiental.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wieners.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien24.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'h-m.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'f-u-c-k.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'b-z.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'h-d.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'm-k.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 's-v-h.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'v-i-p.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'a-z.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'i.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u-4.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'v-1.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'p-7.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'z-u-g.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u-d-o.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'f-w.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 's-k.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'h-i-p.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'akh-wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'gkk-wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'hno-wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'seo-wien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienfoto.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wientaxi.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienwahl.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wieninfo.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiener-gkk.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienwert.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienview.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerin.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u1.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u5.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u2.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u6.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u4.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u3.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'a1.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienclean.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienergkk.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienliebe.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienguide.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienkarte.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienscout.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienhotel.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienfluss.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-haus.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-wahl.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'f2f.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'e4b.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'a2z.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'b2b.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-2.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-6.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-7.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'm2m.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'm4j.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'c-sk.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-3.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-9.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'b-it.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'se-a.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-1.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-4.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-8.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'c2b.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'h-a-c-wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': '24-7.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'e-wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-5.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'i2c.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'u-wien.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wien-x.at'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienbibliothek.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiener-biene.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiener-madln.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienergebietskrankenkassegesundheitsverbund.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerjugendstil.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerlinien.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerphilharmoniker.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerstaedtischeversicherung.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienfuehrung.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wiendomain.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienergesundheitsverbund.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienernaschmarkt.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienersalon.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerwein.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerwirtschaft.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienerwohnen.wien'}, + {'context': 'https://webarchiv.onb.ac.at/contexts/dnhit.jsonld', + 'value': 'wienflughafentaxi.wien'}], + 'searchstring': 'wien', + 'context': 'https://webarchiv.onb.ac.at/contexts/domainnamesearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 35101, + 'type': 1, + 'took': 138, + 'version': '0.1.0'}+
Available access methods for WebarchivSession
help(session)
+
Help on WebarchivSession in module webarchiv object: + +class WebarchivSession(builtins.object) + | WebarchivSession(api_key) + | + | Methods defined here: + | + | __init__(self, api_key) + | Initialize self. See help(type(self)) for accurate signature. + | + | connect(self) + | Connect to the Webarchive API, request and save a token. + | + | domain_name_search(self, query_string, page_=1, pagesize_=100) + | Start a domain name search in the Webarchive. + | The current status of running queries can be read via status_open_queries(). + | + | :param query_string: String to search for + | :param page_: The page number parameter works with the page size parameter to control the offset of the records returned in the results. Default value is 1 + | :param pagesize_: The page size parameter works with the page number parameter to control the offset of the records returned in the results. It also controls how many results are returned with each request. Default value is 10 + | :return: result as json + | + | fulltext_search(self, query_string, from_=None, to_=None) + | Start a fulltext search query in the Webarchive. + | The current status of running queries can be read via status_open_queries(). + | + | :param query_string: String to search for + | :param from_: Optional earliest date bound for the search + | in the format YYYYMM. + | :param to_: Optional latest date bound for the search + | in the format YYYYMM. + | :return: None + | + | getSnapshotUrl(self, seed, capture, onlysvg) + | + | histogram_search(self, query_string, interval_=3, from_=None, to_=None) + | Start a domain name search in the Webarchive. + | The current status of running queries can be read via status_open_queries(). + | + | :param query_string: String to search for + | :param page_: The page number parameter works with the page size parameter to control the offset of the records returned in the results. Default value is 1 + | :param pagesize_: The page size parameter works with the page number parameter to control the offset of the records returned in the results. It also controls how many results are returned with each request. Default value is 10 + | :return: result as json + | + | savePage(self, url) + | + | status_query(self, resp) + | this is the pollingrequest for the given typen of request + | + | :param response: String to search for + | :return: response + | + | waitForResponse(self, response) + | Polls until the server responds with a result + | + | :param response: String to search for + | :return: response + | + | wayback_search(self, query_string, from_=None, to_=None) + | Start a wayback search query in the Webarchive. + | The current status of running queries can be read via status_open_queries(). + | + | :param query_string: String to search for + | :param from_: Optional earliest date bound for the search + | in the format YYYYMM. + | :param to_: Optional latest date bound for the search + | in the format YYYYMM. + | :return: None + | + | ---------------------------------------------------------------------- + | Data descriptors defined here: + | + | __dict__ + | dictionary for instance variables (if defined) + | + | __weakref__ + | list of weak references to the object (if defined) + | + | api_path + | Protocol, domain and path prefix for the Webarchive API, + | with a single positional format string placeholder + | for the REST operation and parameters. + | + | base_url + | Protocol, domain and path prefix for the Webarchive API, + | with a single positional format string placeholder + | for the REST operation and parameters. + | + | version + | Current protocol version + ++
More samples using webarchiv.py
:
I want to find a specific term in all saved pages.
+ +Let's start a WebarchivSession
+ +import webarchiv
+
+API_KEY = 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ'
+
+# If you want to allow us to count you as a unique visitor, please set allow_tracking to True
+s = webarchiv.WebarchivSession(API_KEY, allow_tracking=False)
+
We want to find the first occurrence of the term Westbalkanroute in the webarchive.
+ +r = s.fulltext_search('Westbalkanroute')
+
r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/fulltextsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 10, + 'type': 1, + 'took': 1299, + 'version': '0.1.0', + 'searchstring': 'westbalkanroute', + 'grouping': '', + 'subtype': 1, + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151026192026/http://diepresse.com/home/politik/eu/index.do', + 'id': '6f8f23cc122d81337a2b7fcaa49c15c6', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'diepresse.com', + 'total': 60, + 'value': 'http://diepresse.com/home/politik/eu/index.do', + 'timestamp': '20151026192026', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151011172442/http://www.bmeia.gv.at', + 'id': 'be06ee190cdc65bb88d99a28b4f7ebe5', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'bmeia.gv.at', + 'total': 40, + 'value': 'http://www.bmeia.gv.at', + 'timestamp': '20151011172442', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151108183014/http://www.vorarlberg.spoe.at/index.php', + 'id': '01c1b572b8102b5c098ef3fb3662544b', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': 'spoe.at', + 'total': 25, + 'value': 'http://www.vorarlberg.spoe.at/index.php', + 'timestamp': '20151108183014', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151125175511/http://www.derstandard.at', + 'id': 'f5eb359c95bdabb8bb2f18010fae30b3', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'derstandard.at', + 'total': 22, + 'value': 'http://www.derstandard.at', + 'timestamp': '20151125175511', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160320183921/http://www.wienerzeitung.at/nachrichten/oesterreich/politik/', + 'id': 'a20eaded8637f675d474bfa050aacc59', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'wienerzeitung.at', + 'total': 18, + 'value': 'http://www.wienerzeitung.at/nachrichten/oesterreich/politik/', + 'timestamp': '20160320183921', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170117185625/http://www.bmi.gv.at', + 'id': 'a51185f51069c4b5427984c0d89ba824', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'bmi.gv.at', + 'total': 11, + 'value': 'http://www.bmi.gv.at', + 'timestamp': '20170117185625', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170305185947/http://steiermark.orf.at', + 'id': 'f69b2f50eafce9e3a7aef0fa4cb172e0', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'orf.at', + 'total': 10, + 'value': 'http://steiermark.orf.at', + 'timestamp': '20170305185947', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160321195421/http://www.vol.at/news/politik', + 'id': '798b43237a20b8b6aebf535420011d6e', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'vol.at', + 'total': 9, + 'value': 'http://www.vol.at/news/politik', + 'timestamp': '20160321195421', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170221190941/http://jachwe.wordpress.com', + 'id': 'ae3fa41d96d17bf7262c3128ab14e884', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'wordpress.com', + 'total': 6, + 'value': 'http://jachwe.wordpress.com', + 'timestamp': '20170221190941', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151115182507/http://www.politikeronline.at', + 'id': 'a0a9b7e9429f227ca8448fb87a20dfe3', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'politikeronline.at', + 'total': 4, + 'value': 'http://www.politikeronline.at', + 'timestamp': '20151115182507', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}]}+
Let's use jsonpath to make collecting values from the result JSON easier.
+ +from jsonpath_ng import parse
+
+def jp(http_response, query_string):
+ compiled = parse(query_string)
+ json = http_response.json()
+ return [match.value for match in compiled.find(json)]
+
all_domains = lambda r: jp(r, '$.hits[*].domain')
+number_hits = lambda r: jp(r, '$.hits[*].total')
+
number_hits(r)
+
[60, 40, 25, 22, 18, 11, 10, 9, 6, 4]+
all_domains(r)
+
['diepresse.com', + 'bmeia.gv.at', + 'spoe.at', + 'derstandard.at', + 'wienerzeitung.at', + 'bmi.gv.at', + 'orf.at', + 'vol.at', + 'wordpress.com', + 'politikeronline.at']+
We get one hit per domain. If we want to find the first occurrence, we have to follow the rabbit down the hole:
+The last search gave us all domains. We need to get all URLs for each of these domains, and then all capture dates for every URL, and select the first one.
+ +Steps:
+s.fulltext_search()
s.fulltext_search_within_domain()
s.fulltext_search_within_url()
Let's execute the single steps with a single domain and a single URL respectively, then automate the search over all domains and URLs.
+We'll use the first returned domain diepresse.com
presse_r = s.fulltext_search_within_domain('Westbalkanroute', domain='diepresse.com')
+
presse_r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/fulltextsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 3, + 'type': 1, + 'took': 1785, + 'version': '0.1.0', + 'searchstring': 'Westbalkanroute', + 'grouping': 'diepresse.com', + 'subtype': 2, + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170523182542/http://diepresse.com', + 'id': '3ef624abfe4a831fcf92dd084b60e221', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'http://diepresse.com', + 'total': 52, + 'value': 'http://diepresse.com', + 'timestamp': '20170523182542', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170210180036/http://www.diepresse.com', + 'id': '5bc09002b8151a0bc1b72507ecb2b885', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'http://www.diepresse.com', + 'total': 7, + 'value': 'http://www.diepresse.com', + 'timestamp': '20170210180036', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151026192026/http://diepresse.com/home/politik/eu/index.do', + 'id': '6f8f23cc122d81337a2b7fcaa49c15c6', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': 'http://diepresse.com/home/politik/eu/index.do', + 'total': 1, + 'value': 'http://diepresse.com/home/politik/eu/index.do', + 'timestamp': '20151026192026', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}]}+
We'll use the first returned URL ('seed') http://diepresse.com
diepresse_r = s.fulltext_search_within_url('Westbalkanroute', url='http://diepresse.com', pagesize=52)
+
diepresse_r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/fulltextsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 52, + 'type': 1, + 'took': 1103, + 'version': '0.1.0', + 'searchstring': 'Westbalkanroute', + 'grouping': 'http://diepresse.com', + 'subtype': 3, + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151026182143/http://diepresse.com', + 'id': 'cd5b004aa4e87d9b45e07c1a25315460', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20151026182143', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151027031242/http://diepresse.com', + 'id': '917ca1de057bfb18524756f9b11b3a9f', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20151027031242', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151119183028/http://diepresse.com', + 'id': '59090f47ac0c8f4e0a5859669c36388c', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20151119183028', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20151216144418/http://diepresse.com', + 'id': 'a82320bb154076295fe3b3f9a1609471', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20151216144418', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160923170917/http://diepresse.com', + 'id': '8a9e74c0bb1b36d4ea11f3d51bf2cf68', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20160923170917', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170210180036/http://diepresse.com', + 'id': 'a1c510c19cb96e6717053a565de8dba8', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170210180036', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170210185606/http://diepresse.com', + 'id': '35f47bb670dd41f734fa277051b4a4e4', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170210185606', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170523170736/http://diepresse.com', + 'id': '8a92dab60ace3d913d205277c2bc4bda', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170523170736', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170523181411/http://diepresse.com', + 'id': '875d3d08b9c767b9d06725ee4bffad5c', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170523181411', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170523182542/http://diepresse.com', + 'id': '3ef624abfe4a831fcf92dd084b60e221', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170523182542', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170523183123/http://diepresse.com', + 'id': '5776e809c36ddca29f8bd89c489358f7', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20170523183123', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002155240/http://diepresse.com', + 'id': 'e4db42e444f4bfa11866da8992fbb21e', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002155240', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002160616/http://diepresse.com', + 'id': 'eb6a1c5fe8de15093ee335a0bac8852e', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002160616', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002174537/http://diepresse.com', + 'id': 'b333cd6e2abc8f3b65018b3ea168af5d', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002174537', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002175606/http://diepresse.com', + 'id': '2333bc82d1e28535ef9c5dff404bd762', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002175606', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002175625/http://diepresse.com', + 'id': 'd1d802cb6cee93908a50987d058d3ab4', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002175625', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002184049/http://diepresse.com', + 'id': '63083fe3d6d8890219b8688460f97fef', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002184049', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002185104/http://diepresse.com', + 'id': 'c89c9a0b2c2a0cf41d6b7034074072e6', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002185104', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171002212111/http://diepresse.com', + 'id': 'e5ffd9af786f8a17f4898e70eab5b7ff', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171002212111', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003033941/http://diepresse.com', + 'id': '6c8961059555319d141faf1807ad8ef5', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003033941', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003070039/http://diepresse.com', + 'id': 'e8fd4b360fe9aeb1c2851a83a10af824', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003070039', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003084602/http://diepresse.com', + 'id': '6981685e20c142e9f675125b313bb078', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003084602', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003092853/http://diepresse.com', + 'id': 'abce25d94557ab05352f8a710dc2e010', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003092853', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003115811/http://diepresse.com', + 'id': '3e2db855ee3e8e2be700440df8ae6867', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003115811', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003123112/http://diepresse.com', + 'id': '65c58a98824b3ab983c50ac3e0214d5a', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003123112', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003132945/http://diepresse.com', + 'id': '3008c7cba008bf78f97f953308972473', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003132945', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003164701/http://diepresse.com', + 'id': '62fb975397349f5b35a82e431e06bafc', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003164701', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003165723/http://diepresse.com', + 'id': '49b97ab42aa2fe1b740321ed6e975b47', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003165723', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003180924/http://diepresse.com', + 'id': '80a6a6008d6232b43c1d7a37fc6eb829', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003180924', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003181543/http://diepresse.com', + 'id': '26bfdfb84b42aa6bdcfa812a4a8db23b', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003181543', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171003181627/http://diepresse.com', + 'id': '5e17e7e5707a9cbe7f300ce8f4cfe027', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171003181627', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004164632/http://diepresse.com', + 'id': '5c6a8f435652a50a5642be28a1ca2493', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004164632', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004165546/http://diepresse.com', + 'id': '7d37634d0fe34bdf7f314c862599461d', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004165546', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004165548/http://diepresse.com', + 'id': 'f05eb43b37217a355a4639222523da56', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004165548', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004181003/http://diepresse.com', + 'id': '41cfb3dc400932d0679787c6cff87a55', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004181003', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004181807/http://diepresse.com', + 'id': '71ca86ca0c4b2c51ab893181bae8e4e4', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004181807', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171004190613/http://diepresse.com', + 'id': 'f1771c5c8c96ffab6ef5d5de4e011c39', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171004190613', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171005002251/http://diepresse.com', + 'id': 'b9353c4ac3c18d87ca4be9c29c113dcd', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171005002251', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171005013456/http://diepresse.com', + 'id': 'ff5f72c8a1f5e54814d5c3aabc1ae9a2', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171005013456', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013152553/http://diepresse.com', + 'id': '6a2c998d606c326d571e2954e316677f', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013152553', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013173505/http://diepresse.com', + 'id': '15e06c8aef7eff6b240292884a23b3e7', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013173505', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013174308/http://diepresse.com', + 'id': '0f87d81c5794388bac78b09a71c22995', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013174308', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013175058/http://diepresse.com', + 'id': '32d0f3336d26c92b056f3d5bf1b80e5c', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013175058', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013183341/http://diepresse.com', + 'id': '084a00afa920b3c934a82e0e28dda120', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013183341', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013184235/http://diepresse.com', + 'id': '110c1c117ea56390ce9d5b517abe6281', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013184235', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013184257/http://diepresse.com', + 'id': 'baedfd42ad79096539548f47c38767da', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013184257', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171013190102/http://diepresse.com', + 'id': '659c2f61ea7d6362c70c75d44d1e84a4', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171013190102', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171014174350/http://diepresse.com', + 'id': '9677f6b32b361b495147682c729f2c10', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171014174350', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171014174853/http://diepresse.com', + 'id': '198aabe1082aa0c7840b80f3fb1ef19a', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171014174853', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171014175103/http://diepresse.com', + 'id': '7e5e8b94739546b63ebf0c82a92ae175', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171014175103', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171014175508/http://diepresse.com', + 'id': '5ef3e90835730b74f4d23e200c0cc691', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171014175508', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20171014175545/http://diepresse.com', + 'id': '29cd0c0df2d41b3e40bdca6962fdd349', + 'snapshotavailable': 0, + 'svgavailable': 0, + 'domain': None, + 'total': 0, + 'value': 'http://diepresse.com', + 'timestamp': '20171014175545', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}], + 'page': 1, + 'pagesize': 52}+
Ok, in timestamp
are all the capture dates for this URL.
The date format is YYYYMMDDHHmmss
, no idea what timezone TODO
Collect them all:
+ +all_captures = lambda r: jp(r, '$.hits[*].timestamp')
+
cap = all_captures(diepresse_r)
+cap[:5]
+
['20151026182143', + '20151027031242', + '20151119183028', + '20151216144418', + '20160923170917']+
They sort neatly alphabetically
+ +min(cap)
+
'20151026182143'+
all_domains = lambda r: jp(r, '$.hits[*].domain')
+all_urls = lambda r: jp(r, '$.hits[*].value')
+all_captures = lambda r: jp(r, '$.hits[*].timestamp')
+number_hits = lambda r: jp(r, '$.hits[*].total')
+
+def search_deep_for_first_captures(query_string):
+ ft_r = s.fulltext_search(query_string)
+ first_hit_for_url = {}
+ for domain in all_domains(ft_r):
+ ft_dom_r = s.fulltext_search_within_domain(query_string, domain=domain)
+ urls = all_urls(ft_dom_r)
+ hits = number_hits(ft_dom_r)
+ for url, pagesize in zip(urls, hits):
+ ft_url_r = s.fulltext_search_within_url(query_string, url=url, pagesize=pagesize)
+ captures = all_captures(ft_url_r)
+ min_capture = min(captures)
+ first_hit_for_url[url] = min_capture
+ return min(first_hit_for_url.values()), first_hit_for_url
+
search_deep_for_first_captures('Westbalkanroute')
+
('20150911190447', + {'http://diepresse.com': '20151026182143', + 'http://www.diepresse.com': '20151026182143', + 'http://diepresse.com/home/politik/eu/index.do': '20151026192026', + 'http://www.bmeia.gv.at': '20151010185208', + 'http://www.vorarlberg.spoe.at/index.php': '20151022181252', + 'http://derstandard.at': '20150911190447', + 'http://www.derstandard.at': '20150911190447', + 'http://www.wienerzeitung.at': '20151028214142', + 'http://www.wienerzeitung.at/': '20151028214142', + 'http://www.wienerzeitung.at/nachrichten/oesterreich/politik/': '20160313183203', + 'http://www.bmi.gv.at': '20170110140316', + 'http://orf.at/': '20160313195759', + 'http://steiermark.orf.at': '20170304194626', + 'http://www.orf.at': '20160313195759', + 'http://news.orf.at': '20160313195751', + 'http://news.orf.at/': '20160313195751', + 'http://salzburg.orf.at': '20160418181246', + 'http://salzburg.orf.at/': '20160418181246', + 'http://www.vol.at/news/politik': '20151026182823', + 'http://www.vol.at': '20160320181655', + 'http://www.vol.at/': '20160320181655', + 'http://jachwe.wordpress.com': '20170220181340', + 'https://jachwe.wordpress.com': '20170220181340', + 'http://www.politikeronline.at': '20151115182507'})+
I know about a specific website. Is there a saved version of it in the Webarchive?
+ +Let's start a WebarchivSession
+ +import webarchiv
+
+API_KEY = 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ'
+
+# If you want to allow us to count you as a unique visitor, please set allow_tracking to True
+s = webarchiv.WebarchivSession(API_KEY, allow_tracking=False)
+
r = s.wayback_search(query_string='https://www.wien.gv.at')
+
r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/waybackcalheatmapsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 7118, + 'type': 2, + 'took': 6998, + 'version': '0.1.0', + 'url': 'https://www.wien.gv.at', + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080521143538', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080521152648', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080521153200', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080523040316', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080523113136', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080523120952', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080523122720', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080525040943', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080525043407', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080526040804', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080526043423', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527040858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527043224', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527093353', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527094938', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527095351', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080527220307', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080530040440', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080531040000', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080602034749', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080603012034', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080604012847', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080605011743', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080606011745', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080607012048', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080608021303', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080609092336', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080610011854', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080611012036', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080612020841', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080613020925', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080614020657', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080615015817', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080616021849', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080617021808', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080618021217', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080619014832', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080620022131', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080621022813', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080622015058', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080623020650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080624014920', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080625023154', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080626014914', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080627015250', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080628015456', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080629020648', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080630024210', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080701015916', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080702020205', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080703023356', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080704020429', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080705015752', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080706014914', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080707021115', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080708020343', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080709015737', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080710021134', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080711020825', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090917063528', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090917120731', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090919023059', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090919023652', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090923202246', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090925065545', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090925084237', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090925154137', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090925164848', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090926131530', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090926154530', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090926230305', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090927202353', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090928101430', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20090930180932', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091003003353', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091003020414', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091003235019', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091004020450', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091006055700', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091006102932', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091008133304', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091009142059', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091010025845', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091011080518', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091011090452', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091011134720', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091014063249', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091014121743', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091015101518', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091016060728', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091016142509', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091016153510', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091019092627', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091019103445', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091020033249', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091021020413', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091022022415', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091022232004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091023005924', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091023040611', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091023163441', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091023222823', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091024095959', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091025020147', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091025200533', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091025210742', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091026012741', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091026223739', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091027012347', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091027153025', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091028152928', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091028222840', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091029040540', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091029200253', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091029202429', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091030201224', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091031020043', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091031182717', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091102162409', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091102180742', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091104045317', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091104093008', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091104102349', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091105141315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091105173249', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091107004532', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091107024609', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091107091523', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091109005801', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091109110428', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091109214513', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20091110150056', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100123170045', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100124110350', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100126134123', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100127030924', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100129010453', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100129234340', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100202002513', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100205101516', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100206081319', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100207100031', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100211002514', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100211164040', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100212123142', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100218050744', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100221224535', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100223213256', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100226031045', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100227103821', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100302145211', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100303110907', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100306204600', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100308224943', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100312072002', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100312133946', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100313122759', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100314103615', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100315233609', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100318035923', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100318081830', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100320115405', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100322012252', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100322135401', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100323234430', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100325120715', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100327102711', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100327201144', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100329210509', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100331092409', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100401150759', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100403090730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100405180823', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100405221342', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100406204046', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100410045853', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100411214535', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100413160539', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100414220002', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100416204259', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100420145806', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100421205647', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100423202758', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100426145858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100428042408', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100429051953', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100430045552', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100502043656', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100504061319', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100505104906', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100507080338', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100507114407', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100509113725', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100512031556', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100516070921', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100516171936', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100519104133', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100519131838', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100521010235', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100521230619', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100523041610', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100524194355', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100526100618', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100530004847', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100601201802', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100602015709', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100603024904', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100603214528', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100604085929', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100605024713', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100606070520', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100608120005', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100609085012', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100615055051', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100615081700', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100618135431', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100619152346', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100620003744', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100621090840', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100622034448', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100623142730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100628015450', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100630024229', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100702113421', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100703063137', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100704075743', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100704125344', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100708140530', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100709161746', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100709165543', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100825135508', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100825141749', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100825142341', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100825201805', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100825214026', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100827140923', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100831220308', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20100901020626', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110401132442', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402073322', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402100622', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402113350', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402120626', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402133416', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402140716', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110402150728', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403063257', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403073318', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403083406', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403093331', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403103310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403113358', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403123301', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403130555', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403143323', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403153318', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403160640', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403165018', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403183400', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403190729', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403195048', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403214005', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403220656', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403233437', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110403235111', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404013412', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404023504', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404030716', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404043414', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404073402', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404085447', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404103404', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404113333', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404143403', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110404145129', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405055012', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405065046', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405080604', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405090623', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405111355', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110405123344', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110406100705', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110406115355', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110406123333', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110407054921', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110407065040', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110407093407', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110407123445', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110407140708', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110408073315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409073310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409083338', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409093242', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409103230', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409113307', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409123300', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409133311', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409143313', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409153336', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409163344', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110409173343', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110411130029', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110412065336', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110412073506', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110412083426', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110413093345', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110413143248', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110413153429', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110414063346', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110414073358', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110414103337', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110415105332', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110416073353', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110416083338', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110416093405', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110416103413', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417063322', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417073351', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417083342', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417093442', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417103351', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417115343', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417125334', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417135349', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417145416', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110417155430', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110418063426', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110418075410', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110419063350', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110419073422', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110802190013', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110803050659', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110806000101', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110808052851', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110808171336', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110808183141', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110810184518', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110813183514', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110814165858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110817050527', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110818061310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110818224704', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110818231506', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110822082902', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110823122805', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110823161458', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110826012500', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110828140314', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110829142059', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110831060216', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110831073125', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110831084333', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110831085705', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110831224143', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110902031654', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110903011741', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110903105529', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110904050254', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110904060444', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110906121446', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110907083837', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110911110055', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110913050646', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110913145742', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110914051751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110914224613', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110915043209', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20110916102740', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111017232002', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111019203422', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111031170447', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111101102858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111103042056', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111103105845', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111105105951', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111108050353', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111110103706', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111112032041', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111113221612', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111116094539', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111120002842', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111121071013', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111122022622', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111128152407', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111205201030', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111206230139', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111207031303', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111215130241', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111216040130', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111218051230', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111220014144', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111223122335', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111228102936', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20111230094607', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120104122730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120115001121', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120122064650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120123033426', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120130043436', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120203121713', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120205133010', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120213215918', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120219013040', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120220141339', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120223035429', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120224050511', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120225032050', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120225093643', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120301154708', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120302083535', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120304090834', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120312171558', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120316200722', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120317124559', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120318153413', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120330160315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120418112858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120423231802', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120429075159', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120505022245', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120807113308', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120807113932', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120807170442', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120808074607', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120810033242', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120810041209', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120824112019', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120824140443', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120824192114', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120825022638', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120901231709', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120918225431', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120926200247', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120927032309', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20120928131150', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130118222823', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130119232456', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130120232150', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130121230240', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130122233434', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130123232233', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130124232147', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130125235624', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130126234853', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130127234336', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130128235546', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130129233419', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130130233549', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130131234404', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130201234905', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130202232046', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130203232217', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130204232235', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130205234156', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130206230635', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130208001743', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130208233905', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130209234202', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130210233903', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130211232211', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130213001004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130214140842', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130214234559', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130216001553', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130216131658', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130216170736', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130216232943', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130218000940', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130218235146', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130219001207', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130219150003', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130220000406', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130220214903', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130220232906', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130221011124', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130221181512', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130221233622', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130222042208', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130222233802', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130222234438', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130223153233', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130223184252', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130224120549', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130225032057', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130225153003', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130225233949', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130227041648', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130227064002', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130227235831', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130301040413', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130301211630', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130302004130', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130302233401', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130304000423', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130304112528', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130305035529', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130305211455', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130306000849', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130307000343', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130307231318', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130308010531', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130308052420', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130308110625', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130309022126', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130309150436', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130309233441', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130310014551', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130310064712', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130310235607', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130311224507', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130312024903', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130312233650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130314025722', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130314060213', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130314213505', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130314231137', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130314233405', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130316000555', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130316214850', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130317004104', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130317055439', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130317082803', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130317184822', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130318000444', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130318003713', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130318221445', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130319000434', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130319154955', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130319231439', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130323000115', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130324000435', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130325002330', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130327001350', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130327235047', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130329004243', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130330002443', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130331000511', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130331233820', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130401234002', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130402231312', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130403232318', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130404231808', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130406232948', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130407231248', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130408230302', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130411111741', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130411232745', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130412225949', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130413230121', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130414225852', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130415234251', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130416234539', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130417232943', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130418233520', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130419234622', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130420225730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130421230901', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130422224604', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130423232950', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130424230317', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130425224414', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130426230413', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130427231244', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130428232944', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130429230733', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130430235841', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130501231147', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130502233845', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130503175421', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130504233908', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130505230602', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130506233740', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130507234259', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130509001108', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130510000625', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130510235609', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130511235236', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130512235644', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130514235315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130515230355', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130516225557', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130517223650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130518223316', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130519221558', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130520230407', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130521222554', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130522221121', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130523223125', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130524225312', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130525224732', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130526225340', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130527225400', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130528230040', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130529222912', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130530222940', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130531222914', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130601222800', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130602225520', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130603224545', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130604230127', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130605221842', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130606222248', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130607221242', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130608215000', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130609222436', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130610221637', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130611223931', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130612223945', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130613225126', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130614223554', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130615222751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130616231352', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130617230004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130618224650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130619224323', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130620211623', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130620230528', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130621225646', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130624002656', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130624094135', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130624230359', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130626233219', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130627230905', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130628144055', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130628231008', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130630044345', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130630124109', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130701143933', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130702123921', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130702234727', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130703204550', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130703214419', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130703225727', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130704173707', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130704230838', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130705235024', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130706233931', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130707230655', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130708155204', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130708230200', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130709154926', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130709233449', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130710122345', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130710233752', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130711104635', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130711234232', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130712235929', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130713233532', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130714233402', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130715233706', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130716234628', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130717110826', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130717231152', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130718003016', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130718235135', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130719232524', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130720062522', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130720231218', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130721231039', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130722234226', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130724000153', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130724100150', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130724234919', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130725125959', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130725225338', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130726090126', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130726231839', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130727224606', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130728232547', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130729073851', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130729231036', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130730231004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130731060652', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130731233804', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130801234041', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130802235152', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130803055627', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130803104345', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130803235310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130805212905', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130805233729', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130806233139', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130807224926', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130808230544', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130809221805', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130810221720', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130811220158', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130812114057', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130812153349', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130812224646', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130813121822', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130813221702', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130814223203', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130815224755', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130816225159', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130817082932', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130817223245', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130818224923', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130819155922', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130819225417', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130820225859', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130821222710', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130822095602', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130822222745', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130825042112', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130825223732', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130826174628', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130826230142', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130830201244', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130830221751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130901225640', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130902224040', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130903232945', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130904111351', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130904224730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130906222237', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130906224527', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130907053212', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130907224721', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130908232056', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130909033906', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130909124315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130909153128', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130909222858', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130911220600', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130912120823', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130913070300', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130913172412', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130913224730', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130914003740', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130914094304', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130914222834', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130915231649', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130917231139', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130919221107', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130919224634', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130920161751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130920223831', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130922011734', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130922225220', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130923124229', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130923232104', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130924225350', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130925222556', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130926222313', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130927222056', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130928224557', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130929143722', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130929224434', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20130930221843', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131001221948', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131002100805', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131004221544', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131006221753', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131007082410', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131007214446', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131008220141', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131009213619', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131010140341', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131011002540', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131011220942', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131013231656', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131015220118', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131018224537', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131020214311', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131022000842', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131023220909', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131025002004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131026005344', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131027014908', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131028004623', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131028111250', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131028234919', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131029224557', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131030230215', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131031233126', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131101233211', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131102233416', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131103232034', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131104232202', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131105230256', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131106200330', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131107200306', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131108200314', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131109201310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131110200322', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131111200502', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131112201253', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131113201310', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131114200226', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131115200232', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131116200607', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131117200031', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131118200703', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131119201130', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131120201315', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131121200431', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131122200021', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131123200434', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131124200209', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131125200619', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131126200231', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131127200623', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131128201647', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131129200218', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131130201201', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131201201424', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131202200406', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131203201226', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131204201519', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131205200351', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131206200038', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131207200308', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131208200103', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131209200304', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131210200108', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131211200231', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131212201035', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131213200145', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131214200004', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131215200034', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131216200455', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131217200103', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131218200036', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131219200038', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131220200246', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131221200010', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131222200355', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131223200249', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131224195736', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131225200250', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131226195919', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131227195727', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131228200238', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131229200154', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131230195915', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20131231195909', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140101200818', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140102195941', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140103200714', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140104195726', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140105195910', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140106195937', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140107195925', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140108195928', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140109195918', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140110200202', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140111195935', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140112195646', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140113200145', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140114200128', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140115195922', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140116195708', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140117201207', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140118195939', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140119195809', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140120195943', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140121195833', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140122200257', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140123201739', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140124195548', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140125200029', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140126201948', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140127195753', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140128200055', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140129195818', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140130195828', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140131201639', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140201195826', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140202200245', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140203201205', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140204200055', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140205150751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140205195738', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140206200323', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140207184420', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140207192835', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140208191650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140209192642', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140210191718', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140211191706', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140212191659', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140213191657', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140214191642', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140215192710', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140216191633', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140217090541', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140217191638', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140218191547', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140219190420', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140219192747', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140220191650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140221191607', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140222191630', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140223191641', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140224191550', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140225191620', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140226185959', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140226192105', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140227192617', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140228191538', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140301191531', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140302191504', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140303191453', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140304192552', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140305185451', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140305194401', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140306191515', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140307191532', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140308191530', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140309191520', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140310191511', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140311193525', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140312190243', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140312192419', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140314193631', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140315191659', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140316191725', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140317191718', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140318191658', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140319190206', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140319191652', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140320191842', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140321191714', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140322191650', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140323191716', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140324191731', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140325191759', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140326190402', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140326191657', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140327191803', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140328191711', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140329191729', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140330183048', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140331181746', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140401181822', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140402181734', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140403181807', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140404181806', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140405181816', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140406181746', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140407181740', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140408181738', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140409181756', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140410181833', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140411181731', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140412181802', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140413181751', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140414181803', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140415181831', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140416181855', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140417181844', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140418183008', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140419181831', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140420182013', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140421181844', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140422185658', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140423181840', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140424181908', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140425181937', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140426181907', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140427181857', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140428181901', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140429181809', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140430181834', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140501181902', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140502181817', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140503181818', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140504181836', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140505182031', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140506181931', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140507181914', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140508181950', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140509183403', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140510181909', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140511182954', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140512181959', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140513181913', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140514182216', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140515182139', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140516182205', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140517183216', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140518182217', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140519182005', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140520182122', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140521182159', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140522182057', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140523183408', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140524182037', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140525184907', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140526184016', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140527182234', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140528182131', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140529182013', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140530182121', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140531182641', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140601183932', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140602184335', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140603182140', + 'r': 1}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20140604182033', + 'r': 1}, + ...]}+
j = r.json()
+j['total'], len(j['hits'])
+
(7118, 7118)+
What's the earliest version?
+ +min(j['hits'], key=lambda h: h['c'])
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/calheatentity.jsonld', + 'c': '20080521143538', + 'r': 1}+
I'm for some reason kind of interested in the colors and the rough visual layout of a saved page
+ +If a hit
in a search result has the property svgavailable
set to 1
, we can download a SVG thumbnail for the rendered page.
{
+ '@id': 'http://wayback/web/20151108183014/http://www.vorarlberg.spoe.at/index.php',
+ 'id': '01c1b572b8102b5c098ef3fb3662544b',
+ 'snapshotavailable': 0,
+ 'svgavailable': 1,
+ 'domain': 'spoe.at'
+}
+
import webarchiv
+
+API_KEY = 'wGdLmWMlaM2V6j73V9zS0KHqBgfG67vJ'
+
+# If you want to allow us to count you as a unique visitor, please set allow_tracking to True
+s = webarchiv.WebarchivSession(API_KEY, allow_tracking=False)
+
If the @id
of the hit
looks like this:
http://wayback/web/20151108183014/http://www.vorarlberg.spoe.at/index.php
+the SVG could be downloaded like this:
+ +r = s._get('/snapshot', params=dict(
+ seed='http://www.vorarlberg.spoe.at/index.php',
+ capture='20151108183014'
+))
+r.status_code
+
200+
Let's take a look at the SVG
+ +from IPython.display import display, HTML
+
display(HTML(r.text))
+
Let's find out if and how the main colors on the website of the Österreichische Volkspartei changed along with the party color.
+ +We need to grab all captures within a certain timeframe. Somewhere from the end of 2016 to mid-2017 should do.
+ +fs_dom_r = s.fulltext_search_within_domain('domain:oevp.at', domain='oevp.at', from_='201609', to_='201706')
+
fs_dom_r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/fulltextsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 1, + 'type': 1, + 'took': 62, + 'version': '0.1.0', + 'searchstring': 'domain:oevp.at', + 'grouping': 'oevp.at', + 'subtype': 2, + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170131201020/http://www.oevp.at', + 'id': 'f928a36e08ad542a738ed4de3115f7f9', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': 'http://www.oevp.at', + 'total': 63, + 'value': 'http://www.oevp.at', + 'timestamp': '20170131201020', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}]}+
Ok, there's only one URL within the timeframe. Let's get all captures with available SVG previews.
+ +j = fs_dom_r.json()
+url, pagesize = j['hits'][0]['value'], j['hits'][0]['total']
+url, pagesize
+
('http://www.oevp.at', 63)+
fs_url_r = s.fulltext_search_within_url('domain:oevp.at', url=url, pagesize=pagesize, from_='201609', to_='201706')
+
fs_url_r.json()
+
{'@context': 'https://webarchiv.onb.ac.at/contexts/fulltextsearchresult.jsonld', + 'requestid': '', + 'message': '', + 'returncode': 0, + 'total': 63, + 'type': 1, + 'took': 1008, + 'version': '0.1.0', + 'searchstring': 'domain:oevp.at', + 'grouping': 'http://www.oevp.at', + 'subtype': 3, + 'hits': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160905170753/http://www.oevp.at', + 'id': '0b9adf32101c410d87b782ffa1e83260', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20160905170753', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160907203908/http://www.oevp.at', + 'id': '935267385338fee3faf4f02d27281ea8', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20160907203908', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160929175932/http://www.oevp.at', + 'id': '4d09e8f2c255b3dcf93b3ba36b5ed93a', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20160929175932', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20160930180059/http://www.oevp.at', + 'id': '88386a449503ecce4dc442629ce11666', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20160930180059', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161003184414/http://www.oevp.at', + 'id': '38ec0961e61712ea0d61ab10893d512c', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161003184414', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161018175749/http://www.oevp.at', + 'id': 'ab5827a7ed34279993fc488e624f0d20', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161018175749', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161028181811/http://www.oevp.at', + 'id': 'e0f34a4814e752d98f6d9dfca65b27e5', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161028181811', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161107195104/http://www.oevp.at', + 'id': '1428ffd460e9481bed95fc5c85092ae9', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161107195104', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161108190933/http://www.oevp.at', + 'id': '99603a623243877cbd50d3bcca7393c7', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161108190933', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161109192956/http://www.oevp.at', + 'id': 'e14881d070cf4f81002b21177f46e27e', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161109192956', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161110183100/http://www.oevp.at', + 'id': '0a9018cc365e04bd55223729f23d0368', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161110183100', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161110195318/http://www.oevp.at', + 'id': 'a8d5615dff603b4a4071c519a7b1fe3a', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161110195318', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161111183240/http://www.oevp.at', + 'id': 'e0e8649cc39150b54230d2c036c40ded', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161111183240', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161111190557/http://www.oevp.at', + 'id': 'bedf23d96f851f1ab95acc7b454f43e3', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161111190557', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161112181020/http://www.oevp.at', + 'id': 'c0f6e9f5e1c24ed52cf7042e0bff0e36', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161112181020', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161113191546/http://www.oevp.at', + 'id': '7506d5a76588cd5a0dcbef5afe2f6e76', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161113191546', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161114181754/http://www.oevp.at', + 'id': 'f408f24be833b6829cc1b0c99544476f', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161114181754', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161114191356/http://www.oevp.at', + 'id': 'de0b1fdacb6ae2986c9ce92b138ce182', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161114191356', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161114201256/http://www.oevp.at', + 'id': '8759e5a75dc047796386ac7b986330a4', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161114201256', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161116180957/http://www.oevp.at', + 'id': 'cf79bb94003de80e9efff8f428441e7a', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161116180957', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161116184039/http://www.oevp.at', + 'id': 'd05af11c6a83dc7ea81704cb341e3168', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161116184039', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161117181650/http://www.oevp.at', + 'id': '5be231241cf04703c2ed842bf047b5f9', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161117181650', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161117201945/http://www.oevp.at', + 'id': '13b2adceb372d8b9b76477d498ed8517', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161117201945', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161119194026/http://www.oevp.at', + 'id': '5a7e2ba7518a39e3c9c13766d6902cc6', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161119194026', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161120184224/http://www.oevp.at', + 'id': '7d6a5fb3ce6a4f60bdf19c570c2cb5bc', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161120184224', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161122191855/http://www.oevp.at', + 'id': '65b13cbee4e11b254148b7e653285203', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161122191855', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161123192916/http://www.oevp.at', + 'id': '227aae089c76ced137855fa40861a72f', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161123192916', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161125182553/http://www.oevp.at', + 'id': 'e3c928e93655445a4518a55b365a4b42', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161125182553', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161126192752/http://www.oevp.at', + 'id': 'deccf833b34da3df21a6e86ba19c4897', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161126192752', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161128185931/http://www.oevp.at', + 'id': '5738e037ef75f3d481df4e3326770c3c', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161128185931', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161128185934/http://www.oevp.at', + 'id': 'a362bd5530b620a928675e758f2bf19e', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161128185934', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161129201107/http://www.oevp.at', + 'id': 'bfa6ac4de893c478a49da5f2b4f40af5', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161129201107', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161201195822/http://www.oevp.at', + 'id': '600bd6d62b926e2f8f50565cf3a1fcbd', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161201195822', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20161203193914/http://www.oevp.at', + 'id': 'ceab4fea32d1cad10bab47d72567d8cb', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20161203193914', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170110190527/http://www.oevp.at', + 'id': 'd1fda42b13b09a707b2dc28663a15a84', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170110190527', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170129184035/http://www.oevp.at', + 'id': '63da918c94190ab0c059207239e6ba84', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170129184035', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170131201020/http://www.oevp.at', + 'id': 'f928a36e08ad542a738ed4de3115f7f9', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170131201020', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170201192821/http://www.oevp.at', + 'id': 'ba95b2c1fd03d4a8f22058b4761a7dfa', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170201192821', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170207183757/http://www.oevp.at', + 'id': 'eceaae0dfa7b2de6cae4eceab5d9099e', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170207183757', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170218192112/http://www.oevp.at', + 'id': 'dba233771390cb63d27926cff35fdc70', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170218192112', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170220182649/http://www.oevp.at', + 'id': 'fe228aff6d9660c779fa9270f71980e5', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170220182649', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170222182051/http://www.oevp.at', + 'id': '1bc48e837be00bb241c818e4579573aa', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170222182051', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170424182736/http://www.oevp.at', + 'id': 'daa729ddc574db3d4106389c340bc5f4', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170424182736', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170509185646/http://www.oevp.at', + 'id': '3e1ebb350c8b3ba76a73d9593077fa6d', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170509185646', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170602172152/http://www.oevp.at', + 'id': '75b5f096d48530d947aa22b3e7b93fa8', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170602172152', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170606191530/http://www.oevp.at', + 'id': 'f24128b4e5943e3005125ac09511901b', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170606191530', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170609174003/http://www.oevp.at', + 'id': '2e3cba0b5351aaa482a1c09a07538bbc', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170609174003', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170613195044/http://www.oevp.at', + 'id': 'a2e6a8fba4e27037e8ab6ac3a5c11caf', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170613195044', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170614173514/http://www.oevp.at', + 'id': '07664470b11e1cb476c123e4eebbd24a', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170614173514', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170621175942/http://www.oevp.at', + 'id': '0fc6d736e3f174015e8a7a9967e74e37', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170621175942', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622181129/http://www.oevp.at', + 'id': 'af12399aac37c44a9371ae2036dc0f17', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622181129', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622185957/http://www.oevp.at', + 'id': 'c1594289ec2374f6425a0257a9342579', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622185957', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622190527/http://www.oevp.at', + 'id': 'a80bd5581df4b07abcc8b6df21cd8123', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622190527', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622190637/http://www.oevp.at', + 'id': '1693d8ed321d112acd09939d486d29e1', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622190637', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622193156/http://www.oevp.at', + 'id': '746856d7ddc59bd55a58eaad265341bb', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622193156', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170622194736/http://www.oevp.at', + 'id': '66868e5077ac258b2086e6b53a1d2366', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170622194736', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170624182418/http://www.oevp.at', + 'id': 'f11afdcb7e61f3e687ad2dda1e5c8977', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170624182418', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170625002807/http://www.oevp.at', + 'id': '46a673755ab1fec59d7ae0127a5c6f3b', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170625002807', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170625040638/http://www.oevp.at', + 'id': '67ecc5456cbe680513b8434e73bf29c5', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170625040638', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170626180853/http://www.oevp.at', + 'id': '97469973973cde709e25076ad4860c06', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170626180853', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170627174659/http://www.oevp.at', + 'id': '5e0349f023c4b68738223f7622289665', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170627174659', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170629192804/http://www.oevp.at', + 'id': '84c0a3b9d705c2de5aa50e51ef238f3f', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170629192804', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}, + {'@context': 'https://webarchiv.onb.ac.at/contexts/eshit.jsonld', + '@id': 'http://wayback/web/20170630181121/http://www.oevp.at', + 'id': '95ecc6bdbd2139572a44cc046889edd8', + 'snapshotavailable': 0, + 'svgavailable': 1, + 'domain': None, + 'total': 0, + 'value': 'http://www.oevp.at', + 'timestamp': '20170630181121', + 'restriction': 1, + 'locked': 1, + 'highlights': [{'@context': 'https://webarchiv.onb.ac.at/contexts/eshighlight.jsonld', + 'typ': '', + 'highlightedtext': 'Der Inhalt ist gesperrt und kann nicht angezeigt werden'}]}], + 'page': 1, + 'pagesize': 63}+
Filter by svgavailable
and collect the timestamps
j = fs_url_r.json()
+timestamps = [hit['timestamp'] for hit in j['hits'] if hit['svgavailable'] == 1]
+len(timestamps), timestamps[:5]
+
(63, + ['20160905170753', + '20160907203908', + '20160929175932', + '20160930180059', + '20161003184414'])+
Collect all SVGs in the timeframe.
+ +def get_svg_for_capture(seed, capture, session):
+ r = session._get('/snapshot', params=dict(
+ seed=seed,
+ capture=capture,
+ onlysvg=1
+ ))
+ if r.ok:
+ return r.text
+ else:
+ return ''
+
all_svgs = [get_svg_for_capture('http://www.oevp.at', timestamp, s) for timestamp in timestamps]
+
Style them and show them in the notebook:
+ +def style_svg(capture, svg):
+ svg_styled = svg.replace('<svg ', '<svg style="width: 120px;" ')
+ return f'<a href="http://wayback/web/{capture}/http://www.oevp.at">{svg_styled}</a>'
+
html = ''.join(style_svg(c, s) for c, s in zip(timestamps, all_svgs))
+