-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathProvenance.json
7310 lines (7310 loc) · 223 KB
/
Provenance.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Diana and her Companions.",
"Image Link": "https://www.mauritshuis.nl/en/explore/the-collection/artworks/diana-and-her-nymphs-406/detailgegevens/",
"Provenance": "Dirksen The Hague before 1866 sold for 179 florins to",
"Provenance": "Neville Davison Goldsmid The Hague (pre 1866-1875)",
"Provenance": "his widow Eliza Garey The Hague and Paris 1875-1876",
"Provenance": "Sale Paris Goldsmid Collection May 4 1876 lot 68 ((1000 francs to Victor de Stuers on behalf of The Netherlands) (as Nicolaes Maes)",
"Provenance": "Koninklijk Kabinet van Schilderijen Mauritshuis The Hague (inv. 406)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Christ in the House of Mary and Martha.",
"Image Link": "https://www.nationalgalleries.org/art-and-artists/5539/christ-house-martha-and-mary",
"Provenance": "John Hugh Smyth Pisott Brockley Hall 1829",
"Provenance": "Abbot Family Bristol c. 1880",
"Provenance": "bought by a furniture dealer for £10 1884",
"Provenance": "bought back for £13",
"Provenance": "Arthur Leslie Colley (m) (Collie) London",
"Provenance": "Forbes and Paterson London April 1901 who sold it to",
"Provenance": "W.A. Coats Skelmorlie Castle Dalskairth Dumfries and Galloway Scotland 1901-1926",
"Provenance": "his sons Thomas H. and J.A. Coats 1926-1927",
"Provenance": "presented 1927 in memory of Mr. W.A. Coats by his two sons to the National Gallery of Scotland Edinburgh (1670)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Procuress.",
"Image Link": "https://skd-online-collection.skd.museum/Details/Index/415421",
"Provenance": "Wallenstein Dux",
"Provenance": "Royal Picture Gallery Dresden 1741",
"Provenance": "State Picture Gallery Dresden now known as the Gemäldegalerie Alte Meister Dresden (1335)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "A Maid Asleep.",
"Image Link": "https://www.metmuseum.org/art/collection/search/437878",
"Provenance": "Probably Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "perhaps his widow Maria de Knuijt Delft 1674-1681",
"Provenance": "probably their daughter Magdalena van Ruiven and her husband Jacob Dissius Delft",
"Provenance": "Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 8 (as Drunken Maid Servant Asleep Behind a Table) (62 florins)",
"Provenance": "probably Sale Amsterdam December 19 1737 lot 47 (as \"A sleeping woman by the Delft van der Meer) (8.5 florins to Carpi)",
"Provenance": "probably J.B.P. Lebrun Paris 1811",
"Provenance": "Sale Paris Smeth van Alphen and Other Collections April 14 1811 lot 150 (60 francs to Paillet)",
"Provenance": "John Waterloo Wilson Paris (after 1873-1881)",
"Provenance": "Sale Paris John W. Wilson Collection March 14-16 1881 lot 116 (8500 francs? to Sedelmeyer)",
"Provenance": "Sedelmeyer Gallery Paris in 1881 sold to Kann for 12 000 francs",
"Provenance": "Rodolphe Kann Paris 1881-d.1905",
"Provenance": "Duveen Brothers London 1907-1908 sold to Altman",
"Provenance": "Benjamin Altman New York 1908- ( d.1913)",
"Provenance": "bequeathed by him in 1913 to the Metropolitan Museum of Art (14.40.611)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "A Girl Reading a Letter.",
"Image Link": "https://skd-online-collection.skd.museum/Details/Index/415429",
"Provenance": "Possibly Sale Pieter van der Lip Collection June 14 1712 lot 22 (110 florins)",
"Provenance": "acquired in 1742 by de Brais in Paris for August III Elector of Saxony Dresden (as by Rembrandt)",
"Provenance": "in the Gemäldegalerie Dresden by 1747",
"Provenance": "in the Soviet Union 1945-1955 then returned to Dresden (1336)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Officer and Laughing Girl.",
"Image Link": "https://collections.frick.org/objects/275/officer-and-laughing-girl",
"Provenance": "Probably Pieter Claesz van Ruijven Delft (d.1674)",
"Provenance": "probably his widow Maria de Knuijt Delft (1674-d.1681)",
"Provenance": "probably their daughter Magdalena van Ruijven Delft (1681-d.1682)",
"Provenance": "her widower Jacob Abrahamsz Dissius (1682-d.1695)",
"Provenance": "Jacob Dissius Collection Sale Amsterdam May 16 1696 lot 11 (44 fl. 10 st.) (as \"Een Soldaet met een laggent Meysje zeer fraei\" [A Soldier with a laughing Girl very fine]",
"Provenance": "Sale Christie's London Charles Scarisbrick Collection May 10 1861 lot 89 (as by \"De Hooghe\") (£87 3s to Lee Mainwaring)",
"Provenance": "probably Charles-Benjamin Lee-Mainwaring Old Palace Richmond Surrey (as by De Hooch)",
"Provenance": "Sale London by March 1866 (as by De Hooch) (235 guineas to Théophile Thoré as by Vermeer for Léopold Double)",
"Provenance": "Léopold Double Paris (1866- d.1881)",
"Provenance": "Sale Pillet Paris Léopold Double Collection May 30 1881 lot 16 (88 000 francs to Léon Gauchez for Paul Demidoff)",
"Provenance": "Paul Demidoff [Pavel Pavlovich Demidov] prince of San Donato Villa di Pratolino near Florence (d.1881)",
"Provenance": "his widow Hélène Demidoff [Elena Petrovna Demidov née Troubetskaya] princess of San Donato",
"Provenance": "Samuel S. Joseph London in 1891 (d. 1894)",
"Provenance": "his widow Mrs. Samuel Joseph (Emma Heilbut) London (1894-1911)",
"Provenance": "Knoedler dealer New York 1911",
"Provenance": "Henry Clay Frick (1911) ($225 000)",
"Provenance": "Frick Collection New York (11.1.127)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Milkmaid.",
"Image Link": "https://www.rijksmuseum.nl/en/collection/SK-A-2344",
"Provenance": "Probably Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "perhaps his widow Maria de Knuijt Delft 1674-1681",
"Provenance": "probably their daughter Magdelena van Ruijven and her husband Jacob Dissius",
"Provenance": "Jacob Dissius Collection Sale Amsterdam May 1696 lot 2 (s) (75 Df)",
"Provenance": "Isaac Rooleeuw Amsterdam",
"Provenance": "Sale Amsterdam Isaac Rooleeuw Collection April 20 1701 lot 7 (s) (320 Df)",
"Provenance": "Jacob van Hoek Amsterdam (1701-1719)",
"Provenance": "Sale Amsterdam Jacob van Hoek Collection April 12 1719 lot 20 (s) (126 Df)",
"Provenance": "Pieter Leendert de Neufville Collection Amsterdam before 1759",
"Provenance": "Leendert Pieter de Neufville 1759-1765",
"Provenance": "Sale Amsterdam Leendert Pieter de Neufville Collection June 19 1765 lot 65 (560 Df. to Yver)",
"Provenance": "Sale Amsterdam Dulong Collection April 18 1768 lot 10 (925 Df. to Van Diemen)",
"Provenance": "Jan Jacob de Bruyn Amsterdam 1781-1798",
"Provenance": "Sale Amsterdam Jan Jacob de Bruyn Collection September 12 1798 lot 32 (1550 Df. to J. Spaan)",
"Provenance": "Sale Amsterdam Hendrik Muilman Collection April 12 1813 lot 96 (fl.2125 to J. de Vries for L.H. van Winter)",
"Provenance": "Lucretia Johanna van Winter Amsterdam 1813-1845",
"Provenance": "Hendrik Six van Hillegom Amsterdam 1845-1847",
"Provenance": "Jan Pieter Six van Hillegom and Pieter Six van Vromade Amsterdam 1847-1899/1905",
"Provenance": "Six van Vromade heirs;",
"Provenance": "acquired in 1908 with the support of the Vereniging Rembrandt by the Rijksmuseum Amsterdam (SK-A-2344)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Glass of Wine.",
"Image Link": "http://www.smb-digital.de/eMuseumPlus?service=direct/1/ResultLightboxView/result.t1.collection_lightbox.$TspTitleImageLink.link&sp=10&sp=Scollection&sp=SfieldValue&sp=0&sp=0&sp=3&sp=Slightbox_3x4&sp=0&sp=Sdetail&sp=0&sp=F&sp=T&sp=8",
"Provenance": "Sale Jan van Loon Collection Delft July 18 1736 lot 16 (52 florins)",
"Provenance": "John Hope Amsterdam until 1784",
"Provenance": "his heirs until 1794",
"Provenance": "Henry Thomas Hope Deepdene Surrey",
"Provenance": "his daughter Henrietta Adela (g) (died 1862)",
"Provenance": "Lord Francis Pelham Clinton Hope 1891-1898",
"Provenance": "P. and D. Colnaghi and A. Wertheimer 1898",
"Provenance": "Kaiser Friedrich Museum Berlin 1901 later renamed Gemäldegalerie (912c)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Girl Interrupted at Her Music.",
"Image Link": "https://collections.frick.org/objects/273/girl-interrupted-at-her-music",
"Provenance": "Pieter de Smeth van Alphen Amsterdam",
"Provenance": "Sale Ph. van der Schley Amsterdam Pieter de Smeth van Alphen Collection August 1-2 1810 lot 57 (610 florins to J. de Vries)",
"Provenance": " J. de Vries",
"Provenance": "Sale Ph. van der Schley Amsterdam Henry Croese and Other Collections September 18 1811 lot 45 (399 florins to Roos)",
"Provenance": "Cornelis Sebille Roos 1811-1820",
"Provenance": "Sale J. de Vries Amsterdam Cornelis Roos Collection August 28 1820 lot 64 (340 florins to Brondgeest or 420 florins to N.N.)",
"Provenance": "Brondgeest",
"Provenance": "Sale Christie's London Samuel Woodburn Collection June 24 1853 lot 128 (£42 to Smith or directly to Gibson)",
"Provenance": "Francis Gibson Saffron Walden (d.1858)",
"Provenance": "his daughter Mrs. Lewis Fry Clifton Bristol",
"Provenance": "Lawrie and Co. London",
"Provenance": "Knoedler and Co. 1901",
"Provenance": "Henry C. Frick 1901 ($26 000)",
"Provenance": "Frick Collection New York (1901.1.125)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Girl with the Wine Glass.",
"Image Link": "https://www.3landesmuseen.de/Hollaendische-Malerei-17-und-18-Jahrhu.644.0.html",
"Provenance": "Possibly Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "possibly Maria de Knuijt Widow Van Ruijven Delft 1674-1681",
"Provenance": "possibly Magdalena van Ruijven and Jacob Dissius 1681-1682",
"Provenance": "Jacob Dissius and his father 1682-1695",
"Provenance": "Jacob Dissuis Collection Sale Amsterdam May 16 1696 lot 9 (73 florins) (j) (as \"Een vrolijk gezelschap in een kamer kragtig en goet\")",
"Provenance": "Duke Anton Ulrich of Brunswick before 1710",
"Provenance": "Ducal Museum Brunswick 1714",
"Provenance": "1807-1815 in the Louvre Paris",
"Provenance": "National Museum Brunswick (inv.316)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Little Street in Delft.",
"Image Link": "https://www.rijksmuseum.nl/en/vermeers-the-little-street-discovered/objects#/SK-A-2860,2",
"Provenance": "Probably Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "perhaps his widow Maria de Knuijt Delft 1674-81",
"Provenance": "probably their daughter Magdalena van Ruijven and her husband Jacob Dissius",
"Provenance": "Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 32 (72 florins 10 st.) (as 'Een Gesicht van een Huys staende in Delft' [A View of a House standing in Delft]) or lot 33 (48 florins) (as 'Een Gesicht van eenige Huysen' [A View of some Houses])",
"Provenance": "Gerrit Willem van Oosten de Bruyn Haarlem by 1797",
"Provenance": "his widow",
"Provenance": "Sale Van der Vinne Haarlem G.W. Oosten de Bruyn Collection Amsterdam April 8 1800 (f) lot 7 (1 040 florins to Van Winter)",
"Provenance": "Peter van Winter Amsterdam 1800-07",
"Provenance": "Lucretia J. Van Winter Amsterdam 1807-45",
"Provenance": "Hendrik Six van Hillegom Amsterdam 1845-47",
"Provenance": "Jan Pieter Six van Hillegom and Pieter Six van Vromade Amsterdam 1847-1899/1905",
"Provenance": "William Six van Wimmenum Amsterdam 1905-1919",
"Provenance": "Jan Six Amsterdam 1919-21",
"Provenance": "Sale Frederik Muller and Company Amsterdam. Six Collection Sale. April 12 1921 (bought in)",
"Provenance": "Sir Henry Deterding",
"Provenance": "presented by Sir Henry W. A. Deterding to the Rijksmuseum Amsterdam 1921 (A 2860)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "A View of Delft.",
"Image Link": "https://www.mauritshuis.nl/en/explore/the-collection/artworks/view-of-delft-92/",
"Provenance": "Probably Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "probably Maria de Knuijt Widow Van Ruijven Delft 1674-1681",
"Provenance": "Madgalena van Ruijven and Jacob Dissius 1681-82",
"Provenance": "Jacob Dissius and his father 1682-1695",
"Provenance": "Sale Jacob Dissuis Collection Sale Amsterdam May 19 1696 lot 31 (Df200)",
"Provenance": "Willem Philip Kops Haarlem Bloemendaal before 1805",
"Provenance": "Cornelia Kops-de Wolf Bloemendaal 1805-1820",
"Provenance": "Anna Johann Teding van Berkhout-Kops Haarlem 1820-22",
"Provenance": "Sale S.J. Sinstra Collection Amsterdam May 22 1822 lot 112 (Df2900) (to J. de Vries)",
"Provenance": "Koninklijk Kabinet van Schilderijen Netherlands",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Young Woman with a Water Pitcher.",
"Image Link": "https://www.metmuseum.org/art/collection/search/437881",
"Provenance": "Robert Vernon London",
"Provenance": "Sale London Vernon Collection April 21 1877 lot 97 (i) (as Metsu) (ˆDL404 10s. to Colnaghi)",
"Provenance": "Colnaghi London 1877-1878 (as Metsu) sold to",
"Provenance": "Lord Powerscourt 1878-?1887",
"Provenance": "Agnew London",
"Provenance": "Bourgeois Frères Paris",
"Provenance": "Pillet Paris 1887 sold to Marquand",
"Provenance": "Henry G. Marquand (1887-1889)",
"Provenance": "presented by him in 1889 to the Metropolitan Museum of Art New York (89.15.21)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Woman with a Lute.",
"Image Link": "https://www.metmuseum.org/art/collection/search/437880",
"Provenance": "Sale Amsterdam P. van der Schley and Daniel de Pré Collection December 22 1817 lot 62 ((g) 65 florins to Coclers)",
"Provenance": "art market Paris before 1900",
"Provenance": "Collis P. Huntington New York for 2000 frs.",
"Provenance": "bequeathed to the Metropolitan Museum of Art in 1900 with a life interest for his wife and son",
"Provenance": "presented by Archer M. Huntington to the Metropolitan Museum of Art in 1925 (25.110.24)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "A Lady at the Virginal with a Gentleman (The Music Lesson).",
"Image Link": "https://www.rct.uk/collection/405346/lady-at-the-virginals-with-a-gentleman?_ga=2.201902039.776645573.1560351591-698046801.1560351591",
"Provenance": "Perhaps Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "perhaps Maria de Knuijt his widow Delft 1674-1681",
"Provenance": "perhaps Magdelena van Ruijven and Jacob Dissius 1681-82",
"Provenance": "Jacob Dissius and his father 1692-1696",
"Provenance": "Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 6 as \"Een speelende Juffrouw op de Clavecimbael in een Kamer met een toeluisterend Monsier\" (80 florins)",
"Provenance": "possibly Sale Amsterdam July 11 1714 lot 12",
"Provenance": "Giovanni Antonio Pellegrini Amsterdam/The Hague 1718 Venice 1741",
"Provenance": "Angela Carriera widow Pellegrini Venice 1741-1742",
"Provenance": "Joseph Smith Venice and Mogliano 1742-1762",
"Provenance": "purchased on the continent by Richard Dalton for George III (as by Frans van Mieris for £20 000)",
"Provenance": "Windsor Castle from 1762;",
"Provenance": "Royal Collection Buckingham Palace London (inv. 109)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Concert.",
"Image Link": "https://www.gardnermuseum.org/experience/collection/10966",
"Provenance": "Possibly Pieter Claesz van Ruijven Delft (d.1674)",
"Provenance": "possibly his widow Maria de Knuijt Delft 1674-d.1681",
"Provenance": "possibly their daughter Magdalena van Ruijven Delft 1681-d.1682",
"Provenance": "possibly her widower Jacob Abrahamsz Dissius 1682-d.1695",
"Provenance": "Sale Amsterdam May 16 1696 lot 9 (as \"Een vrolijk gezelschap in een kamer kragtig en goet\" [A merry company in a room vigorous and good] (73 florins))",
"Provenance": "Sale Ph. van der Schley Amsterdam Johannes Lodewijk Strantwijk Collection May 10 1780 lot 150 (315 florins to A. Delfos for the \"Heer van Vlaardingen\")",
"Provenance": "Diederik van Leyden",
"Provenance": "Sale Paris Monsieur van Leyden Collection November 5 1804 lot 62 (350 Francs to Paillet)",
"Provenance": "Sale Foster London February 26 1835 lot 127",
"Provenance": "Sale Christie's London Admiral Lysaght and Other Collections April 2 1860 lot 49 (£21 to Toothe)",
"Provenance": "Sale Pillet Paris Demidoff Collection April 1 1869 lot 14 (5100 francs to Thoré-Bürger?)",
"Provenance": "Etienne Joseph Théophile Thoré Paris 1869 (d.1869)",
"Provenance": "Sale Drouot Paris Thoré-Burger Collection December 5 1892 (29 000 francs to Robert for Gardner)",
"Provenance": "Mrs. John L. Gardner Boston",
"Provenance": "Isabella Stewart Gardner Museum Boston (inv. P21W27) stolen March 18 1990",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Woman in Blue Reading a Letter.",
"Image Link": "https://www.rijksmuseum.nl/en/vermeers-the-little-street-discovered/objects#/SK-C-251,1",
"Provenance": "Possibly Sale Amsterdam Pieter van der Lip Collection June 1712 (110 florins) (by the vague description might apply to the \"Girl Reading a Letter\" at Dresden)",
"Provenance": "possibly Mozes de Chaves Amsterdam 1759",
"Provenance": "Sale Amsterdam November 30 1772 lot 23 (f) (40 florins to Fouquet)",
"Provenance": "Sale Amsterdam P. Lyonet Collection April 11 1791 lot 181 (43 florins to Fouquet)",
"Provenance": "Sale Ph. van der Schley Amsterdam August 14 1793 lot 73 (70 florins)",
"Provenance": "Herman ten Kate Amsterdam (?1793-1800)",
"Provenance": "Sale Amsterdam H. Ten Kate Collection June 1801 (110 florins to Tyssen)",
"Provenance": "Sale Paris Lespinasse de Langeac Collection January 16 1809 lot 85 (200 FF)",
"Provenance": "Sale Paris Lapeyrière Collection April 19 1825 lot 127 (2060FF to Berthaud)",
"Provenance": " J. Smith London 1839 (after 1833-1839)",
"Provenance": "sold for £79 to Adriaan van der Hoop Amsterdam in 1839",
"Provenance": "bequeathed by him to the city of Amsterdam 1854 Academy of Fine Arts Amsterdam (1854-1885)",
"Provenance": "lent by the city to the Rijksmuseum since 1885 (inv. c251)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Woman with a Pearl Necklace.",
"Image Link": "http://www.smb-digital.de/eMuseumPlus?service=direct/1/ResultLightboxView/result.t1.collection_lightbox.$TspTitleImageLink.link&sp=10&sp=Scollection&sp=SfieldValue&sp=0&sp=0&sp=3&sp=Slightbox_3x4&sp=0&sp=Sdetail&sp=0&sp=F&sp=T&sp=9",
"Provenance": "Probably Pieter Claesz van Ruijven Delft before 1674",
"Provenance": "probably Maria de Knuijt his widow Delft 1674-1681",
"Provenance": "probably their daughter Magdelena van Ruijven and her husband Jacob Dissius 1681-1682",
"Provenance": "Jacob Dissius and his father Delft 1682-1695",
"Provenance": "Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 36 (30 Df.)",
"Provenance": "Sale Amsterdam Johannes Caudri Collection September 6 1809 lot 42 (55 Df. to Ths. Spaan)",
"Provenance": "Sale Amsterdam D. Teengs Collection April 24 1811 lot 73 (36 Df. to Gruijter)",
"Provenance": "Sale Amsterdam March 26 1856 lot 93 (111 Df. to Philip)",
"Provenance": "Henri Grevedon Paris before 1860",
"Provenance": "Thoré-Bürger Paris c. 1860-1868",
"Provenance": "Sale Brussels Bürger and Other Collections April 22 1868 lot 49 (3 500 Bf. to Sedelmeyer for Suermondt)",
"Provenance": "Barthold Suermondt Aachen 1868-1874",
"Provenance": "acquired as part of Suermondt collection by the Kaiser Friedrich Museum Berlin 1874 (912b)",
"Provenance": "later designated the Gemäldegalerie Berlin",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Woman with a Balance.",
"Image Link": "https://www.nga.gov/collection/art-object-page.1236.html",
"Provenance": "Probaby Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "perhaps his widow Maria de Knuijt Delft 1674-1681",
"Provenance": "probably their daughter Magdalena van Ruijven and her husband Jacob Dissius Delft",
"Provenance": "Sale Jacob Dissius Collection May 16 1696 lot 1 (155 florins including a case to hold the painting)",
"Provenance": "Isaac Rooleeuw Amsterdam 1696-1701",
"Provenance": "Sale Amsterdam Isaac Rooleeuw Collection April 20 1701 lot 6 (113 florins)",
"Provenance": "Paulo van Uchelen Amsterdam 1701-1703",
"Provenance": "Paulo van Uchelen the Younger Amsterdam 1703-1754",
"Provenance": "Anna Gertruijda van Uchelen Amsterdam 1754-1766",
"Provenance": "Sale Amsterdam Van Uchelen Collection March 18 1767 lot 6 (170 florins to Kok)",
"Provenance": "Sale Amsterdam Nicolaas Nieuhoff Collection April 14 1777 lot 116 (235 florins to Van den Boogaerd)",
"Provenance": "Sale Amsterdam Trochel and Other Collections May 11 1801 lot 48 (60 florins to Van der Schley)",
"Provenance": "King Maximilian I Jozef Nymphenburg before 1825",
"Provenance": "Sale Munich King Maximilain I Jozef Collection December 5 1826 lot 101 (800 DM to Caraman Vienna and Paris)",
"Provenance": "Victor-Louis-Charles de Riquet duc de Caraman Paris (1826-1830)",
"Provenance": "Sale Paris Marquis de Caraman Collection May 10 1830 lot 68 (2 410 francs)",
"Provenance": "Casimir-Périer Paris (1830-1832)",
"Provenance": "his heirs 1832-1848",
"Provenance": "Sale Paris Casimir-Périer Collection May 5 1848 lot 7 (£141 15s. bought in)",
"Provenance": "Auguste Casimir Victor Laurent Périer Paris 1848-1876",
"Provenance": "Jean Paul Pierre Casimir Périer Paris 1876-1907",
"Provenance": "Countess De Sêgur-Périer Paris 1907-1911",
"Provenance": "P. and D. Colnaghi London and M. Knoedler and Co. New York 1911",
"Provenance": "Peter A.B. Widener Lynnewood Hall Elkins Park Philadelphia 1911-1915",
"Provenance": "Joseph E. Widener Lynnewood Hall Elkins Park Philadelphia 1915-1942",
"Provenance": "given by him to the National Gallery of Art Washington D.C. (1942.9.97)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "A Lady Writing.",
"Image Link": "https://www.nga.gov/collection/art-object-page.46437.html",
"Provenance": "Possibly Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "possibly Maria de Knuijt his widow Delft 1674-1681",
"Provenance": "possibly their daughter Magdalena van Ruijven and her husband Jacob Dissius Delft 1681-1682",
"Provenance": "possibly her widower Jacob Dissius Delft 1682-1695",
"Provenance": "Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 35 (63 florins)",
"Provenance": "J. van Buren The Hague",
"Provenance": "Sale The Hague J. van Buren Collection November 7 1808 lot 22",
"Provenance": "Cornelis Jan Luchtmans Rotterdam (1808-1816)",
"Provenance": "Sale Rotterdam Dr. Luchtmans Collection April 20 1816 lot 90 (70 florins to Lelie)",
"Provenance": "Sale Amsterdam H. Reydon and Other Collections April 5 1827 lot 26 withdrawn (to De Robiano)",
"Provenance": "François-Xavier Comte de Robaino Brussels (1827-1837)",
"Provenance": "Sale Brussels Comte F. De Robiano Collection May 1 1837 lot 436 (400 Beligina Francs to Héris)",
"Provenance": "Ludovic Count de Robiano Brussels 1837-1887",
"Provenance": "Heirs of De Robiano 1888-1906",
"Provenance": "J. and A. LeRoy Brussels 1907",
"Provenance": "J. Pierpont Morgan New York 1907-1913 (bought for £100 000 from G.S. Hellman)",
"Provenance": "J. Pierpont Morgan Jr. (1913-1940)",
"Provenance": "M. Knoedler and Co. New York",
"Provenance": "Sir Harry Oakes Nassau Bahamas 1940-1943",
"Provenance": "Lady Oakes Nassau Bahamas 1943-1946",
"Provenance": "M. Knoedler and Co. New York 1946",
"Provenance": "Horace Havemeyer New York 1946-1956",
"Provenance": "given in memory of their father Horace Havemeyer by Harry Waldron Havemeyer and Horace Havemeyer Jr. to the National Gallery of Art Washington 1962 (1962.10.1)",
"Provenance": "returned for her lifetime to Mrs. Horace Havemeyer New York",
"Provenance": "transferred to the National Gallery Washington 1966",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Mistress and Maid.",
"Image Link": "https://collections.frick.org/objects/274/mistress-and-maid",
"Provenance": "Probably Pieter Claesz van Ruijven Delft (d.1674)",
"Provenance": "probably his widow Maria de Knuijt Delft (1674-d.1681)",
"Provenance": "probaby their daughter Magdalena van Ruijven Delft (1681-d.1682)",
"Provenance": "maybe her widower Jacob Abrahamsz Dissius (1682-d.1695)",
"Provenance": "Sale Amsterdam May 16 1696 lot 7 (70 florins) (as \"Een Juffrouw die door een Meyd een brief gebragt word\" [A Young Woman to whom a letter is brought by a Maid]) (possibly Amsterdam picture instead)",
"Provenance": "Sale Rotterdam Josua van Belle Collection 1730 lot 92 (155 florins) possibly National Gallery Ireland picture",
"Provenance": "Sale Haring Amsterdam October 15 1738 lot 12 (160 florins to Oortman)",
"Provenance": "Sale The Hague Burgomaster Hendrik van Slingelandt Collection 1770 (m) not mentioned",
"Provenance": "Sale Paris Blondel de Gagny Collection December 10-24 1776 lot 72 (as Terburg) (3902 francs with \"Une Femme assise lisant une Letter\" to Lengliev for Poullain)",
"Provenance": "Sale Paris Poullain Collection March 15 1780 (40) (as Terburg) (4550 francs)",
"Provenance": "Sale Paillet Paris Van Helsleuter and Other Collections January 25 1802 lot 106 (2000 francs withdrawn) (to Pitour)",
"Provenance": "Ch. Lebrun dealer Paris",
"Provenance": "Sale Paillet Paris Lespinasse de Langeac Collection January 16 1809 lot 34 (600 francs to Lebrun)",
"Provenance": "Sale Paris Lebrun Collection Paris March 20 1810 lot 143 (601 francs to Chevalier)",
"Provenance": "Sale Paris Paillet Collection March 24 1818 lot 48 (460 francs)",
"Provenance": "Dufour Marseilles by 1819",
"Provenance": "Sale Bataillard Paris Duchesse de Berri Collection April 4-6 1837 lot 76 (4015 francs to Paillet)",
"Provenance": "Sale Boussod Paris E. Secrétan Collection July 1 1889 lot 139 (75 000 francs to Sedelmeyer)",
"Provenance": "A. Paulovstof Petrograd",
"Provenance": "Lawrie and Co. London",
"Provenance": "Sulley and Co. London 1905",
"Provenance": "James Simon Berlin (c.1906-c.1914)",
"Provenance": "Knoedler Gallery",
"Provenance": "Duveen Brothers 1919",
"Provenance": "Henry Clay Frick 1919 ($265 000)",
"Provenance": "Frick Collection New York (1919.1.126)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Girl with a Pearl Earring.",
"Image Link": "https://www.mauritshuis.nl/en/explore/the-collection/artworks/girl-with-a-pearl-earring-670/",
"Provenance": "Possibly Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "possibly Maria de Knuijt Widow Van Ruijven Delft 1647-1681",
"Provenance": "possibly Magdalena van Ruijven and Jacob Dissius Delft 1681-1682",
"Provenance": "Jacob Dissius and his father 1682-1695",
"Provenance": "Sale Amsterdam May 16 1696 lot 38 or 39 or 40",
"Provenance": "Sale Braam The Hague 1882 ( 1881) lot 50 (A.A. des Tombe 2 ( 2.2) florins);",
"Provenance": "Arnoldus Andries des Tombe The Hague 1882 (1881) -1902",
"Provenance": "Bequeathed by him 1903 to the Koninklijk Kabinet van Schilderijen Mauritshuis The Hague (inv. 670)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Study of a Young Woman.",
"Image Link": "https://www.metmuseum.org/art/collection/search/437879",
"Provenance": "Possibly Pieter Claesz. van Ruijven Delft before 1674",
"Provenance": "possibly his widow Maria de Knuijt Delft 1674-1681",
"Provenance": "possibly their daughter Magdalena van Ruijven and Jacob Dissius her husband Delft 1681-82",
"Provenance": "Sale Amsterdam May 16 1696 lot 38 39 or 40 (36 or 17 florins)",
"Provenance": "Jan Luchtmans Rotterdam in 1816",
"Provenance": "Sale Muys Rotterdam Jan Luchtmans Collection April 20 1816 lot 92 (3 florins)",
"Provenance": "Auguste Marie Raymond Duke of Arenberg Belgium by 1829 (d.1833)",
"Provenance": "Arenberg family Brussels and Schloss Meppen German 1833-1945",
"Provenance": "Engelbert-Marie 9th duc d'Arenberg Brussels Schloss Meppen and Schloss Nordkirchen Germany 1945-d.1949)",
"Provenance": "his son Engelbert-Charles 10th duc d'Arenberg 1949-1955",
"Provenance": "Germaine Seligman dealer",
"Provenance": "sold by him for $325 000 to Mr. and Mrs. Charles B. Wrightsman New York 1955-79",
"Provenance": "given by them in 1979 to the Metropolitan Museum of Art New York in honor of Theodore Rousseau Jr. (1979.396.1)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "Girl with a Red Hat.",
"Image Link": "https://www.nga.gov/collection/art-object-page.60.html",
"Provenance": "Probably Pieter Claesz van Ruijven Delft before 1674",
"Provenance": "perhaps his widow Maria de Knuijt Delft 1674-1681",
"Provenance": "probably their daughter Magdalena van Ruijven and her husband Jacob Dissius Delft",
"Provenance": "perhaps in Sale Amsterdam Dissius Collection May 16 1696 possibly lot 38 39 or 40 (l) in Sale sold for 36 or 17 florins",
"Provenance": "Lafontaine Collection Paris",
"Provenance": "Sale Hôtel de Bullion Paris Lafontaine Collection December 10-12 1822 lot 28 (i) (200 francs)",
"Provenance": "Général le Baron Atthalin of Colmar (h) 1823-1856",
"Provenance": "bequeathed to his grandson Laurent Atthalin 1856-1911",
"Provenance": "his widow Baroness Laurent Atthalin 1911-1925",
"Provenance": "M. Knoedler and Co. New York 1925",
"Provenance": "Andrew W. Mellon (for $290 000) (1925-1932)",
"Provenance": "in 1932 A.W. Mellon Educational and Charitable Trust Washington",
"Provenance": "in 1937 National Gallery of Art Washington (1937.1.53)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Studio of Johannes Vermeer.",
"Title": "Young Girl with a Flute.",
"Image Link": "https://www.nga.gov/collection/art-object-page.1237.html",
"Provenance": "Possibly Pieter Claesz van Ruijven Delft (d.1674)",
"Provenance": "possibly his widow Maria de Knuijt Delf (1674-d.1681)",
"Provenance": "possibly their daughter Magdalena van Ruijven Delft (1681-d.1682)",
"Provenance": "possibly her widower Jacob Dissius (1682-d.1695)",
"Provenance": "possibly Sale Amsterdam Jacob Dissius Collection May 16 1696 lot 38 39 or 40 [tronies] (36 or 16 florins)",
"Provenance": "?Van Son family 's-Hertogenbosch",
"Provenance": "Jan Mahie van Bostel en Liempde 's Hertogenosch and his wife Geertruida van Bostel en Liempde (née Van Son d.1876)",
"Provenance": "purchased from the estate for 32 flori by their daughter ns Jaqueline Gertrude Marie de Grez-van Boxtel en Liempde wife of Jonkheer Jan de Grez Brussels (1876-1911)",
"Provenance": "Jonas Paris 1911",
"Provenance": "August Janssen Amsterdam",
"Provenance": "Jacques Goudstikker Amsterdam 1919-1921",
"Provenance": "Frederick Muller Amsterdam and Knoedler New York 1921-1923",
"Provenance": "sold to Joseph E. Widener Lynnewood Hall Elkins Park Pennsylvania",
"Provenance": "given by him to the National Gallery of Art Washington D.C. (1942.9.98)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Art of Painting.",
"Image Link": "https://www.khm.at/en/objectdb/detail/2574/?offset=0&lv=list",
"Provenance": "Catharina Bolnes Vermeer's widow 1675-1676",
"Provenance": " Maria Thins her mother",
"Provenance": "Sale Delft March 15 1677",
"Provenance": "possibly Baron Gerard van Swieten (1772)",
"Provenance": "his son Gottfried van Swieten (d.1803)",
"Provenance": "his estate 1803-1813 (as de Hooch)",
"Provenance": "sold to Count Johann Rudolf Czernin Vienna 1813-1845 (as de Hooch)",
"Provenance": "by descent to Count Eugen Czernin and Jaromir Czernin",
"Provenance": "Adolf Hitler 1940-1945",
"Provenance": "Munich Collecting Point 1945",
"Provenance": "transferred November 17 1945 to the Kunsthistorisches Museum Vienna and in 1958 to the museum's permanent collection (inv. 9128)",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Geographer.",
"Image Link": "https://upload.wikimedia.org/wikipedia/commons/0/0e/Johannes_Vermeer_-_The_Astronomer_-_WGA24685.jpg",
"Provenance": "Possibly Adriaen Paets I Rotterdam (?1669-d.1686)",
"Provenance": "possibly his son Adriaen Paets II Rotterdam (1686-d.1712)",
"Provenance": "Sale Rotterdam April 27 1713 lot 10 (300 florins with pendant) (i) (as \"een stuk verbeeldende een Mathematis Konstenaar door vander Meer\" or lot 11 \"Een dito door denzelven\")",
"Provenance": "Hendrik Sorgh Amsterdam (?1713-d.1720)",
"Provenance": "Sale Amsterdam Hendrik Sorgh Collection March 28 1720 lot 3 (i) or 4 (160 florins with pendant)",
"Provenance": "Govert Looten Amsterdam (d.1727)",
"Provenance": "Sale Amsterdam Govert Looten Collection March 13 (March 31) 1729 lot 6 (104 florins with pendant)",
"Provenance": "Jacob Crammer Simonsz Amsterdam (d.1778)",
"Provenance": "Sale Amsterdam Jacob Crammer Simonsz Collection November 25 1778 lot 20 (172 florins to Wubbels)",
"Provenance": "Jean Etiènne Fizeaux Amsterdam 1778-1780",
"Provenance": "Widow Fizeaux Amsterdam 1780-1785 (?)",
"Provenance": "Pieter Fouquet Amsterdam and Alexandre Joseph Paillet Paris 1784-1785",
"Provenance": "Jan Danser Nijman Amsterdam (?before 1794-d.1796)",
"Provenance": "Sale Amsterdam J. Danser Nijman Collection August 16 1797 lot 168 (133 florins to Josi)",
"Provenance": "Christian Josi Amsterdam and London",
"Provenance": "Arnoud de Lange Amsterdam",
"Provenance": "Sale Amsterdam Arnoud de Lange Collection December 12 1803 lot 55 (360 florins to Coclers)",
"Provenance": "Johann Goll van Franckenstein Jr. Velzen and Amsterdam (before 1821)",
"Provenance": "Pieter Hendrick Goll van Franckenstein Amsterdam (before 1832)",
"Provenance": "Sale Amsterdam Jonkheer J. Goll van Franckenstein Collection July 1 1833 lot 47 (195 florins to Nieuwenhuys)",
"Provenance": "Alexandre Dumont Cambrai 1860-1866 (sold through Thoré-Bürger to Périere)",
"Provenance": "Isaac Périere Paris (1866-1872)",
"Provenance": "Sale Paris Isaac Pereire Collection March 6 1872 lot 132 (17 200 ff)",
"Provenance": "?Max Kann Paris 1872",
"Provenance": "Sedelmeyer Paris c. 1875 sold to Demidoff",
"Provenance": "San Donato Florence Demidoff Collection Sale March 15 1880 lot 1124 (£22 000 probably to Bösch)",
"Provenance": "Adolf Joself Bösch Döbling Vienna (?1880-d.1884)",
"Provenance": "Joseph Bösch Collection Sale Vienna April 28 1885 lot 32 (8 000 ÖS to Kohlbacher of the Frankfurter Kunstverein on behalf of the Städelsches Kunstinstitut)",
"Provenance": "given on May 26 1885 for 6 380 DM to the Städelsches Kunstinstitut und Städtische Galerie Frankfurt am Main (1149)",
"Provenance": "",
"Provenance": ""
},
{
"Artist": "Vermeer Johannes 1632-1675.",
"Title": "The Astronomer.",
"Image Link": "https://sammlung.staedelmuseum.de/en/work/the-geographer",
"Provenance": "Possibly Adriaen Paets I Rotterdam (?1669-d.1686)",
"Provenance": "possibly his son Adriaen Paets II Rotterdam (1686-d.1712)",
"Provenance": "Sale Rotterdam April 27 1713 lot 11 (or 10) (300 florins with pendant)",
"Provenance": "Hendrik Sorgh Amsterdam (?1713-d.1720)",
"Provenance": "Sale Amsterdam Hendrik Sorgh Collection March 28 1720 lot 3 or 4 (160 florins with pendant)",
"Provenance": "Govert Looten Amsterdam (d.1727)",
"Provenance": "Sale Amsterdam Govert Looten Collection March 13 1729 lot 6 (104 florins with pendant)",
"Provenance": "Jacob Crammer Simonsz Amsterdam (d.1778)",
"Provenance": "Sale Amsterdam Jacob Crammer Simonsz. Collection November 25 1778 lot 18 (sold with pendant for fl.172 to De Vries)",
"Provenance": "Jean-Étienne Fizeaux (g) Amsterdam (1778-d.1780)",
"Provenance": "his widow Amsterdam (1780-?1785)",
"Provenance": "Pieter Fouquet Amsterdam and Alexandre Joseph Paillet Paris 1784-1785",
"Provenance": "Jan Danser Nijman Amsterdam (?1794-d.1796)",
"Provenance": "Sale Amsterdam J. Danser Nijman Collection August 16 1797 lot 167 (270 florins to Gildemeester)",
"Provenance": "Jan Gildemeester Amsterdam (1797-d.1799)",
"Provenance": "Sale Amsterdam Jan Gildemeester Collection June 11 1800 lot 139 (340 florins to Labouchère)",
"Provenance": " Sale ?London Michael Bryan Collection May 9 1804 lot 145 (£36 15s.)",
"Provenance": "John Gibbons near Birmingham (by 1820-1828 or later)",
"Provenance": "Sale October 7 1820 lot 31 (£35 14s. bought in)",
"Provenance": "his brother? William Gibbons",
"Provenance": "Sale London June 18 1857 lot 52 (as \"A Philosopher\") (£53 11s. to Henry? Tate)",
"Provenance": "Sale Christie's London 1863 lot 3",
"Provenance": "Léopold Double Paris",