aiiinotate 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +61 -0
  3. package/cli/import.js +142 -0
  4. package/cli/index.js +26 -0
  5. package/cli/io.js +105 -0
  6. package/cli/migrate.js +123 -0
  7. package/cli/mongoClient.js +11 -0
  8. package/docs/architecture.md +88 -0
  9. package/docs/db.md +38 -0
  10. package/docs/dev_iiif_compatibility.md +43 -0
  11. package/docs/endpoints.md +48 -0
  12. package/docs/progress.md +159 -0
  13. package/docs/specifications/0_w3c_open_annotations.md +332 -0
  14. package/docs/specifications/1_w3c_web_annotations.md +577 -0
  15. package/docs/specifications/2_iiif_apis.md +396 -0
  16. package/docs/specifications/3_iiif_annotations.md +103 -0
  17. package/docs/specifications/4_search_api.md +135 -0
  18. package/docs/specifications/5_sas.md +119 -0
  19. package/docs/specifications/6_mirador.md +119 -0
  20. package/docs/specifications/7_aikon.md +137 -0
  21. package/docs/specifications/include/presentation_2.0.webp +0 -0
  22. package/docs/specifications/include/presentation_2.0_white.png +0 -0
  23. package/docs/specifications/include/presentation_3.0.png +0 -0
  24. package/docs/specifications/include/presentation_3.0_resize.png +0 -0
  25. package/eslint.config.js +27 -0
  26. package/migrations/baseConfig.js +56 -0
  27. package/migrations/manageIndex.js +55 -0
  28. package/migrations/migrate-mongo-config-main.js +8 -0
  29. package/migrations/migrate-mongo-config-test.js +8 -0
  30. package/migrations/migrationScripts/20250825185706-collections.js +41 -0
  31. package/migrations/migrationScripts/20250826194832-annotations2-canvas-index.js +31 -0
  32. package/migrations/migrationScripts/20250904080710-annotations2-schema.js +42 -0
  33. package/migrations/migrationScripts/20251002141951-manifest2-schema.js +43 -0
  34. package/migrations/migrationScripts/20251006212110-manifest-unique-index.js +29 -0
  35. package/migrations/migrationScripts/20251028115614-annotations2-id-index.js +27 -0
  36. package/migrations/migrationTemplate.js +25 -0
  37. package/package.json +78 -0
  38. package/run.sh +70 -0
  39. package/scripts/_migrations.sh +79 -0
  40. package/scripts/_setup.js +31 -0
  41. package/scripts/setup_mongodb.sh +61 -0
  42. package/scripts/setup_mongodb_migrate.sh +17 -0
  43. package/scripts/setup_node.sh +15 -0
  44. package/scripts/utils.sh +192 -0
  45. package/setup.sh +20 -0
  46. package/src/app.js +113 -0
  47. package/src/config/.env.template +22 -0
  48. package/src/data/annotations/annotations2.js +419 -0
  49. package/src/data/annotations/annotations3.js +32 -0
  50. package/src/data/annotations/routes.js +271 -0
  51. package/src/data/annotations/routes.test.js +180 -0
  52. package/src/data/collectionAbstract.js +270 -0
  53. package/src/data/index.js +29 -0
  54. package/src/data/manifests/manifests2.js +305 -0
  55. package/src/data/manifests/manifests2.test.js +53 -0
  56. package/src/data/manifests/manifests3.js +23 -0
  57. package/src/data/manifests/routes.js +95 -0
  58. package/src/data/manifests/routes.test.js +69 -0
  59. package/src/data/routes.js +141 -0
  60. package/src/data/routes.test.js +117 -0
  61. package/src/data/utils/iiif2Utils.js +196 -0
  62. package/src/data/utils/iiif2Utils.test.js +98 -0
  63. package/src/data/utils/iiif3Utils.js +0 -0
  64. package/src/data/utils/iiifUtils.js +18 -0
  65. package/src/data/utils/routeUtils.js +109 -0
  66. package/src/data/utils/testUtils.js +253 -0
  67. package/src/data/utils/utils.js +231 -0
  68. package/src/db/index.js +48 -0
  69. package/src/fileServer/annotations.js +39 -0
  70. package/src/fileServer/data/annotationList_aikon_wit9_man11_anno165_all.jsonld +827 -0
  71. package/src/fileServer/data/annotationList_vhs_wit250_man250_anno250_all.jsonld +37514 -0
  72. package/src/fileServer/data/annotationList_vhs_wit253_man253_anno253_all.jsonld +20111 -0
  73. package/src/fileServer/data/annotations2Invalid.jsonld +39 -0
  74. package/src/fileServer/data/annotations2Valid.jsonld +39 -0
  75. package/src/fileServer/data/bnf_invalid_manifest.json +2806 -0
  76. package/src/fileServer/data/bnf_valid_manifest.json +2817 -0
  77. package/src/fileServer/data/vhs_wit253_man253_anno253_anno-24.json +1 -0
  78. package/src/fileServer/index.js +64 -0
  79. package/src/fileServer/manifests.js +14 -0
  80. package/src/fileServer/utils.js +35 -0
  81. package/src/schemas/index.js +20 -0
  82. package/src/schemas/schemasBase.js +47 -0
  83. package/src/schemas/schemasPresentation2.js +417 -0
  84. package/src/schemas/schemasPresentation3.js +57 -0
  85. package/src/schemas/schemasResolver.js +71 -0
  86. package/src/schemas/schemasRoutes.js +277 -0
  87. package/src/server.js +22 -0
  88. package/src/types.js +93 -0
