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