@@ -0,0 +1,2817 @@
1
+ {
2
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/manifest.json",
3
+ "label" : "BnF. Département des Manuscrits. Latin 2422",
4
+ "attribution" : "Bibliothèque nationale de France",
5
+ "license" : "https://gallica.bnf.fr/html/und/conditions-dutilisation-des-contenus-de-gallica",
6
+ "logo" : "https://gallica.bnf.fr/mbImage/logos/logo-bnf.png",
7
+ "related" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p",
8
+ "seeAlso" : [ "http://oai.bnf.fr/oai2/OAIHandler?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:bnf.fr:gallica/ark:/12148/btv1b8490076p" ],
9
+ "description" : "Rabanus Maurus, In honorem sanctae Crucis [De laudibus sanctae Crucis].",
10
+ "metadata" : [ {
11
+ "label" : "Repository",
12
+ "value" : ""
13
+ }, {
14
+ "label" : "Digitised by",
15
+ "value" : "Bibliothèque nationale de France"
16
+ }, {
17
+ "label" : "Source Images",
18
+ "value" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p"
19
+ }, {
20
+ "label" : "Metadata Source",
21
+ "value" : "http://oai.bnf.fr/oai2/OAIHandler?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:bnf.fr:gallica/ark:/12148/btv1b8490076p"
22
+ }, {
23
+ "label" : "Shelfmark",
24
+ "value" : "Bibliothèque nationale de France. Département des Manuscrits. Latin 2422"
25
+ }, {
26
+ "label" : "Title",
27
+ "value" : "Rabanus Maurus, In honorem sanctae Crucis [De laudibus sanctae Crucis]."
28
+ }, {
29
+ "label" : "Date",
30
+ "value" : "0822-0847"
31
+ }, {
32
+ "label" : "Language",
33
+ "value" : "latin"
34
+ }, {
35
+ "label" : "Format",
36
+ "value" : "Mayence (?). - Minuscule caroline de plusieurs mains (6 selon Spilling, 1992, suivi par Perrin; 5 d'après Vezin); les deux dernières seraient de Mayence, les autres de Fulda. — Initiales peintes. Rubriques en onciales ou capitales rustiques. - 28 carmina figurata en couleur sur fond quadrillé à la pointe sèche (carreaux env. 5 x 5 mm), dont 4 avec personnages. - Parch. - 43 f. - 365 x 280 mm (just. f. 1-31: 300 x 250 mm ; f. 32-42: 290 x 220 mm). - Piqûres sur les quatre bords, de manière à obtenir un quadrillage (f. 1-31). - Reliure ancienne de parchemin souple sur carton (le plat supérieur est fortement endommagé); avec titre noté à l'encre au dos: « Rabanus Maurus de cruce ». - Estampilles de la Bibliothèque royale (Ancien régime, avant 1735), modèle identique à Josserand-Bruno, p. 268, type B n° 5"
37
+ }, {
38
+ "label" : "Creator",
39
+ "value" : "Rabanus Maurus"
40
+ }, {
41
+ "label" : "Relation",
42
+ "value" : "Notice du catalogue : http://archivesetmanuscrits.bnf.fr/ark:/12148/cc946347"
43
+ }, {
44
+ "label" : "Type",
45
+ "value" : "Manuscript"
46
+ }, {
47
+ "label" : "Place",
48
+ "value" : "Lieu de copie : Mayence (?)"
49
+ } ],
50
+ "sequences" : [ {
51
+ "canvases" : [ {
52
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f1",
53
+ "label" : "plat supérieur",
54
+ "height" : 6044,
55
+ "width" : 4768,
56
+ "images" : [ {
57
+ "motivation" : "sc:painting",
58
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f1",
59
+ "resource" : {
60
+ "format" : "image/jpeg",
61
+ "service" : {
62
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
63
+ "@context" : "http://iiif.io/api/image/1/context.json",
64
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f1"
65
+ },
66
+ "height" : 6044,
67
+ "width" : 4768,
68
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f1/full/full/0/native.jpg",
69
+ "@type" : "dctypes:Image"
70
+ },
71
+ "@type" : "oa:Annotation"
72
+ } ],
73
+ "thumbnail" : {
74
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f1.thumbnail"
75
+ },
76
+ "@type" : "sc:Canvas"
77
+ }, {
78
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f2",
79
+ "label" : "contreplat sup.",
80
+ "height" : 6012,
81
+ "width" : 4594,
82
+ "images" : [ {
83
+ "motivation" : "sc:painting",
84
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f2",
85
+ "resource" : {
86
+ "format" : "image/jpeg",
87
+ "service" : {
88
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
89
+ "@context" : "http://iiif.io/api/image/1/context.json",
90
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f2"
91
+ },
92
+ "height" : 6012,
93
+ "width" : 4594,
94
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f2/full/full/0/native.jpg",
95
+ "@type" : "dctypes:Image"
96
+ },
97
+ "@type" : "oa:Annotation"
98
+ } ],
99
+ "thumbnail" : {
100
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f2.thumbnail"
101
+ },
102
+ "@type" : "sc:Canvas"
103
+ }, {
104
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f3",
105
+ "label" : "page de garde recto",
106
+ "height" : 5861,
107
+ "width" : 4522,
108
+ "images" : [ {
109
+ "motivation" : "sc:painting",
110
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f3",
111
+ "resource" : {
112
+ "format" : "image/jpeg",
113
+ "service" : {
114
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
115
+ "@context" : "http://iiif.io/api/image/1/context.json",
116
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f3"
117
+ },
118
+ "height" : 5861,
119
+ "width" : 4522,
120
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f3/full/full/0/native.jpg",
121
+ "@type" : "dctypes:Image"
122
+ },
123
+ "@type" : "oa:Annotation"
124
+ } ],
125
+ "thumbnail" : {
126
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f3.thumbnail"
127
+ },
128
+ "@type" : "sc:Canvas"
129
+ }, {
130
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f4",
131
+ "label" : "page de garde verso",
132
+ "height" : 5915,
133
+ "width" : 4511,
134
+ "images" : [ {
135
+ "motivation" : "sc:painting",
136
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f4",
137
+ "resource" : {
138
+ "format" : "image/jpeg",
139
+ "service" : {
140
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
141
+ "@context" : "http://iiif.io/api/image/1/context.json",
142
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f4"
143
+ },
144
+ "height" : 5915,
145
+ "width" : 4511,
146
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f4/full/full/0/native.jpg",
147
+ "@type" : "dctypes:Image"
148
+ },
149
+ "@type" : "oa:Annotation"
150
+ } ],
151
+ "thumbnail" : {
152
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f4.thumbnail"
153
+ },
154
+ "@type" : "sc:Canvas"
155
+ }, {
156
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f5",
157
+ "label" : "page de garde recto",
158
+ "height" : 5833,
159
+ "width" : 4522,
160
+ "images" : [ {
161
+ "motivation" : "sc:painting",
162
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f5",
163
+ "resource" : {
164
+ "format" : "image/jpeg",
165
+ "service" : {
166
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
167
+ "@context" : "http://iiif.io/api/image/1/context.json",
168
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f5"
169
+ },
170
+ "height" : 5833,
171
+ "width" : 4522,
172
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f5/full/full/0/native.jpg",
173
+ "@type" : "dctypes:Image"
174
+ },
175
+ "@type" : "oa:Annotation"
176
+ } ],
177
+ "thumbnail" : {
178
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f5.thumbnail"
179
+ },
180
+ "@type" : "sc:Canvas"
181
+ }, {
182
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f6",
183
+ "label" : "page de garde verso",
184
+ "height" : 5915,
185
+ "width" : 4511,
186
+ "images" : [ {
187
+ "motivation" : "sc:painting",
188
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f6",
189
+ "resource" : {
190
+ "format" : "image/jpeg",
191
+ "service" : {
192
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
193
+ "@context" : "http://iiif.io/api/image/1/context.json",
194
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f6"
195
+ },
196
+ "height" : 5915,
197
+ "width" : 4511,
198
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f6/full/full/0/native.jpg",
199
+ "@type" : "dctypes:Image"
200
+ },
201
+ "@type" : "oa:Annotation"
202
+ } ],
203
+ "thumbnail" : {
204
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f6.thumbnail"
205
+ },
206
+ "@type" : "sc:Canvas"
207
+ }, {
208
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f7",
209
+ "label" : "page de garde recto",
210
+ "height" : 5833,
211
+ "width" : 4522,
212
+ "images" : [ {
213
+ "motivation" : "sc:painting",
214
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f7",
215
+ "resource" : {
216
+ "format" : "image/jpeg",
217
+ "service" : {
218
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
219
+ "@context" : "http://iiif.io/api/image/1/context.json",
220
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f7"
221
+ },
222
+ "height" : 5833,
223
+ "width" : 4522,
224
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f7/full/full/0/native.jpg",
225
+ "@type" : "dctypes:Image"
226
+ },
227
+ "@type" : "oa:Annotation"
228
+ } ],
229
+ "thumbnail" : {
230
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f7.thumbnail"
231
+ },
232
+ "@type" : "sc:Canvas"
233
+ }, {
234
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f8",
235
+ "label" : "page de garde verso",
236
+ "height" : 5915,
237
+ "width" : 4511,
238
+ "images" : [ {
239
+ "motivation" : "sc:painting",
240
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f8",
241
+ "resource" : {
242
+ "format" : "image/jpeg",
243
+ "service" : {
244
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
245
+ "@context" : "http://iiif.io/api/image/1/context.json",
246
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f8"
247
+ },
248
+ "height" : 5915,
249
+ "width" : 4511,
250
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f8/full/full/0/native.jpg",
251
+ "@type" : "dctypes:Image"
252
+ },
253
+ "@type" : "oa:Annotation"
254
+ } ],
255
+ "thumbnail" : {
256
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f8.thumbnail"
257
+ },
258
+ "@type" : "sc:Canvas"
259
+ }, {
260
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f9",
261
+ "label" : "1r",
262
+ "height" : 5833,
263
+ "width" : 4522,
264
+ "images" : [ {
265
+ "motivation" : "sc:painting",
266
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f9",
267
+ "resource" : {
268
+ "format" : "image/jpeg",
269
+ "service" : {
270
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
271
+ "@context" : "http://iiif.io/api/image/1/context.json",
272
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f9"
273
+ },
274
+ "height" : 5833,
275
+ "width" : 4522,
276
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f9/full/full/0/native.jpg",
277
+ "@type" : "dctypes:Image"
278
+ },
279
+ "@type" : "oa:Annotation"
280
+ } ],
281
+ "thumbnail" : {
282
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f9.thumbnail"
283
+ },
284
+ "@type" : "sc:Canvas"
285
+ }, {
286
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f10",
287
+ "label" : "1v",
288
+ "height" : 5881,
289
+ "width" : 4511,
290
+ "images" : [ {
291
+ "motivation" : "sc:painting",
292
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f10",
293
+ "resource" : {
294
+ "format" : "image/jpeg",
295
+ "service" : {
296
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
297
+ "@context" : "http://iiif.io/api/image/1/context.json",
298
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f10"
299
+ },
300
+ "height" : 5881,
301
+ "width" : 4511,
302
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f10/full/full/0/native.jpg",
303
+ "@type" : "dctypes:Image"
304
+ },
305
+ "@type" : "oa:Annotation"
306
+ } ],
307
+ "thumbnail" : {
308
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f10.thumbnail"
309
+ },
310
+ "@type" : "sc:Canvas"
311
+ }, {
312
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f11",
313
+ "label" : "2r",
314
+ "height" : 5881,
315
+ "width" : 4511,
316
+ "images" : [ {
317
+ "motivation" : "sc:painting",
318
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f11",
319
+ "resource" : {
320
+ "format" : "image/jpeg",
321
+ "service" : {
322
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
323
+ "@context" : "http://iiif.io/api/image/1/context.json",
324
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f11"
325
+ },
326
+ "height" : 5881,
327
+ "width" : 4511,
328
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f11/full/full/0/native.jpg",
329
+ "@type" : "dctypes:Image"
330
+ },
331
+ "@type" : "oa:Annotation"
332
+ } ],
333
+ "thumbnail" : {
334
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f11.thumbnail"
335
+ },
336
+ "@type" : "sc:Canvas"
337
+ }, {
338
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f12",
339
+ "label" : "2v",
340
+ "height" : 5881,
341
+ "width" : 4511,
342
+ "images" : [ {
343
+ "motivation" : "sc:painting",
344
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f12",
345
+ "resource" : {
346
+ "format" : "image/jpeg",
347
+ "service" : {
348
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
349
+ "@context" : "http://iiif.io/api/image/1/context.json",
350
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f12"
351
+ },
352
+ "height" : 5881,
353
+ "width" : 4511,
354
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f12/full/full/0/native.jpg",
355
+ "@type" : "dctypes:Image"
356
+ },
357
+ "@type" : "oa:Annotation"
358
+ } ],
359
+ "thumbnail" : {
360
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f12.thumbnail"
361
+ },
362
+ "@type" : "sc:Canvas"
363
+ }, {
364
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f13",
365
+ "label" : "3r",
366
+ "height" : 5881,
367
+ "width" : 4511,
368
+ "images" : [ {
369
+ "motivation" : "sc:painting",
370
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f13",
371
+ "resource" : {
372
+ "format" : "image/jpeg",
373
+ "service" : {
374
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
375
+ "@context" : "http://iiif.io/api/image/1/context.json",
376
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f13"
377
+ },
378
+ "height" : 5881,
379
+ "width" : 4511,
380
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f13/full/full/0/native.jpg",
381
+ "@type" : "dctypes:Image"
382
+ },
383
+ "@type" : "oa:Annotation"
384
+ } ],
385
+ "thumbnail" : {
386
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f13.thumbnail"
387
+ },
388
+ "@type" : "sc:Canvas"
389
+ }, {
390
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f14",
391
+ "label" : "3v",
392
+ "height" : 5881,
393
+ "width" : 4511,
394
+ "images" : [ {
395
+ "motivation" : "sc:painting",
396
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f14",
397
+ "resource" : {
398
+ "format" : "image/jpeg",
399
+ "service" : {
400
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
401
+ "@context" : "http://iiif.io/api/image/1/context.json",
402
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f14"
403
+ },
404
+ "height" : 5881,
405
+ "width" : 4511,
406
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f14/full/full/0/native.jpg",
407
+ "@type" : "dctypes:Image"
408
+ },
409
+ "@type" : "oa:Annotation"
410
+ } ],
411
+ "thumbnail" : {
412
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f14.thumbnail"
413
+ },
414
+ "@type" : "sc:Canvas"
415
+ }, {
416
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f15",
417
+ "label" : "4r",
418
+ "height" : 5833,
419
+ "width" : 4522,
420
+ "images" : [ {
421
+ "motivation" : "sc:painting",
422
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f15",
423
+ "resource" : {
424
+ "format" : "image/jpeg",
425
+ "service" : {
426
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
427
+ "@context" : "http://iiif.io/api/image/1/context.json",
428
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f15"
429
+ },
430
+ "height" : 5833,
431
+ "width" : 4522,
432
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f15/full/full/0/native.jpg",
433
+ "@type" : "dctypes:Image"
434
+ },
435
+ "@type" : "oa:Annotation"
436
+ } ],
437
+ "thumbnail" : {
438
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f15.thumbnail"
439
+ },
440
+ "@type" : "sc:Canvas"
441
+ }, {
442
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f16",
443
+ "label" : "4v",
444
+ "height" : 5881,
445
+ "width" : 4511,
446
+ "images" : [ {
447
+ "motivation" : "sc:painting",
448
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f16",
449
+ "resource" : {
450
+ "format" : "image/jpeg",
451
+ "service" : {
452
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
453
+ "@context" : "http://iiif.io/api/image/1/context.json",
454
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f16"
455
+ },
456
+ "height" : 5881,
457
+ "width" : 4511,
458
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f16/full/full/0/native.jpg",
459
+ "@type" : "dctypes:Image"
460
+ },
461
+ "@type" : "oa:Annotation"
462
+ } ],
463
+ "thumbnail" : {
464
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f16.thumbnail"
465
+ },
466
+ "@type" : "sc:Canvas"
467
+ }, {
468
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f17",
469
+ "label" : "5r",
470
+ "height" : 5833,
471
+ "width" : 4522,
472
+ "images" : [ {
473
+ "motivation" : "sc:painting",
474
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f17",
475
+ "resource" : {
476
+ "format" : "image/jpeg",
477
+ "service" : {
478
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
479
+ "@context" : "http://iiif.io/api/image/1/context.json",
480
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f17"
481
+ },
482
+ "height" : 5833,
483
+ "width" : 4522,
484
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f17/full/full/0/native.jpg",
485
+ "@type" : "dctypes:Image"
486
+ },
487
+ "@type" : "oa:Annotation"
488
+ } ],
489
+ "thumbnail" : {
490
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f17.thumbnail"
491
+ },
492
+ "@type" : "sc:Canvas"
493
+ }, {
494
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f18",
495
+ "label" : "5v",
496
+ "height" : 5827,
497
+ "width" : 4511,
498
+ "images" : [ {
499
+ "motivation" : "sc:painting",
500
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f18",
501
+ "resource" : {
502
+ "format" : "image/jpeg",
503
+ "service" : {
504
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
505
+ "@context" : "http://iiif.io/api/image/1/context.json",
506
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f18"
507
+ },
508
+ "height" : 5827,
509
+ "width" : 4511,
510
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f18/full/full/0/native.jpg",
511
+ "@type" : "dctypes:Image"
512
+ },
513
+ "@type" : "oa:Annotation"
514
+ } ],
515
+ "thumbnail" : {
516
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f18.thumbnail"
517
+ },
518
+ "@type" : "sc:Canvas"
519
+ }, {
520
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f19",
521
+ "label" : "6r",
522
+ "height" : 5804,
523
+ "width" : 4505,
524
+ "images" : [ {
525
+ "motivation" : "sc:painting",
526
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f19",
527
+ "resource" : {
528
+ "format" : "image/jpeg",
529
+ "service" : {
530
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
531
+ "@context" : "http://iiif.io/api/image/1/context.json",
532
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f19"
533
+ },
534
+ "height" : 5804,
535
+ "width" : 4505,
536
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f19/full/full/0/native.jpg",
537
+ "@type" : "dctypes:Image"
538
+ },
539
+ "@type" : "oa:Annotation"
540
+ } ],
541
+ "thumbnail" : {
542
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f19.thumbnail"
543
+ },
544
+ "@type" : "sc:Canvas"
545
+ }, {
546
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f20",
547
+ "label" : "6v",
548
+ "height" : 5827,
549
+ "width" : 4449,
550
+ "images" : [ {
551
+ "motivation" : "sc:painting",
552
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f20",
553
+ "resource" : {
554
+ "format" : "image/jpeg",
555
+ "service" : {
556
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
557
+ "@context" : "http://iiif.io/api/image/1/context.json",
558
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f20"
559
+ },
560
+ "height" : 5827,
561
+ "width" : 4449,
562
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f20/full/full/0/native.jpg",
563
+ "@type" : "dctypes:Image"
564
+ },
565
+ "@type" : "oa:Annotation"
566
+ } ],
567
+ "thumbnail" : {
568
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f20.thumbnail"
569
+ },
570
+ "@type" : "sc:Canvas"
571
+ }, {
572
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f21",
573
+ "label" : "7r",
574
+ "height" : 5829,
575
+ "width" : 4470,
576
+ "images" : [ {
577
+ "motivation" : "sc:painting",
578
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f21",
579
+ "resource" : {
580
+ "format" : "image/jpeg",
581
+ "service" : {
582
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
583
+ "@context" : "http://iiif.io/api/image/1/context.json",
584
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f21"
585
+ },
586
+ "height" : 5829,
587
+ "width" : 4470,
588
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f21/full/full/0/native.jpg",
589
+ "@type" : "dctypes:Image"
590
+ },
591
+ "@type" : "oa:Annotation"
592
+ } ],
593
+ "thumbnail" : {
594
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f21.thumbnail"
595
+ },
596
+ "@type" : "sc:Canvas"
597
+ }, {
598
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f22",
599
+ "label" : "7v",
600
+ "height" : 5827,
601
+ "width" : 4416,
602
+ "images" : [ {
603
+ "motivation" : "sc:painting",
604
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f22",
605
+ "resource" : {
606
+ "format" : "image/jpeg",
607
+ "service" : {
608
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
609
+ "@context" : "http://iiif.io/api/image/1/context.json",
610
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f22"
611
+ },
612
+ "height" : 5827,
613
+ "width" : 4416,
614
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f22/full/full/0/native.jpg",
615
+ "@type" : "dctypes:Image"
616
+ },
617
+ "@type" : "oa:Annotation"
618
+ } ],
619
+ "thumbnail" : {
620
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f22.thumbnail"
621
+ },
622
+ "@type" : "sc:Canvas"
623
+ }, {
624
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f23",
625
+ "label" : "8r",
626
+ "height" : 5829,
627
+ "width" : 4470,
628
+ "images" : [ {
629
+ "motivation" : "sc:painting",
630
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f23",
631
+ "resource" : {
632
+ "format" : "image/jpeg",
633
+ "service" : {
634
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
635
+ "@context" : "http://iiif.io/api/image/1/context.json",
636
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f23"
637
+ },
638
+ "height" : 5829,
639
+ "width" : 4470,
640
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f23/full/full/0/native.jpg",
641
+ "@type" : "dctypes:Image"
642
+ },
643
+ "@type" : "oa:Annotation"
644
+ } ],
645
+ "thumbnail" : {
646
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f23.thumbnail"
647
+ },
648
+ "@type" : "sc:Canvas"
649
+ }, {
650
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f24",
651
+ "label" : "8v",
652
+ "height" : 5827,
653
+ "width" : 4416,
654
+ "images" : [ {
655
+ "motivation" : "sc:painting",
656
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f24",
657
+ "resource" : {
658
+ "format" : "image/jpeg",
659
+ "service" : {
660
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
661
+ "@context" : "http://iiif.io/api/image/1/context.json",
662
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f24"
663
+ },
664
+ "height" : 5827,
665
+ "width" : 4416,
666
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f24/full/full/0/native.jpg",
667
+ "@type" : "dctypes:Image"
668
+ },
669
+ "@type" : "oa:Annotation"
670
+ } ],
671
+ "thumbnail" : {
672
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f24.thumbnail"
673
+ },
674
+ "@type" : "sc:Canvas"
675
+ }, {
676
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f25",
677
+ "label" : "9r",
678
+ "height" : 5829,
679
+ "width" : 4470,
680
+ "images" : [ {
681
+ "motivation" : "sc:painting",
682
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f25",
683
+ "resource" : {
684
+ "format" : "image/jpeg",
685
+ "service" : {
686
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
687
+ "@context" : "http://iiif.io/api/image/1/context.json",
688
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f25"
689
+ },
690
+ "height" : 5829,
691
+ "width" : 4470,
692
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f25/full/full/0/native.jpg",
693
+ "@type" : "dctypes:Image"
694
+ },
695
+ "@type" : "oa:Annotation"
696
+ } ],
697
+ "thumbnail" : {
698
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f25.thumbnail"
699
+ },
700
+ "@type" : "sc:Canvas"
701
+ }, {
702
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f26",
703
+ "label" : "9v",
704
+ "height" : 5827,
705
+ "width" : 4416,
706
+ "images" : [ {
707
+ "motivation" : "sc:painting",
708
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f26",
709
+ "resource" : {
710
+ "format" : "image/jpeg",
711
+ "service" : {
712
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
713
+ "@context" : "http://iiif.io/api/image/1/context.json",
714
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f26"
715
+ },
716
+ "height" : 5827,
717
+ "width" : 4416,
718
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f26/full/full/0/native.jpg",
719
+ "@type" : "dctypes:Image"
720
+ },
721
+ "@type" : "oa:Annotation"
722
+ } ],
723
+ "thumbnail" : {
724
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f26.thumbnail"
725
+ },
726
+ "@type" : "sc:Canvas"
727
+ }, {
728
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f27",
729
+ "label" : "10r",
730
+ "height" : 5829,
731
+ "width" : 4470,
732
+ "images" : [ {
733
+ "motivation" : "sc:painting",
734
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f27",
735
+ "resource" : {
736
+ "format" : "image/jpeg",
737
+ "service" : {
738
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
739
+ "@context" : "http://iiif.io/api/image/1/context.json",
740
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f27"
741
+ },
742
+ "height" : 5829,
743
+ "width" : 4470,
744
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f27/full/full/0/native.jpg",
745
+ "@type" : "dctypes:Image"
746
+ },
747
+ "@type" : "oa:Annotation"
748
+ } ],
749
+ "thumbnail" : {
750
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f27.thumbnail"
751
+ },
752
+ "@type" : "sc:Canvas"
753
+ }, {
754
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f28",
755
+ "label" : "10v",
756
+ "height" : 5827,
757
+ "width" : 4416,
758
+ "images" : [ {
759
+ "motivation" : "sc:painting",
760
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f28",
761
+ "resource" : {
762
+ "format" : "image/jpeg",
763
+ "service" : {
764
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
765
+ "@context" : "http://iiif.io/api/image/1/context.json",
766
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f28"
767
+ },
768
+ "height" : 5827,
769
+ "width" : 4416,
770
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f28/full/full/0/native.jpg",
771
+ "@type" : "dctypes:Image"
772
+ },
773
+ "@type" : "oa:Annotation"
774
+ } ],
775
+ "thumbnail" : {
776
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f28.thumbnail"
777
+ },
778
+ "@type" : "sc:Canvas"
779
+ }, {
780
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f29",
781
+ "label" : "11r",
782
+ "height" : 5858,
783
+ "width" : 4470,
784
+ "images" : [ {
785
+ "motivation" : "sc:painting",
786
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f29",
787
+ "resource" : {
788
+ "format" : "image/jpeg",
789
+ "service" : {
790
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
791
+ "@context" : "http://iiif.io/api/image/1/context.json",
792
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f29"
793
+ },
794
+ "height" : 5858,
795
+ "width" : 4470,
796
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f29/full/full/0/native.jpg",
797
+ "@type" : "dctypes:Image"
798
+ },
799
+ "@type" : "oa:Annotation"
800
+ } ],
801
+ "thumbnail" : {
802
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f29.thumbnail"
803
+ },
804
+ "@type" : "sc:Canvas"
805
+ }, {
806
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f30",
807
+ "label" : "11v",
808
+ "height" : 5827,
809
+ "width" : 4416,
810
+ "images" : [ {
811
+ "motivation" : "sc:painting",
812
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f30",
813
+ "resource" : {
814
+ "format" : "image/jpeg",
815
+ "service" : {
816
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
817
+ "@context" : "http://iiif.io/api/image/1/context.json",
818
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f30"
819
+ },
820
+ "height" : 5827,
821
+ "width" : 4416,
822
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f30/full/full/0/native.jpg",
823
+ "@type" : "dctypes:Image"
824
+ },
825
+ "@type" : "oa:Annotation"
826
+ } ],
827
+ "thumbnail" : {
828
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f30.thumbnail"
829
+ },
830
+ "@type" : "sc:Canvas"
831
+ }, {
832
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f31",
833
+ "label" : "12r",
834
+ "height" : 5818,
835
+ "width" : 4470,
836
+ "images" : [ {
837
+ "motivation" : "sc:painting",
838
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f31",
839
+ "resource" : {
840
+ "format" : "image/jpeg",
841
+ "service" : {
842
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
843
+ "@context" : "http://iiif.io/api/image/1/context.json",
844
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f31"
845
+ },
846
+ "height" : 5818,
847
+ "width" : 4470,
848
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f31/full/full/0/native.jpg",
849
+ "@type" : "dctypes:Image"
850
+ },
851
+ "@type" : "oa:Annotation"
852
+ } ],
853
+ "thumbnail" : {
854
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f31.thumbnail"
855
+ },
856
+ "@type" : "sc:Canvas"
857
+ }, {
858
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f32",
859
+ "label" : "12v",
860
+ "height" : 5827,
861
+ "width" : 4450,
862
+ "images" : [ {
863
+ "motivation" : "sc:painting",
864
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f32",
865
+ "resource" : {
866
+ "format" : "image/jpeg",
867
+ "service" : {
868
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
869
+ "@context" : "http://iiif.io/api/image/1/context.json",
870
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f32"
871
+ },
872
+ "height" : 5827,
873
+ "width" : 4450,
874
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f32/full/full/0/native.jpg",
875
+ "@type" : "dctypes:Image"
876
+ },
877
+ "@type" : "oa:Annotation"
878
+ } ],
879
+ "thumbnail" : {
880
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f32.thumbnail"
881
+ },
882
+ "@type" : "sc:Canvas"
883
+ }, {
884
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f33",
885
+ "label" : "13r",
886
+ "height" : 5804,
887
+ "width" : 4544,
888
+ "images" : [ {
889
+ "motivation" : "sc:painting",
890
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f33",
891
+ "resource" : {
892
+ "format" : "image/jpeg",
893
+ "service" : {
894
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
895
+ "@context" : "http://iiif.io/api/image/1/context.json",
896
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f33"
897
+ },
898
+ "height" : 5804,
899
+ "width" : 4544,
900
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f33/full/full/0/native.jpg",
901
+ "@type" : "dctypes:Image"
902
+ },
903
+ "@type" : "oa:Annotation"
904
+ } ],
905
+ "thumbnail" : {
906
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f33.thumbnail"
907
+ },
908
+ "@type" : "sc:Canvas"
909
+ }, {
910
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f34",
911
+ "label" : "13v",
912
+ "height" : 5827,
913
+ "width" : 4450,
914
+ "images" : [ {
915
+ "motivation" : "sc:painting",
916
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f34",
917
+ "resource" : {
918
+ "format" : "image/jpeg",
919
+ "service" : {
920
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
921
+ "@context" : "http://iiif.io/api/image/1/context.json",
922
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f34"
923
+ },
924
+ "height" : 5827,
925
+ "width" : 4450,
926
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f34/full/full/0/native.jpg",
927
+ "@type" : "dctypes:Image"
928
+ },
929
+ "@type" : "oa:Annotation"
930
+ } ],
931
+ "thumbnail" : {
932
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f34.thumbnail"
933
+ },
934
+ "@type" : "sc:Canvas"
935
+ }, {
936
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f35",
937
+ "label" : "14r",
938
+ "height" : 5897,
939
+ "width" : 4470,
940
+ "images" : [ {
941
+ "motivation" : "sc:painting",
942
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f35",
943
+ "resource" : {
944
+ "format" : "image/jpeg",
945
+ "service" : {
946
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
947
+ "@context" : "http://iiif.io/api/image/1/context.json",
948
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f35"
949
+ },
950
+ "height" : 5897,
951
+ "width" : 4470,
952
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f35/full/full/0/native.jpg",
953
+ "@type" : "dctypes:Image"
954
+ },
955
+ "@type" : "oa:Annotation"
956
+ } ],
957
+ "thumbnail" : {
958
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f35.thumbnail"
959
+ },
960
+ "@type" : "sc:Canvas"
961
+ }, {
962
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f36",
963
+ "label" : "14v",
964
+ "height" : 5808,
965
+ "width" : 4470,
966
+ "images" : [ {
967
+ "motivation" : "sc:painting",
968
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f36",
969
+ "resource" : {
970
+ "format" : "image/jpeg",
971
+ "service" : {
972
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
973
+ "@context" : "http://iiif.io/api/image/1/context.json",
974
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f36"
975
+ },
976
+ "height" : 5808,
977
+ "width" : 4470,
978
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f36/full/full/0/native.jpg",
979
+ "@type" : "dctypes:Image"
980
+ },
981
+ "@type" : "oa:Annotation"
982
+ } ],
983
+ "thumbnail" : {
984
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f36.thumbnail"
985
+ },
986
+ "@type" : "sc:Canvas"
987
+ }, {
988
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f37",
989
+ "label" : "15r",
990
+ "height" : 5897,
991
+ "width" : 4470,
992
+ "images" : [ {
993
+ "motivation" : "sc:painting",
994
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f37",
995
+ "resource" : {
996
+ "format" : "image/jpeg",
997
+ "service" : {
998
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
999
+ "@context" : "http://iiif.io/api/image/1/context.json",
1000
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f37"
1001
+ },
1002
+ "height" : 5897,
1003
+ "width" : 4470,
1004
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f37/full/full/0/native.jpg",
1005
+ "@type" : "dctypes:Image"
1006
+ },
1007
+ "@type" : "oa:Annotation"
1008
+ } ],
1009
+ "thumbnail" : {
1010
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f37.thumbnail"
1011
+ },
1012
+ "@type" : "sc:Canvas"
1013
+ }, {
1014
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f38",
1015
+ "label" : "15v",
1016
+ "height" : 5808,
1017
+ "width" : 4470,
1018
+ "images" : [ {
1019
+ "motivation" : "sc:painting",
1020
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f38",
1021
+ "resource" : {
1022
+ "format" : "image/jpeg",
1023
+ "service" : {
1024
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1025
+ "@context" : "http://iiif.io/api/image/1/context.json",
1026
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f38"
1027
+ },
1028
+ "height" : 5808,
1029
+ "width" : 4470,
1030
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f38/full/full/0/native.jpg",
1031
+ "@type" : "dctypes:Image"
1032
+ },
1033
+ "@type" : "oa:Annotation"
1034
+ } ],
1035
+ "thumbnail" : {
1036
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f38.thumbnail"
1037
+ },
1038
+ "@type" : "sc:Canvas"
1039
+ }, {
1040
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f39",
1041
+ "label" : "16r",
1042
+ "height" : 5804,
1043
+ "width" : 4544,
1044
+ "images" : [ {
1045
+ "motivation" : "sc:painting",
1046
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f39",
1047
+ "resource" : {
1048
+ "format" : "image/jpeg",
1049
+ "service" : {
1050
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1051
+ "@context" : "http://iiif.io/api/image/1/context.json",
1052
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f39"
1053
+ },
1054
+ "height" : 5804,
1055
+ "width" : 4544,
1056
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f39/full/full/0/native.jpg",
1057
+ "@type" : "dctypes:Image"
1058
+ },
1059
+ "@type" : "oa:Annotation"
1060
+ } ],
1061
+ "thumbnail" : {
1062
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f39.thumbnail"
1063
+ },
1064
+ "@type" : "sc:Canvas"
1065
+ }, {
1066
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f40",
1067
+ "label" : "16v",
1068
+ "height" : 5808,
1069
+ "width" : 4470,
1070
+ "images" : [ {
1071
+ "motivation" : "sc:painting",
1072
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f40",
1073
+ "resource" : {
1074
+ "format" : "image/jpeg",
1075
+ "service" : {
1076
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1077
+ "@context" : "http://iiif.io/api/image/1/context.json",
1078
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f40"
1079
+ },
1080
+ "height" : 5808,
1081
+ "width" : 4470,
1082
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f40/full/full/0/native.jpg",
1083
+ "@type" : "dctypes:Image"
1084
+ },
1085
+ "@type" : "oa:Annotation"
1086
+ } ],
1087
+ "thumbnail" : {
1088
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f40.thumbnail"
1089
+ },
1090
+ "@type" : "sc:Canvas"
1091
+ }, {
1092
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f41",
1093
+ "label" : "17r",
1094
+ "height" : 5804,
1095
+ "width" : 4544,
1096
+ "images" : [ {
1097
+ "motivation" : "sc:painting",
1098
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f41",
1099
+ "resource" : {
1100
+ "format" : "image/jpeg",
1101
+ "service" : {
1102
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1103
+ "@context" : "http://iiif.io/api/image/1/context.json",
1104
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f41"
1105
+ },
1106
+ "height" : 5804,
1107
+ "width" : 4544,
1108
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f41/full/full/0/native.jpg",
1109
+ "@type" : "dctypes:Image"
1110
+ },
1111
+ "@type" : "oa:Annotation"
1112
+ } ],
1113
+ "thumbnail" : {
1114
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f41.thumbnail"
1115
+ },
1116
+ "@type" : "sc:Canvas"
1117
+ }, {
1118
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f42",
1119
+ "label" : "17v",
1120
+ "height" : 5808,
1121
+ "width" : 4470,
1122
+ "images" : [ {
1123
+ "motivation" : "sc:painting",
1124
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f42",
1125
+ "resource" : {
1126
+ "format" : "image/jpeg",
1127
+ "service" : {
1128
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1129
+ "@context" : "http://iiif.io/api/image/1/context.json",
1130
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f42"
1131
+ },
1132
+ "height" : 5808,
1133
+ "width" : 4470,
1134
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f42/full/full/0/native.jpg",
1135
+ "@type" : "dctypes:Image"
1136
+ },
1137
+ "@type" : "oa:Annotation"
1138
+ } ],
1139
+ "thumbnail" : {
1140
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f42.thumbnail"
1141
+ },
1142
+ "@type" : "sc:Canvas"
1143
+ }, {
1144
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f43",
1145
+ "label" : "18r",
1146
+ "height" : 5804,
1147
+ "width" : 4544,
1148
+ "images" : [ {
1149
+ "motivation" : "sc:painting",
1150
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f43",
1151
+ "resource" : {
1152
+ "format" : "image/jpeg",
1153
+ "service" : {
1154
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1155
+ "@context" : "http://iiif.io/api/image/1/context.json",
1156
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f43"
1157
+ },
1158
+ "height" : 5804,
1159
+ "width" : 4544,
1160
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f43/full/full/0/native.jpg",
1161
+ "@type" : "dctypes:Image"
1162
+ },
1163
+ "@type" : "oa:Annotation"
1164
+ } ],
1165
+ "thumbnail" : {
1166
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f43.thumbnail"
1167
+ },
1168
+ "@type" : "sc:Canvas"
1169
+ }, {
1170
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f44",
1171
+ "label" : "18v",
1172
+ "height" : 5808,
1173
+ "width" : 4470,
1174
+ "images" : [ {
1175
+ "motivation" : "sc:painting",
1176
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f44",
1177
+ "resource" : {
1178
+ "format" : "image/jpeg",
1179
+ "service" : {
1180
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1181
+ "@context" : "http://iiif.io/api/image/1/context.json",
1182
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f44"
1183
+ },
1184
+ "height" : 5808,
1185
+ "width" : 4470,
1186
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f44/full/full/0/native.jpg",
1187
+ "@type" : "dctypes:Image"
1188
+ },
1189
+ "@type" : "oa:Annotation"
1190
+ } ],
1191
+ "thumbnail" : {
1192
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f44.thumbnail"
1193
+ },
1194
+ "@type" : "sc:Canvas"
1195
+ }, {
1196
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f45",
1197
+ "label" : "19r",
1198
+ "height" : 5804,
1199
+ "width" : 4544,
1200
+ "images" : [ {
1201
+ "motivation" : "sc:painting",
1202
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f45",
1203
+ "resource" : {
1204
+ "format" : "image/jpeg",
1205
+ "service" : {
1206
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1207
+ "@context" : "http://iiif.io/api/image/1/context.json",
1208
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f45"
1209
+ },
1210
+ "height" : 5804,
1211
+ "width" : 4544,
1212
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f45/full/full/0/native.jpg",
1213
+ "@type" : "dctypes:Image"
1214
+ },
1215
+ "@type" : "oa:Annotation"
1216
+ } ],
1217
+ "thumbnail" : {
1218
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f45.thumbnail"
1219
+ },
1220
+ "@type" : "sc:Canvas"
1221
+ }, {
1222
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f46",
1223
+ "label" : "19v",
1224
+ "height" : 5754,
1225
+ "width" : 4463,
1226
+ "images" : [ {
1227
+ "motivation" : "sc:painting",
1228
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f46",
1229
+ "resource" : {
1230
+ "format" : "image/jpeg",
1231
+ "service" : {
1232
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1233
+ "@context" : "http://iiif.io/api/image/1/context.json",
1234
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f46"
1235
+ },
1236
+ "height" : 5754,
1237
+ "width" : 4463,
1238
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f46/full/full/0/native.jpg",
1239
+ "@type" : "dctypes:Image"
1240
+ },
1241
+ "@type" : "oa:Annotation"
1242
+ } ],
1243
+ "thumbnail" : {
1244
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f46.thumbnail"
1245
+ },
1246
+ "@type" : "sc:Canvas"
1247
+ }, {
1248
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f47",
1249
+ "label" : "20r",
1250
+ "height" : 5841,
1251
+ "width" : 4509,
1252
+ "images" : [ {
1253
+ "motivation" : "sc:painting",
1254
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f47",
1255
+ "resource" : {
1256
+ "format" : "image/jpeg",
1257
+ "service" : {
1258
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1259
+ "@context" : "http://iiif.io/api/image/1/context.json",
1260
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f47"
1261
+ },
1262
+ "height" : 5841,
1263
+ "width" : 4509,
1264
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f47/full/full/0/native.jpg",
1265
+ "@type" : "dctypes:Image"
1266
+ },
1267
+ "@type" : "oa:Annotation"
1268
+ } ],
1269
+ "thumbnail" : {
1270
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f47.thumbnail"
1271
+ },
1272
+ "@type" : "sc:Canvas"
1273
+ }, {
1274
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f48",
1275
+ "label" : "20v",
1276
+ "height" : 5754,
1277
+ "width" : 4438,
1278
+ "images" : [ {
1279
+ "motivation" : "sc:painting",
1280
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f48",
1281
+ "resource" : {
1282
+ "format" : "image/jpeg",
1283
+ "service" : {
1284
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1285
+ "@context" : "http://iiif.io/api/image/1/context.json",
1286
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f48"
1287
+ },
1288
+ "height" : 5754,
1289
+ "width" : 4438,
1290
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f48/full/full/0/native.jpg",
1291
+ "@type" : "dctypes:Image"
1292
+ },
1293
+ "@type" : "oa:Annotation"
1294
+ } ],
1295
+ "thumbnail" : {
1296
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f48.thumbnail"
1297
+ },
1298
+ "@type" : "sc:Canvas"
1299
+ }, {
1300
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f49",
1301
+ "label" : "21r",
1302
+ "height" : 5873,
1303
+ "width" : 4509,
1304
+ "images" : [ {
1305
+ "motivation" : "sc:painting",
1306
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f49",
1307
+ "resource" : {
1308
+ "format" : "image/jpeg",
1309
+ "service" : {
1310
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1311
+ "@context" : "http://iiif.io/api/image/1/context.json",
1312
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f49"
1313
+ },
1314
+ "height" : 5873,
1315
+ "width" : 4509,
1316
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f49/full/full/0/native.jpg",
1317
+ "@type" : "dctypes:Image"
1318
+ },
1319
+ "@type" : "oa:Annotation"
1320
+ } ],
1321
+ "thumbnail" : {
1322
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f49.thumbnail"
1323
+ },
1324
+ "@type" : "sc:Canvas"
1325
+ }, {
1326
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f50",
1327
+ "label" : "21v",
1328
+ "height" : 5754,
1329
+ "width" : 4438,
1330
+ "images" : [ {
1331
+ "motivation" : "sc:painting",
1332
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f50",
1333
+ "resource" : {
1334
+ "format" : "image/jpeg",
1335
+ "service" : {
1336
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1337
+ "@context" : "http://iiif.io/api/image/1/context.json",
1338
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f50"
1339
+ },
1340
+ "height" : 5754,
1341
+ "width" : 4438,
1342
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f50/full/full/0/native.jpg",
1343
+ "@type" : "dctypes:Image"
1344
+ },
1345
+ "@type" : "oa:Annotation"
1346
+ } ],
1347
+ "thumbnail" : {
1348
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f50.thumbnail"
1349
+ },
1350
+ "@type" : "sc:Canvas"
1351
+ }, {
1352
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f51",
1353
+ "label" : "22r",
1354
+ "height" : 5873,
1355
+ "width" : 4509,
1356
+ "images" : [ {
1357
+ "motivation" : "sc:painting",
1358
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f51",
1359
+ "resource" : {
1360
+ "format" : "image/jpeg",
1361
+ "service" : {
1362
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1363
+ "@context" : "http://iiif.io/api/image/1/context.json",
1364
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f51"
1365
+ },
1366
+ "height" : 5873,
1367
+ "width" : 4509,
1368
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f51/full/full/0/native.jpg",
1369
+ "@type" : "dctypes:Image"
1370
+ },
1371
+ "@type" : "oa:Annotation"
1372
+ } ],
1373
+ "thumbnail" : {
1374
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f51.thumbnail"
1375
+ },
1376
+ "@type" : "sc:Canvas"
1377
+ }, {
1378
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f52",
1379
+ "label" : "22v",
1380
+ "height" : 5777,
1381
+ "width" : 4438,
1382
+ "images" : [ {
1383
+ "motivation" : "sc:painting",
1384
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f52",
1385
+ "resource" : {
1386
+ "format" : "image/jpeg",
1387
+ "service" : {
1388
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1389
+ "@context" : "http://iiif.io/api/image/1/context.json",
1390
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f52"
1391
+ },
1392
+ "height" : 5777,
1393
+ "width" : 4438,
1394
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f52/full/full/0/native.jpg",
1395
+ "@type" : "dctypes:Image"
1396
+ },
1397
+ "@type" : "oa:Annotation"
1398
+ } ],
1399
+ "thumbnail" : {
1400
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f52.thumbnail"
1401
+ },
1402
+ "@type" : "sc:Canvas"
1403
+ }, {
1404
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f53",
1405
+ "label" : "23r",
1406
+ "height" : 5873,
1407
+ "width" : 4509,
1408
+ "images" : [ {
1409
+ "motivation" : "sc:painting",
1410
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f53",
1411
+ "resource" : {
1412
+ "format" : "image/jpeg",
1413
+ "service" : {
1414
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1415
+ "@context" : "http://iiif.io/api/image/1/context.json",
1416
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f53"
1417
+ },
1418
+ "height" : 5873,
1419
+ "width" : 4509,
1420
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f53/full/full/0/native.jpg",
1421
+ "@type" : "dctypes:Image"
1422
+ },
1423
+ "@type" : "oa:Annotation"
1424
+ } ],
1425
+ "thumbnail" : {
1426
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f53.thumbnail"
1427
+ },
1428
+ "@type" : "sc:Canvas"
1429
+ }, {
1430
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f54",
1431
+ "label" : "23v",
1432
+ "height" : 5777,
1433
+ "width" : 4438,
1434
+ "images" : [ {
1435
+ "motivation" : "sc:painting",
1436
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f54",
1437
+ "resource" : {
1438
+ "format" : "image/jpeg",
1439
+ "service" : {
1440
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1441
+ "@context" : "http://iiif.io/api/image/1/context.json",
1442
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f54"
1443
+ },
1444
+ "height" : 5777,
1445
+ "width" : 4438,
1446
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f54/full/full/0/native.jpg",
1447
+ "@type" : "dctypes:Image"
1448
+ },
1449
+ "@type" : "oa:Annotation"
1450
+ } ],
1451
+ "thumbnail" : {
1452
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f54.thumbnail"
1453
+ },
1454
+ "@type" : "sc:Canvas"
1455
+ }, {
1456
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f55",
1457
+ "label" : "24r",
1458
+ "height" : 5873,
1459
+ "width" : 4509,
1460
+ "images" : [ {
1461
+ "motivation" : "sc:painting",
1462
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f55",
1463
+ "resource" : {
1464
+ "format" : "image/jpeg",
1465
+ "service" : {
1466
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1467
+ "@context" : "http://iiif.io/api/image/1/context.json",
1468
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f55"
1469
+ },
1470
+ "height" : 5873,
1471
+ "width" : 4509,
1472
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f55/full/full/0/native.jpg",
1473
+ "@type" : "dctypes:Image"
1474
+ },
1475
+ "@type" : "oa:Annotation"
1476
+ } ],
1477
+ "thumbnail" : {
1478
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f55.thumbnail"
1479
+ },
1480
+ "@type" : "sc:Canvas"
1481
+ }, {
1482
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f56",
1483
+ "label" : "24v",
1484
+ "height" : 5777,
1485
+ "width" : 4438,
1486
+ "images" : [ {
1487
+ "motivation" : "sc:painting",
1488
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f56",
1489
+ "resource" : {
1490
+ "format" : "image/jpeg",
1491
+ "service" : {
1492
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1493
+ "@context" : "http://iiif.io/api/image/1/context.json",
1494
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f56"
1495
+ },
1496
+ "height" : 5777,
1497
+ "width" : 4438,
1498
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f56/full/full/0/native.jpg",
1499
+ "@type" : "dctypes:Image"
1500
+ },
1501
+ "@type" : "oa:Annotation"
1502
+ } ],
1503
+ "thumbnail" : {
1504
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f56.thumbnail"
1505
+ },
1506
+ "@type" : "sc:Canvas"
1507
+ }, {
1508
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f57",
1509
+ "label" : "25r",
1510
+ "height" : 5883,
1511
+ "width" : 4509,
1512
+ "images" : [ {
1513
+ "motivation" : "sc:painting",
1514
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f57",
1515
+ "resource" : {
1516
+ "format" : "image/jpeg",
1517
+ "service" : {
1518
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1519
+ "@context" : "http://iiif.io/api/image/1/context.json",
1520
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f57"
1521
+ },
1522
+ "height" : 5883,
1523
+ "width" : 4509,
1524
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f57/full/full/0/native.jpg",
1525
+ "@type" : "dctypes:Image"
1526
+ },
1527
+ "@type" : "oa:Annotation"
1528
+ } ],
1529
+ "thumbnail" : {
1530
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f57.thumbnail"
1531
+ },
1532
+ "@type" : "sc:Canvas"
1533
+ }, {
1534
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f58",
1535
+ "label" : "25v",
1536
+ "height" : 5802,
1537
+ "width" : 4438,
1538
+ "images" : [ {
1539
+ "motivation" : "sc:painting",
1540
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f58",
1541
+ "resource" : {
1542
+ "format" : "image/jpeg",
1543
+ "service" : {
1544
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1545
+ "@context" : "http://iiif.io/api/image/1/context.json",
1546
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f58"
1547
+ },
1548
+ "height" : 5802,
1549
+ "width" : 4438,
1550
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f58/full/full/0/native.jpg",
1551
+ "@type" : "dctypes:Image"
1552
+ },
1553
+ "@type" : "oa:Annotation"
1554
+ } ],
1555
+ "thumbnail" : {
1556
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f58.thumbnail"
1557
+ },
1558
+ "@type" : "sc:Canvas"
1559
+ }, {
1560
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f59",
1561
+ "label" : "26r",
1562
+ "height" : 5908,
1563
+ "width" : 4509,
1564
+ "images" : [ {
1565
+ "motivation" : "sc:painting",
1566
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f59",
1567
+ "resource" : {
1568
+ "format" : "image/jpeg",
1569
+ "service" : {
1570
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1571
+ "@context" : "http://iiif.io/api/image/1/context.json",
1572
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f59"
1573
+ },
1574
+ "height" : 5908,
1575
+ "width" : 4509,
1576
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f59/full/full/0/native.jpg",
1577
+ "@type" : "dctypes:Image"
1578
+ },
1579
+ "@type" : "oa:Annotation"
1580
+ } ],
1581
+ "thumbnail" : {
1582
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f59.thumbnail"
1583
+ },
1584
+ "@type" : "sc:Canvas"
1585
+ }, {
1586
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f60",
1587
+ "label" : "26v",
1588
+ "height" : 5802,
1589
+ "width" : 4438,
1590
+ "images" : [ {
1591
+ "motivation" : "sc:painting",
1592
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f60",
1593
+ "resource" : {
1594
+ "format" : "image/jpeg",
1595
+ "service" : {
1596
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1597
+ "@context" : "http://iiif.io/api/image/1/context.json",
1598
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f60"
1599
+ },
1600
+ "height" : 5802,
1601
+ "width" : 4438,
1602
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f60/full/full/0/native.jpg",
1603
+ "@type" : "dctypes:Image"
1604
+ },
1605
+ "@type" : "oa:Annotation"
1606
+ } ],
1607
+ "thumbnail" : {
1608
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f60.thumbnail"
1609
+ },
1610
+ "@type" : "sc:Canvas"
1611
+ }, {
1612
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f61",
1613
+ "label" : "27r",
1614
+ "height" : 5875,
1615
+ "width" : 4509,
1616
+ "images" : [ {
1617
+ "motivation" : "sc:painting",
1618
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f61",
1619
+ "resource" : {
1620
+ "format" : "image/jpeg",
1621
+ "service" : {
1622
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1623
+ "@context" : "http://iiif.io/api/image/1/context.json",
1624
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f61"
1625
+ },
1626
+ "height" : 5875,
1627
+ "width" : 4509,
1628
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f61/full/full/0/native.jpg",
1629
+ "@type" : "dctypes:Image"
1630
+ },
1631
+ "@type" : "oa:Annotation"
1632
+ } ],
1633
+ "thumbnail" : {
1634
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f61.thumbnail"
1635
+ },
1636
+ "@type" : "sc:Canvas"
1637
+ }, {
1638
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f62",
1639
+ "label" : "27v",
1640
+ "height" : 5802,
1641
+ "width" : 4438,
1642
+ "images" : [ {
1643
+ "motivation" : "sc:painting",
1644
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f62",
1645
+ "resource" : {
1646
+ "format" : "image/jpeg",
1647
+ "service" : {
1648
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1649
+ "@context" : "http://iiif.io/api/image/1/context.json",
1650
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f62"
1651
+ },
1652
+ "height" : 5802,
1653
+ "width" : 4438,
1654
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f62/full/full/0/native.jpg",
1655
+ "@type" : "dctypes:Image"
1656
+ },
1657
+ "@type" : "oa:Annotation"
1658
+ } ],
1659
+ "thumbnail" : {
1660
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f62.thumbnail"
1661
+ },
1662
+ "@type" : "sc:Canvas"
1663
+ }, {
1664
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f63",
1665
+ "label" : "28r",
1666
+ "height" : 5883,
1667
+ "width" : 4509,
1668
+ "images" : [ {
1669
+ "motivation" : "sc:painting",
1670
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f63",
1671
+ "resource" : {
1672
+ "format" : "image/jpeg",
1673
+ "service" : {
1674
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1675
+ "@context" : "http://iiif.io/api/image/1/context.json",
1676
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f63"
1677
+ },
1678
+ "height" : 5883,
1679
+ "width" : 4509,
1680
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f63/full/full/0/native.jpg",
1681
+ "@type" : "dctypes:Image"
1682
+ },
1683
+ "@type" : "oa:Annotation"
1684
+ } ],
1685
+ "thumbnail" : {
1686
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f63.thumbnail"
1687
+ },
1688
+ "@type" : "sc:Canvas"
1689
+ }, {
1690
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f64",
1691
+ "label" : "28v",
1692
+ "height" : 5802,
1693
+ "width" : 4438,
1694
+ "images" : [ {
1695
+ "motivation" : "sc:painting",
1696
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f64",
1697
+ "resource" : {
1698
+ "format" : "image/jpeg",
1699
+ "service" : {
1700
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1701
+ "@context" : "http://iiif.io/api/image/1/context.json",
1702
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f64"
1703
+ },
1704
+ "height" : 5802,
1705
+ "width" : 4438,
1706
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f64/full/full/0/native.jpg",
1707
+ "@type" : "dctypes:Image"
1708
+ },
1709
+ "@type" : "oa:Annotation"
1710
+ } ],
1711
+ "thumbnail" : {
1712
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f64.thumbnail"
1713
+ },
1714
+ "@type" : "sc:Canvas"
1715
+ }, {
1716
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f65",
1717
+ "label" : "29r",
1718
+ "height" : 5860,
1719
+ "width" : 4509,
1720
+ "images" : [ {
1721
+ "motivation" : "sc:painting",
1722
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f65",
1723
+ "resource" : {
1724
+ "format" : "image/jpeg",
1725
+ "service" : {
1726
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1727
+ "@context" : "http://iiif.io/api/image/1/context.json",
1728
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f65"
1729
+ },
1730
+ "height" : 5860,
1731
+ "width" : 4509,
1732
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f65/full/full/0/native.jpg",
1733
+ "@type" : "dctypes:Image"
1734
+ },
1735
+ "@type" : "oa:Annotation"
1736
+ } ],
1737
+ "thumbnail" : {
1738
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f65.thumbnail"
1739
+ },
1740
+ "@type" : "sc:Canvas"
1741
+ }, {
1742
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f66",
1743
+ "label" : "29v",
1744
+ "height" : 5744,
1745
+ "width" : 4438,
1746
+ "images" : [ {
1747
+ "motivation" : "sc:painting",
1748
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f66",
1749
+ "resource" : {
1750
+ "format" : "image/jpeg",
1751
+ "service" : {
1752
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1753
+ "@context" : "http://iiif.io/api/image/1/context.json",
1754
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f66"
1755
+ },
1756
+ "height" : 5744,
1757
+ "width" : 4438,
1758
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f66/full/full/0/native.jpg",
1759
+ "@type" : "dctypes:Image"
1760
+ },
1761
+ "@type" : "oa:Annotation"
1762
+ } ],
1763
+ "thumbnail" : {
1764
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f66.thumbnail"
1765
+ },
1766
+ "@type" : "sc:Canvas"
1767
+ }, {
1768
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f67",
1769
+ "label" : "30r",
1770
+ "height" : 5860,
1771
+ "width" : 4475,
1772
+ "images" : [ {
1773
+ "motivation" : "sc:painting",
1774
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f67",
1775
+ "resource" : {
1776
+ "format" : "image/jpeg",
1777
+ "service" : {
1778
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1779
+ "@context" : "http://iiif.io/api/image/1/context.json",
1780
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f67"
1781
+ },
1782
+ "height" : 5860,
1783
+ "width" : 4475,
1784
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f67/full/full/0/native.jpg",
1785
+ "@type" : "dctypes:Image"
1786
+ },
1787
+ "@type" : "oa:Annotation"
1788
+ } ],
1789
+ "thumbnail" : {
1790
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f67.thumbnail"
1791
+ },
1792
+ "@type" : "sc:Canvas"
1793
+ }, {
1794
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f68",
1795
+ "label" : "30v",
1796
+ "height" : 5744,
1797
+ "width" : 4404,
1798
+ "images" : [ {
1799
+ "motivation" : "sc:painting",
1800
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f68",
1801
+ "resource" : {
1802
+ "format" : "image/jpeg",
1803
+ "service" : {
1804
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1805
+ "@context" : "http://iiif.io/api/image/1/context.json",
1806
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f68"
1807
+ },
1808
+ "height" : 5744,
1809
+ "width" : 4404,
1810
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f68/full/full/0/native.jpg",
1811
+ "@type" : "dctypes:Image"
1812
+ },
1813
+ "@type" : "oa:Annotation"
1814
+ } ],
1815
+ "thumbnail" : {
1816
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f68.thumbnail"
1817
+ },
1818
+ "@type" : "sc:Canvas"
1819
+ }, {
1820
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f69",
1821
+ "label" : "31r",
1822
+ "height" : 5842,
1823
+ "width" : 4475,
1824
+ "images" : [ {
1825
+ "motivation" : "sc:painting",
1826
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f69",
1827
+ "resource" : {
1828
+ "format" : "image/jpeg",
1829
+ "service" : {
1830
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1831
+ "@context" : "http://iiif.io/api/image/1/context.json",
1832
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f69"
1833
+ },
1834
+ "height" : 5842,
1835
+ "width" : 4475,
1836
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f69/full/full/0/native.jpg",
1837
+ "@type" : "dctypes:Image"
1838
+ },
1839
+ "@type" : "oa:Annotation"
1840
+ } ],
1841
+ "thumbnail" : {
1842
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f69.thumbnail"
1843
+ },
1844
+ "@type" : "sc:Canvas"
1845
+ }, {
1846
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f70",
1847
+ "label" : "31v",
1848
+ "height" : 5744,
1849
+ "width" : 4404,
1850
+ "images" : [ {
1851
+ "motivation" : "sc:painting",
1852
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f70",
1853
+ "resource" : {
1854
+ "format" : "image/jpeg",
1855
+ "service" : {
1856
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1857
+ "@context" : "http://iiif.io/api/image/1/context.json",
1858
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f70"
1859
+ },
1860
+ "height" : 5744,
1861
+ "width" : 4404,
1862
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f70/full/full/0/native.jpg",
1863
+ "@type" : "dctypes:Image"
1864
+ },
1865
+ "@type" : "oa:Annotation"
1866
+ } ],
1867
+ "thumbnail" : {
1868
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f70.thumbnail"
1869
+ },
1870
+ "@type" : "sc:Canvas"
1871
+ }, {
1872
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f71",
1873
+ "label" : "32r",
1874
+ "height" : 5842,
1875
+ "width" : 4475,
1876
+ "images" : [ {
1877
+ "motivation" : "sc:painting",
1878
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f71",
1879
+ "resource" : {
1880
+ "format" : "image/jpeg",
1881
+ "service" : {
1882
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1883
+ "@context" : "http://iiif.io/api/image/1/context.json",
1884
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f71"
1885
+ },
1886
+ "height" : 5842,
1887
+ "width" : 4475,
1888
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f71/full/full/0/native.jpg",
1889
+ "@type" : "dctypes:Image"
1890
+ },
1891
+ "@type" : "oa:Annotation"
1892
+ } ],
1893
+ "thumbnail" : {
1894
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f71.thumbnail"
1895
+ },
1896
+ "@type" : "sc:Canvas"
1897
+ }, {
1898
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f72",
1899
+ "label" : "32v",
1900
+ "height" : 5773,
1901
+ "width" : 4468,
1902
+ "images" : [ {
1903
+ "motivation" : "sc:painting",
1904
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f72",
1905
+ "resource" : {
1906
+ "format" : "image/jpeg",
1907
+ "service" : {
1908
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1909
+ "@context" : "http://iiif.io/api/image/1/context.json",
1910
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f72"
1911
+ },
1912
+ "height" : 5773,
1913
+ "width" : 4468,
1914
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f72/full/full/0/native.jpg",
1915
+ "@type" : "dctypes:Image"
1916
+ },
1917
+ "@type" : "oa:Annotation"
1918
+ } ],
1919
+ "thumbnail" : {
1920
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f72.thumbnail"
1921
+ },
1922
+ "@type" : "sc:Canvas"
1923
+ }, {
1924
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f73",
1925
+ "label" : "33r",
1926
+ "height" : 5815,
1927
+ "width" : 4486,
1928
+ "images" : [ {
1929
+ "motivation" : "sc:painting",
1930
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f73",
1931
+ "resource" : {
1932
+ "format" : "image/jpeg",
1933
+ "service" : {
1934
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1935
+ "@context" : "http://iiif.io/api/image/1/context.json",
1936
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f73"
1937
+ },
1938
+ "height" : 5815,
1939
+ "width" : 4486,
1940
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f73/full/full/0/native.jpg",
1941
+ "@type" : "dctypes:Image"
1942
+ },
1943
+ "@type" : "oa:Annotation"
1944
+ } ],
1945
+ "thumbnail" : {
1946
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f73.thumbnail"
1947
+ },
1948
+ "@type" : "sc:Canvas"
1949
+ }, {
1950
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f74",
1951
+ "label" : "33v",
1952
+ "height" : 5779,
1953
+ "width" : 4468,
1954
+ "images" : [ {
1955
+ "motivation" : "sc:painting",
1956
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f74",
1957
+ "resource" : {
1958
+ "format" : "image/jpeg",
1959
+ "service" : {
1960
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1961
+ "@context" : "http://iiif.io/api/image/1/context.json",
1962
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f74"
1963
+ },
1964
+ "height" : 5779,
1965
+ "width" : 4468,
1966
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f74/full/full/0/native.jpg",
1967
+ "@type" : "dctypes:Image"
1968
+ },
1969
+ "@type" : "oa:Annotation"
1970
+ } ],
1971
+ "thumbnail" : {
1972
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f74.thumbnail"
1973
+ },
1974
+ "@type" : "sc:Canvas"
1975
+ }, {
1976
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f75",
1977
+ "label" : "34r",
1978
+ "height" : 5842,
1979
+ "width" : 4514,
1980
+ "images" : [ {
1981
+ "motivation" : "sc:painting",
1982
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f75",
1983
+ "resource" : {
1984
+ "format" : "image/jpeg",
1985
+ "service" : {
1986
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
1987
+ "@context" : "http://iiif.io/api/image/1/context.json",
1988
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f75"
1989
+ },
1990
+ "height" : 5842,
1991
+ "width" : 4514,
1992
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f75/full/full/0/native.jpg",
1993
+ "@type" : "dctypes:Image"
1994
+ },
1995
+ "@type" : "oa:Annotation"
1996
+ } ],
1997
+ "thumbnail" : {
1998
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f75.thumbnail"
1999
+ },
2000
+ "@type" : "sc:Canvas"
2001
+ }, {
2002
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f76",
2003
+ "label" : "34v",
2004
+ "height" : 5779,
2005
+ "width" : 4468,
2006
+ "images" : [ {
2007
+ "motivation" : "sc:painting",
2008
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f76",
2009
+ "resource" : {
2010
+ "format" : "image/jpeg",
2011
+ "service" : {
2012
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2013
+ "@context" : "http://iiif.io/api/image/1/context.json",
2014
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f76"
2015
+ },
2016
+ "height" : 5779,
2017
+ "width" : 4468,
2018
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f76/full/full/0/native.jpg",
2019
+ "@type" : "dctypes:Image"
2020
+ },
2021
+ "@type" : "oa:Annotation"
2022
+ } ],
2023
+ "thumbnail" : {
2024
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f76.thumbnail"
2025
+ },
2026
+ "@type" : "sc:Canvas"
2027
+ }, {
2028
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f77",
2029
+ "label" : "35r",
2030
+ "height" : 5842,
2031
+ "width" : 4514,
2032
+ "images" : [ {
2033
+ "motivation" : "sc:painting",
2034
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f77",
2035
+ "resource" : {
2036
+ "format" : "image/jpeg",
2037
+ "service" : {
2038
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2039
+ "@context" : "http://iiif.io/api/image/1/context.json",
2040
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f77"
2041
+ },
2042
+ "height" : 5842,
2043
+ "width" : 4514,
2044
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f77/full/full/0/native.jpg",
2045
+ "@type" : "dctypes:Image"
2046
+ },
2047
+ "@type" : "oa:Annotation"
2048
+ } ],
2049
+ "thumbnail" : {
2050
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f77.thumbnail"
2051
+ },
2052
+ "@type" : "sc:Canvas"
2053
+ }, {
2054
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f78",
2055
+ "label" : "35v",
2056
+ "height" : 5779,
2057
+ "width" : 4468,
2058
+ "images" : [ {
2059
+ "motivation" : "sc:painting",
2060
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f78",
2061
+ "resource" : {
2062
+ "format" : "image/jpeg",
2063
+ "service" : {
2064
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2065
+ "@context" : "http://iiif.io/api/image/1/context.json",
2066
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f78"
2067
+ },
2068
+ "height" : 5779,
2069
+ "width" : 4468,
2070
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f78/full/full/0/native.jpg",
2071
+ "@type" : "dctypes:Image"
2072
+ },
2073
+ "@type" : "oa:Annotation"
2074
+ } ],
2075
+ "thumbnail" : {
2076
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f78.thumbnail"
2077
+ },
2078
+ "@type" : "sc:Canvas"
2079
+ }, {
2080
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f79",
2081
+ "label" : "36r",
2082
+ "height" : 5842,
2083
+ "width" : 4514,
2084
+ "images" : [ {
2085
+ "motivation" : "sc:painting",
2086
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f79",
2087
+ "resource" : {
2088
+ "format" : "image/jpeg",
2089
+ "service" : {
2090
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2091
+ "@context" : "http://iiif.io/api/image/1/context.json",
2092
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f79"
2093
+ },
2094
+ "height" : 5842,
2095
+ "width" : 4514,
2096
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f79/full/full/0/native.jpg",
2097
+ "@type" : "dctypes:Image"
2098
+ },
2099
+ "@type" : "oa:Annotation"
2100
+ } ],
2101
+ "thumbnail" : {
2102
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f79.thumbnail"
2103
+ },
2104
+ "@type" : "sc:Canvas"
2105
+ }, {
2106
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f80",
2107
+ "label" : "36v",
2108
+ "height" : 5779,
2109
+ "width" : 4468,
2110
+ "images" : [ {
2111
+ "motivation" : "sc:painting",
2112
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f80",
2113
+ "resource" : {
2114
+ "format" : "image/jpeg",
2115
+ "service" : {
2116
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2117
+ "@context" : "http://iiif.io/api/image/1/context.json",
2118
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f80"
2119
+ },
2120
+ "height" : 5779,
2121
+ "width" : 4468,
2122
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f80/full/full/0/native.jpg",
2123
+ "@type" : "dctypes:Image"
2124
+ },
2125
+ "@type" : "oa:Annotation"
2126
+ } ],
2127
+ "thumbnail" : {
2128
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f80.thumbnail"
2129
+ },
2130
+ "@type" : "sc:Canvas"
2131
+ }, {
2132
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f81",
2133
+ "label" : "37r",
2134
+ "height" : 5842,
2135
+ "width" : 4514,
2136
+ "images" : [ {
2137
+ "motivation" : "sc:painting",
2138
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f81",
2139
+ "resource" : {
2140
+ "format" : "image/jpeg",
2141
+ "service" : {
2142
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2143
+ "@context" : "http://iiif.io/api/image/1/context.json",
2144
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f81"
2145
+ },
2146
+ "height" : 5842,
2147
+ "width" : 4514,
2148
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f81/full/full/0/native.jpg",
2149
+ "@type" : "dctypes:Image"
2150
+ },
2151
+ "@type" : "oa:Annotation"
2152
+ } ],
2153
+ "thumbnail" : {
2154
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f81.thumbnail"
2155
+ },
2156
+ "@type" : "sc:Canvas"
2157
+ }, {
2158
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f82",
2159
+ "label" : "37v",
2160
+ "height" : 5815,
2161
+ "width" : 4468,
2162
+ "images" : [ {
2163
+ "motivation" : "sc:painting",
2164
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f82",
2165
+ "resource" : {
2166
+ "format" : "image/jpeg",
2167
+ "service" : {
2168
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2169
+ "@context" : "http://iiif.io/api/image/1/context.json",
2170
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f82"
2171
+ },
2172
+ "height" : 5815,
2173
+ "width" : 4468,
2174
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f82/full/full/0/native.jpg",
2175
+ "@type" : "dctypes:Image"
2176
+ },
2177
+ "@type" : "oa:Annotation"
2178
+ } ],
2179
+ "thumbnail" : {
2180
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f82.thumbnail"
2181
+ },
2182
+ "@type" : "sc:Canvas"
2183
+ }, {
2184
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f83",
2185
+ "label" : "38r",
2186
+ "height" : 5848,
2187
+ "width" : 4477,
2188
+ "images" : [ {
2189
+ "motivation" : "sc:painting",
2190
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f83",
2191
+ "resource" : {
2192
+ "format" : "image/jpeg",
2193
+ "service" : {
2194
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2195
+ "@context" : "http://iiif.io/api/image/1/context.json",
2196
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f83"
2197
+ },
2198
+ "height" : 5848,
2199
+ "width" : 4477,
2200
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f83/full/full/0/native.jpg",
2201
+ "@type" : "dctypes:Image"
2202
+ },
2203
+ "@type" : "oa:Annotation"
2204
+ } ],
2205
+ "thumbnail" : {
2206
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f83.thumbnail"
2207
+ },
2208
+ "@type" : "sc:Canvas"
2209
+ }, {
2210
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f84",
2211
+ "label" : "38v",
2212
+ "height" : 5815,
2213
+ "width" : 4468,
2214
+ "images" : [ {
2215
+ "motivation" : "sc:painting",
2216
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f84",
2217
+ "resource" : {
2218
+ "format" : "image/jpeg",
2219
+ "service" : {
2220
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2221
+ "@context" : "http://iiif.io/api/image/1/context.json",
2222
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f84"
2223
+ },
2224
+ "height" : 5815,
2225
+ "width" : 4468,
2226
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f84/full/full/0/native.jpg",
2227
+ "@type" : "dctypes:Image"
2228
+ },
2229
+ "@type" : "oa:Annotation"
2230
+ } ],
2231
+ "thumbnail" : {
2232
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f84.thumbnail"
2233
+ },
2234
+ "@type" : "sc:Canvas"
2235
+ }, {
2236
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f85",
2237
+ "label" : "39r",
2238
+ "height" : 5842,
2239
+ "width" : 4514,
2240
+ "images" : [ {
2241
+ "motivation" : "sc:painting",
2242
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f85",
2243
+ "resource" : {
2244
+ "format" : "image/jpeg",
2245
+ "service" : {
2246
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2247
+ "@context" : "http://iiif.io/api/image/1/context.json",
2248
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f85"
2249
+ },
2250
+ "height" : 5842,
2251
+ "width" : 4514,
2252
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f85/full/full/0/native.jpg",
2253
+ "@type" : "dctypes:Image"
2254
+ },
2255
+ "@type" : "oa:Annotation"
2256
+ } ],
2257
+ "thumbnail" : {
2258
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f85.thumbnail"
2259
+ },
2260
+ "@type" : "sc:Canvas"
2261
+ }, {
2262
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f86",
2263
+ "label" : "39v",
2264
+ "height" : 5815,
2265
+ "width" : 4468,
2266
+ "images" : [ {
2267
+ "motivation" : "sc:painting",
2268
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f86",
2269
+ "resource" : {
2270
+ "format" : "image/jpeg",
2271
+ "service" : {
2272
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2273
+ "@context" : "http://iiif.io/api/image/1/context.json",
2274
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f86"
2275
+ },
2276
+ "height" : 5815,
2277
+ "width" : 4468,
2278
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f86/full/full/0/native.jpg",
2279
+ "@type" : "dctypes:Image"
2280
+ },
2281
+ "@type" : "oa:Annotation"
2282
+ } ],
2283
+ "thumbnail" : {
2284
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f86.thumbnail"
2285
+ },
2286
+ "@type" : "sc:Canvas"
2287
+ }, {
2288
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f87",
2289
+ "label" : "40r",
2290
+ "height" : 5795,
2291
+ "width" : 4464,
2292
+ "images" : [ {
2293
+ "motivation" : "sc:painting",
2294
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f87",
2295
+ "resource" : {
2296
+ "format" : "image/jpeg",
2297
+ "service" : {
2298
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2299
+ "@context" : "http://iiif.io/api/image/1/context.json",
2300
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f87"
2301
+ },
2302
+ "height" : 5795,
2303
+ "width" : 4464,
2304
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f87/full/full/0/native.jpg",
2305
+ "@type" : "dctypes:Image"
2306
+ },
2307
+ "@type" : "oa:Annotation"
2308
+ } ],
2309
+ "thumbnail" : {
2310
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f87.thumbnail"
2311
+ },
2312
+ "@type" : "sc:Canvas"
2313
+ }, {
2314
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f88",
2315
+ "label" : "40v",
2316
+ "height" : 5815,
2317
+ "width" : 4468,
2318
+ "images" : [ {
2319
+ "motivation" : "sc:painting",
2320
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f88",
2321
+ "resource" : {
2322
+ "format" : "image/jpeg",
2323
+ "service" : {
2324
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2325
+ "@context" : "http://iiif.io/api/image/1/context.json",
2326
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f88"
2327
+ },
2328
+ "height" : 5815,
2329
+ "width" : 4468,
2330
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f88/full/full/0/native.jpg",
2331
+ "@type" : "dctypes:Image"
2332
+ },
2333
+ "@type" : "oa:Annotation"
2334
+ } ],
2335
+ "thumbnail" : {
2336
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f88.thumbnail"
2337
+ },
2338
+ "@type" : "sc:Canvas"
2339
+ }, {
2340
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f89",
2341
+ "label" : "41r",
2342
+ "height" : 5842,
2343
+ "width" : 4514,
2344
+ "images" : [ {
2345
+ "motivation" : "sc:painting",
2346
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f89",
2347
+ "resource" : {
2348
+ "format" : "image/jpeg",
2349
+ "service" : {
2350
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2351
+ "@context" : "http://iiif.io/api/image/1/context.json",
2352
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f89"
2353
+ },
2354
+ "height" : 5842,
2355
+ "width" : 4514,
2356
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f89/full/full/0/native.jpg",
2357
+ "@type" : "dctypes:Image"
2358
+ },
2359
+ "@type" : "oa:Annotation"
2360
+ } ],
2361
+ "thumbnail" : {
2362
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f89.thumbnail"
2363
+ },
2364
+ "@type" : "sc:Canvas"
2365
+ }, {
2366
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f90",
2367
+ "label" : "41v",
2368
+ "height" : 5815,
2369
+ "width" : 4468,
2370
+ "images" : [ {
2371
+ "motivation" : "sc:painting",
2372
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f90",
2373
+ "resource" : {
2374
+ "format" : "image/jpeg",
2375
+ "service" : {
2376
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2377
+ "@context" : "http://iiif.io/api/image/1/context.json",
2378
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f90"
2379
+ },
2380
+ "height" : 5815,
2381
+ "width" : 4468,
2382
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f90/full/full/0/native.jpg",
2383
+ "@type" : "dctypes:Image"
2384
+ },
2385
+ "@type" : "oa:Annotation"
2386
+ } ],
2387
+ "thumbnail" : {
2388
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f90.thumbnail"
2389
+ },
2390
+ "@type" : "sc:Canvas"
2391
+ }, {
2392
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f91",
2393
+ "label" : "42r",
2394
+ "height" : 5895,
2395
+ "width" : 4514,
2396
+ "images" : [ {
2397
+ "motivation" : "sc:painting",
2398
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f91",
2399
+ "resource" : {
2400
+ "format" : "image/jpeg",
2401
+ "service" : {
2402
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2403
+ "@context" : "http://iiif.io/api/image/1/context.json",
2404
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f91"
2405
+ },
2406
+ "height" : 5895,
2407
+ "width" : 4514,
2408
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f91/full/full/0/native.jpg",
2409
+ "@type" : "dctypes:Image"
2410
+ },
2411
+ "@type" : "oa:Annotation"
2412
+ } ],
2413
+ "thumbnail" : {
2414
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f91.thumbnail"
2415
+ },
2416
+ "@type" : "sc:Canvas"
2417
+ }, {
2418
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f92",
2419
+ "label" : "42v",
2420
+ "height" : 5815,
2421
+ "width" : 4468,
2422
+ "images" : [ {
2423
+ "motivation" : "sc:painting",
2424
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f92",
2425
+ "resource" : {
2426
+ "format" : "image/jpeg",
2427
+ "service" : {
2428
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2429
+ "@context" : "http://iiif.io/api/image/1/context.json",
2430
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f92"
2431
+ },
2432
+ "height" : 5815,
2433
+ "width" : 4468,
2434
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f92/full/full/0/native.jpg",
2435
+ "@type" : "dctypes:Image"
2436
+ },
2437
+ "@type" : "oa:Annotation"
2438
+ } ],
2439
+ "thumbnail" : {
2440
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f92.thumbnail"
2441
+ },
2442
+ "@type" : "sc:Canvas"
2443
+ }, {
2444
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f93",
2445
+ "label" : "43r",
2446
+ "height" : 5842,
2447
+ "width" : 4514,
2448
+ "images" : [ {
2449
+ "motivation" : "sc:painting",
2450
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f93",
2451
+ "resource" : {
2452
+ "format" : "image/jpeg",
2453
+ "service" : {
2454
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2455
+ "@context" : "http://iiif.io/api/image/1/context.json",
2456
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f93"
2457
+ },
2458
+ "height" : 5842,
2459
+ "width" : 4514,
2460
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f93/full/full/0/native.jpg",
2461
+ "@type" : "dctypes:Image"
2462
+ },
2463
+ "@type" : "oa:Annotation"
2464
+ } ],
2465
+ "thumbnail" : {
2466
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f93.thumbnail"
2467
+ },
2468
+ "@type" : "sc:Canvas"
2469
+ }, {
2470
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f94",
2471
+ "label" : "43v",
2472
+ "height" : 5815,
2473
+ "width" : 4468,
2474
+ "images" : [ {
2475
+ "motivation" : "sc:painting",
2476
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f94",
2477
+ "resource" : {
2478
+ "format" : "image/jpeg",
2479
+ "service" : {
2480
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2481
+ "@context" : "http://iiif.io/api/image/1/context.json",
2482
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f94"
2483
+ },
2484
+ "height" : 5815,
2485
+ "width" : 4468,
2486
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f94/full/full/0/native.jpg",
2487
+ "@type" : "dctypes:Image"
2488
+ },
2489
+ "@type" : "oa:Annotation"
2490
+ } ],
2491
+ "thumbnail" : {
2492
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f94.thumbnail"
2493
+ },
2494
+ "@type" : "sc:Canvas"
2495
+ }, {
2496
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f95",
2497
+ "label" : "page de garde recto",
2498
+ "height" : 5895,
2499
+ "width" : 4514,
2500
+ "images" : [ {
2501
+ "motivation" : "sc:painting",
2502
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f95",
2503
+ "resource" : {
2504
+ "format" : "image/jpeg",
2505
+ "service" : {
2506
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2507
+ "@context" : "http://iiif.io/api/image/1/context.json",
2508
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f95"
2509
+ },
2510
+ "height" : 5895,
2511
+ "width" : 4514,
2512
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f95/full/full/0/native.jpg",
2513
+ "@type" : "dctypes:Image"
2514
+ },
2515
+ "@type" : "oa:Annotation"
2516
+ } ],
2517
+ "thumbnail" : {
2518
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f95.thumbnail"
2519
+ },
2520
+ "@type" : "sc:Canvas"
2521
+ }, {
2522
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f96",
2523
+ "label" : "page de garde verso",
2524
+ "height" : 5815,
2525
+ "width" : 4468,
2526
+ "images" : [ {
2527
+ "motivation" : "sc:painting",
2528
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f96",
2529
+ "resource" : {
2530
+ "format" : "image/jpeg",
2531
+ "service" : {
2532
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2533
+ "@context" : "http://iiif.io/api/image/1/context.json",
2534
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f96"
2535
+ },
2536
+ "height" : 5815,
2537
+ "width" : 4468,
2538
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f96/full/full/0/native.jpg",
2539
+ "@type" : "dctypes:Image"
2540
+ },
2541
+ "@type" : "oa:Annotation"
2542
+ } ],
2543
+ "thumbnail" : {
2544
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f96.thumbnail"
2545
+ },
2546
+ "@type" : "sc:Canvas"
2547
+ }, {
2548
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f97",
2549
+ "label" : "page de garde recto",
2550
+ "height" : 5877,
2551
+ "width" : 4514,
2552
+ "images" : [ {
2553
+ "motivation" : "sc:painting",
2554
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f97",
2555
+ "resource" : {
2556
+ "format" : "image/jpeg",
2557
+ "service" : {
2558
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2559
+ "@context" : "http://iiif.io/api/image/1/context.json",
2560
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f97"
2561
+ },
2562
+ "height" : 5877,
2563
+ "width" : 4514,
2564
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f97/full/full/0/native.jpg",
2565
+ "@type" : "dctypes:Image"
2566
+ },
2567
+ "@type" : "oa:Annotation"
2568
+ } ],
2569
+ "thumbnail" : {
2570
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f97.thumbnail"
2571
+ },
2572
+ "@type" : "sc:Canvas"
2573
+ }, {
2574
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f98",
2575
+ "label" : "page de garde verso",
2576
+ "height" : 5815,
2577
+ "width" : 4468,
2578
+ "images" : [ {
2579
+ "motivation" : "sc:painting",
2580
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f98",
2581
+ "resource" : {
2582
+ "format" : "image/jpeg",
2583
+ "service" : {
2584
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2585
+ "@context" : "http://iiif.io/api/image/1/context.json",
2586
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f98"
2587
+ },
2588
+ "height" : 5815,
2589
+ "width" : 4468,
2590
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f98/full/full/0/native.jpg",
2591
+ "@type" : "dctypes:Image"
2592
+ },
2593
+ "@type" : "oa:Annotation"
2594
+ } ],
2595
+ "thumbnail" : {
2596
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f98.thumbnail"
2597
+ },
2598
+ "@type" : "sc:Canvas"
2599
+ }, {
2600
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f99",
2601
+ "label" : "page de garde recto",
2602
+ "height" : 5842,
2603
+ "width" : 4514,
2604
+ "images" : [ {
2605
+ "motivation" : "sc:painting",
2606
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f99",
2607
+ "resource" : {
2608
+ "format" : "image/jpeg",
2609
+ "service" : {
2610
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2611
+ "@context" : "http://iiif.io/api/image/1/context.json",
2612
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f99"
2613
+ },
2614
+ "height" : 5842,
2615
+ "width" : 4514,
2616
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f99/full/full/0/native.jpg",
2617
+ "@type" : "dctypes:Image"
2618
+ },
2619
+ "@type" : "oa:Annotation"
2620
+ } ],
2621
+ "thumbnail" : {
2622
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f99.thumbnail"
2623
+ },
2624
+ "@type" : "sc:Canvas"
2625
+ }, {
2626
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f100",
2627
+ "label" : "page de garde verso",
2628
+ "height" : 5815,
2629
+ "width" : 4468,
2630
+ "images" : [ {
2631
+ "motivation" : "sc:painting",
2632
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f100",
2633
+ "resource" : {
2634
+ "format" : "image/jpeg",
2635
+ "service" : {
2636
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2637
+ "@context" : "http://iiif.io/api/image/1/context.json",
2638
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f100"
2639
+ },
2640
+ "height" : 5815,
2641
+ "width" : 4468,
2642
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f100/full/full/0/native.jpg",
2643
+ "@type" : "dctypes:Image"
2644
+ },
2645
+ "@type" : "oa:Annotation"
2646
+ } ],
2647
+ "thumbnail" : {
2648
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f100.thumbnail"
2649
+ },
2650
+ "@type" : "sc:Canvas"
2651
+ }, {
2652
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f101",
2653
+ "label" : "contreplat inf.",
2654
+ "height" : 6012,
2655
+ "width" : 4567,
2656
+ "images" : [ {
2657
+ "motivation" : "sc:painting",
2658
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f101",
2659
+ "resource" : {
2660
+ "format" : "image/jpeg",
2661
+ "service" : {
2662
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2663
+ "@context" : "http://iiif.io/api/image/1/context.json",
2664
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f101"
2665
+ },
2666
+ "height" : 6012,
2667
+ "width" : 4567,
2668
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f101/full/full/0/native.jpg",
2669
+ "@type" : "dctypes:Image"
2670
+ },
2671
+ "@type" : "oa:Annotation"
2672
+ } ],
2673
+ "thumbnail" : {
2674
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f101.thumbnail"
2675
+ },
2676
+ "@type" : "sc:Canvas"
2677
+ }, {
2678
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f102",
2679
+ "label" : "plat inférieur.",
2680
+ "height" : 5922,
2681
+ "width" : 4559,
2682
+ "images" : [ {
2683
+ "motivation" : "sc:painting",
2684
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f102",
2685
+ "resource" : {
2686
+ "format" : "image/jpeg",
2687
+ "service" : {
2688
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2689
+ "@context" : "http://iiif.io/api/image/1/context.json",
2690
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f102"
2691
+ },
2692
+ "height" : 5922,
2693
+ "width" : 4559,
2694
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f102/full/full/0/native.jpg",
2695
+ "@type" : "dctypes:Image"
2696
+ },
2697
+ "@type" : "oa:Annotation"
2698
+ } ],
2699
+ "thumbnail" : {
2700
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f102.thumbnail"
2701
+ },
2702
+ "@type" : "sc:Canvas"
2703
+ }, {
2704
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f103",
2705
+ "label" : "dos",
2706
+ "height" : 5980,
2707
+ "width" : 971,
2708
+ "images" : [ {
2709
+ "motivation" : "sc:painting",
2710
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f103",
2711
+ "resource" : {
2712
+ "format" : "image/jpeg",
2713
+ "service" : {
2714
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2715
+ "@context" : "http://iiif.io/api/image/1/context.json",
2716
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f103"
2717
+ },
2718
+ "height" : 5980,
2719
+ "width" : 971,
2720
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f103/full/full/0/native.jpg",
2721
+ "@type" : "dctypes:Image"
2722
+ },
2723
+ "@type" : "oa:Annotation"
2724
+ } ],
2725
+ "thumbnail" : {
2726
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f103.thumbnail"
2727
+ },
2728
+ "@type" : "sc:Canvas"
2729
+ }, {
2730
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f104",
2731
+ "label" : "tranche supérieure",
2732
+ "height" : 4635,
2733
+ "width" : 1239,
2734
+ "images" : [ {
2735
+ "motivation" : "sc:painting",
2736
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f104",
2737
+ "resource" : {
2738
+ "format" : "image/jpeg",
2739
+ "service" : {
2740
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2741
+ "@context" : "http://iiif.io/api/image/1/context.json",
2742
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f104"
2743
+ },
2744
+ "height" : 4635,
2745
+ "width" : 1239,
2746
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f104/full/full/0/native.jpg",
2747
+ "@type" : "dctypes:Image"
2748
+ },
2749
+ "@type" : "oa:Annotation"
2750
+ } ],
2751
+ "thumbnail" : {
2752
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f104.thumbnail"
2753
+ },
2754
+ "@type" : "sc:Canvas"
2755
+ }, {
2756
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f105",
2757
+ "label" : "gouttière",
2758
+ "height" : 5980,
2759
+ "width" : 1164,
2760
+ "images" : [ {
2761
+ "motivation" : "sc:painting",
2762
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f105",
2763
+ "resource" : {
2764
+ "format" : "image/jpeg",
2765
+ "service" : {
2766
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2767
+ "@context" : "http://iiif.io/api/image/1/context.json",
2768
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f105"
2769
+ },
2770
+ "height" : 5980,
2771
+ "width" : 1164,
2772
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f105/full/full/0/native.jpg",
2773
+ "@type" : "dctypes:Image"
2774
+ },
2775
+ "@type" : "oa:Annotation"
2776
+ } ],
2777
+ "thumbnail" : {
2778
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f105.thumbnail"
2779
+ },
2780
+ "@type" : "sc:Canvas"
2781
+ }, {
2782
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f106",
2783
+ "label" : "tranche inférieure",
2784
+ "height" : 4560,
2785
+ "width" : 1239,
2786
+ "images" : [ {
2787
+ "motivation" : "sc:painting",
2788
+ "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/canvas/f106",
2789
+ "resource" : {
2790
+ "format" : "image/jpeg",
2791
+ "service" : {
2792
+ "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2",
2793
+ "@context" : "http://iiif.io/api/image/1/context.json",
2794
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f106"
2795
+ },
2796
+ "height" : 4560,
2797
+ "width" : 1239,
2798
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/f106/full/full/0/native.jpg",
2799
+ "@type" : "dctypes:Image"
2800
+ },
2801
+ "@type" : "oa:Annotation"
2802
+ } ],
2803
+ "thumbnail" : {
2804
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p/f106.thumbnail"
2805
+ },
2806
+ "@type" : "sc:Canvas"
2807
+ } ],
2808
+ "label" : "Current Page Order",
2809
+ "@type" : "sc:Sequence",
2810
+ "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b8490076p/sequence/default"
2811
+ } ],
2812
+ "thumbnail" : {
2813
+ "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b8490076p.thumbnail"
2814
+ },
2815
+ "@type" : "sc:Manifest",
2816
+ "@context" : "http://iiif.io/api/presentation/2/context.json"
2817
+ }