-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0056.xml
1207 lines (1136 loc) · 62.8 KB
/
nbuumu_0056.xml
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
<ead xmlns="urn:isbn:1-931666-22-9" xsi="xsi=&quot;http://www.w3.org/2001/XMLSchema-instance" xlink="http://www.w3.org/1999/xlink" schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader audience="external" langencoding="iso639-2b" scriptencoding="iso15924" relatedencoding="dc" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="nbuumu" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 56::Irene Haupt Photographs of June in Buffalo 2011)//EN" encodinganalog="identifier">nbuumu_0056</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the Irene Haupt Photographs of
June in Buffalo, <date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="2011-06">2011</date>
</titleproper>
<titleproper type="filing" altrender="nodisplay"> Haupt (Irene) Photographs of June
in Buffalo 2011 </titleproper>
<author encodinganalog="contributor">Finding aid prepared by John Bewley.</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="publisher">State University of New York at Buffalo. Music Library</publisher>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
<p>&#xA9; <date encodinganalog="date" type="publication" era="ce" calendar="gregorian">2012</date>. State University of
New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in EAD by John Bewley, April 2012.</creation>
<langusage>Finding aid is in <language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS ( <title render="italic" linktype="simple">Describing Archives:
A Content Standard </title>). </descrules>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="marc21">
<did>
<head>Collection Overview</head>
<unittitle label="Title" encodinganalog="245$a"> Irene Haupt Photographs of June in
Buffalo, <unitdate encodinganalog="245$f" normal="2011-06" type="inclusive" datechar="creation" era="ce" calendar="gregorian"> 2011</unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 56</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="creator" source="lcnaf"> Haupt, Irene
</persname>
</origination>
<physdesc label="Extent">
<extent unit="DVD" encodinganalog="300$a">1 DVD</extent>
<extent unit="image-file" encodinganalog="300$a"> (70 digital images in tiff
format) </extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546">No textual content in
the collection.</langmaterial>
<repository label="Repository" encodinganalog="852">
<corpname>State University of New York at Buffalo. Music Library</corpname>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
</repository>
<abstract label="Abstract" encodinganalog="520$a"> Contains 70 digital images of
musicians who participated in the June in Buffalo Festival 2011 at the University at
Buffalo. </abstract>
<note encodinganalog="500">
<p>All files in the collection renamed to reflect chronological sequence. Renamed
files stored with the collection on a separate DVD. </p>
</note>
<unitdate type="inclusive" normal="2011-06"> 2011</unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], Irene Haupt Photographs of June in Buffalo, 2011, Music
Library, The State University of New York at Buffalo.</p>
</prefercite>
<accessrestrict encodinganalog="506">
<head>Terms of Access</head>
<p>Materials can be examined by qualified researchers in the Music Library during
hours of operation during which Music Librarians are present. In order to insure
access, researchers are advised to contact the Music Library in advance of
visits. </p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Copyright</head>
<p>Copyright for the materials in the collection does not reside with the Music
Library. Therefore, patrons wishing to publish any item, or part of an item from
this collection for any purpose, are responsible for securing requisite
permissions. </p>
</userestrict>
</descgrp>
<descgrp type="admininfo">
<head>Administrative Information</head>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>Purchased from Irene Haupt, 2011.</p>
</acqinfo>
<accruals encodinganalog="584">
<head>Accruals and Additions</head>
<p>No further accruals are expected to this collection. </p>
</accruals>
<altformavail encodinganalog="530">
<head>Alternate Forms</head>
<p>The entire collection of images from June in Buffalo 2011 is
available in
<extref href="http://digital.lib.buffalo.edu/cdm/landingpage/collection/LIB-MUS009" show="new" actuate="onrequest" linktype="simple">University at Buffalo Libraries Digital
Collections</extref>. </p>
</altformavail>
<processinfo encodinganalog="583">
<head>Processing Information</head>
<p>Processed by Jessica Nay.</p>
</processinfo>
</descgrp>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>Irene Haupt, a graduate of the State University of New York at Buffalo, has been
documenting the Buffalo arts scene through her photography since 1976. During that
time she has worked for, or with, some of the most notable institutions in Buffalo,
including the Irish Classical Theatre, Studio Arena Theater, the Kavinoky Theatre,
the Buffalo Philharmonic Orchestra, the Theatre of Youth, the Albright-Knox Art
Gallery, and the State University of New York at Buffalo. In addition to her
specialty of theater photography, Irene Haupt has also devoted much of her career to
the photography of musicians and musical events. Most notable is her documentation
of the contemporary music scene in Buffalo, including coverage of the University at
Buffalo's June in Buffalo festival of new music, 1982-1987, and 2000 to the present.
Over the course of those years, she has created a visual record that contains images
of some of the most significant composers and performers of the last quarter
century. The list of names is impressive: Aaron Copland, Morton Feldman, Leo Smit,
Virgil Thomson, Steve Reich, Ralph Shapey, Henry Brant, Earle Brown, Ursula Oppens,
Jan Williams, Lukas Foss, Philip Glass, Otto Luening, Conlon Nancarrow, Ernst
Krenek, Larry Austin, Lejaren Hiller, Elliott Carter, Milton Babbitt, John Cage,
Charles Wuorinen, Jacob Druckman, and Yvar Mikhashoff, among others. </p>
<p>The June in Buffalo festival of contemporary music was begun at the University at
Buffalo in 1975 by composer Morton Feldman. He directed the festival 1975-1978 and
in 1980. The festival was dormant from 1981 through 1985. David Felder revived the
festival in 1986 and has been its director since that time.</p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The collection of Irene Haupt Photographs of June in Buffalo 2011 contains 70
digital images of participants in the festival for 2011. The list of musicians
includes David Felder, Brad Lubman, Jean Kopperud, Tom Kolor, Eric Chaslow, James Baker, Eric Huebner,
Ensemble Linea, Edmund Campion, Hilda Paredes, Irvine Arditti, Jeffrey Stadelman, Signal Ensemble, Magnus Andersson,
Jon Nelson and the Genkin Philharmonic, Jonathan Golove, and the Slee Sinfonietta.</p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p>One series arranged chronologically.</p>
</arrangement>
<dsc type="in-depth">
<head>Container List</head>
<c level="item" id="c_5ccc8a2140968">
<did>
<container type="image-file">jib2011_01.jpg</container>
<unittitle>James Baker conducting a rehearsal of David Felder's work, Requiescat, with the Slee Sinfonietta at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2010-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2391"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140986">
<did>
<container type="image-file">jib2011_02.jpg</container>
<unittitle>Percussionist Tom Kolor and clarinetist Jean Kopperud rehearsing David Felder's work, Requeiscat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2392"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140991">
<did>
<container type="image-file">jib2011_03.jpg</container>
<unittitle>Violinist Maureen Yuen, guitarist Magnus Andersson, violist Adrienne Elisha, and violoncellist Jonathan Golove rehearsing David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2393"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a214099b">
<did>
<container type="image-file">jib2011_04.jpg</container>
<unittitle>Slee Sinfonietta rehearsing David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2394"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409a4">
<did>
<container type="image-file">jib2011_05.jpg</container>
<unittitle>James Baker conducting a rehearsal of David Felder's work, Requeiscat, with Slee Sinfonietta at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2395"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409ad">
<did>
<container type="image-file">jib2011_053.jpg</container>
<unittitle>Electromagnetically prepared piano at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08;</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2459"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409b7">
<did>
<container type="image-file">jib2011_06.jpg</container>
<unittitle>James Baker conducting a rehearsal of David Felder's work, Requiescat, with Slee Sinfonietta at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2396"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409c0">
<did>
<container type="image-file">jib2011_063.jpg</container>
<unittitle>Still image from Elliot Caplan's video for David Felder's work, Shamayim, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-09;</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2460"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409cc">
<did>
<container type="image-file">jib2011_07.jpg</container>
<unittitle>James Baker conducting percussionist Tom Kolor and other members of Slee Sinfonietta in a rehearsal of David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2397"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409d7">
<did>
<container type="image-file">jib2011_08.jpg</container>
<unittitle>Composer David Felder, conductor James Baker, violoncellist Jonathan Golove, clarinetist Jean Kopperud, and violist Adrienne Elisha rehearsing Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2398"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409e1">
<did>
<container type="image-file">jib2011_09.jpg</container>
<unittitle>Conductor James Baker and pianist Eric Huebner in a rehearsal of David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2399"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409ec">
<did>
<container type="image-file">jib2011_10.jpg</container>
<unittitle>Clarinetist Jean Kopperud, composer Eric Chasalow, and pianist Eric Huebner at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2400"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a21409f7">
<did>
<container type="image-file">jib2011_11.jpg</container>
<unittitle>Guitarist Magnus Andersson at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2401"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a02">
<did>
<container type="image-file">jib2011_12.jpg</container>
<unittitle>Pianists Steve Beck and Eric Huebner at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2402"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a0e">
<did>
<container type="image-file">jib2011_13.jpg</container>
<unittitle>Composer Eric Chasalow at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2403"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a19">
<did>
<container type="image-file">jib2011_14.jpg</container>
<unittitle>Composer Eric Chasalow at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2404"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a27">
<did>
<container type="image-file">jib2011_15.jpg</container>
<unittitle>Pianist Eric Huebner and percussionist Tom Kolor rehearsing Edmund Campion's work, Domus Aurea, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2405"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a33">
<did>
<container type="image-file">jib2011_16.jpg</container>
<unittitle>James Baker conducting a rehearsal of Eric Chasalow's work, Suspicious Motives, with flutist Barry Crawford, clarinetist Jean Kopperud, violinist Yuki Numata, and violoncellist Jonathan Golove at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2406"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a40">
<did>
<container type="image-file">jib2011_17.jpg</container>
<unittitle>Pianist Steve Beck and percussionist Jon Hepfer rehearsing Friedrich Kern's work, Eins Zwei, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-05</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2409"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a4d">
<did>
<container type="image-file">jib2011_18.jpg</container>
<unittitle>Composer Edmund Campion at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2407"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a5b">
<did>
<container type="image-file">jib2011_19.jpg</container>
<unittitle>Composer Edmund Campion at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2408"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a69">
<did>
<container type="image-file">jib2011_20.jpg</container>
<unittitle>Composers David Felder and Edmund Campion at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2410"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a77">
<did>
<container type="image-file">jib2011_21.jpg</container>
<unittitle>Composer Eric Chasalow presenting a lecture at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2411"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a85">
<did>
<container type="image-file">jib2011_22.jpg</container>
<unittitle>Composer Eric Chasalow presenting a lecture at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2412"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140a95">
<did>
<container type="image-file">jib2011_23.jpg</container>
<unittitle>Student composer Chun Ting Pang with Ensemble Linea during a rehearsal of Pang's work, When the Rain is Dissolving the Clouds, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2413"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140aa4">
<did>
<container type="image-file">jib2011_24.jpg</container>
<unittitle>Composer Hilda Paredes with violinist Yuki Numata, violoncellist Jonathan Golove, and pianist Eric Huebner during a rehearsal of her work, Alegoria Tri-partita, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2414"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140ab3">
<did>
<container type="image-file">jib2011_25.jpg</container>
<unittitle>Composer Hilda Paredes with violoncellist Jonathan Golove and violinist Yuki Numata in a rehearsal of her work, Alegoria Tri-partita, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2415"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140ac3">
<did>
<container type="image-file">jib2011_26.jpg</container>
<unittitle>Ensemble Linea at June in Buffalo 2011. Back row left to right: Andrea Nagy, Maiko Matsuoka, Johannes Burghoff, Keiko Murakami. Front row left to right: Olivier Maurel, Genevieve Letang, Jean-Philippe Wurtz, Reto Staub., <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2416"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140ad3">
<did>
<container type="image-file">jib2011_27.jpg</container>
<unittitle>Student composers at June in Buffalo 2011: Jeff Roberts (outside railing), Matthew Sargent, Francisco Castillo Trigueros, Michael Thomas Foumai, David Carter, Jacob Gotlib, Paul Clift, Amadeus Regucera, Sivan Eldar, Brian Mark, Friedrich Heinrich Kern, Ethan Hayden, Chappell Kingsland, Cherise Leiter, Matthew Goodheart, Nathan Heidelberger, Brian Penkrot (outside right railing, back), and Leeds Barroll (outside right railing, front), <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2417"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140ae3">
<did>
<container type="image-file">jib2011_28.jpg</container>
<unittitle>Trumpet player Jon Nelson at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2418"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140af4">
<did>
<container type="image-file">jib2011_29.jpg</container>
<unittitle>Composer Jeffrey Stadelman with trumpet player Jon Nelson and pianist Eric Huebner at a rehearsal of Stadelman's work, Mr. Natural, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2419"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b04">
<did>
<container type="image-file">jib2011_30.jpg</container>
<unittitle>Student composer Jeff Roberts in a rehearsal of his work, Breaking Bamboo, Shaking Jade, with flutist Barry Crawford, pianist Steve Beck, and percussionist Jon Hepfer at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2420"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b16">
<did>
<container type="image-file">jib2011_31.jpg</container>
<unittitle>Student composer Ethan Hayden and composer Hilda Paredes at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2421"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b28">
<did>
<container type="image-file">jib2011_32.jpg</container>
<unittitle>Composer Jeffrey Stadelman in a workshop with student composers at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2422"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b3a">
<did>
<container type="image-file">jib2011_33.jpg</container>
<unittitle>Composer Eric Chasalow in a workshop with student composers at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2423"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b4c">
<did>
<container type="image-file">jib2011_34.jpg</container>
<unittitle>Composer Edmund Campion performing his work, Roulette, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2424"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b5f">
<did>
<container type="image-file">jib2011_35.jpg</container>
<unittitle>Composer Eric Chasalow with guitarist Magnus Andersson at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2430"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b72">
<did>
<container type="image-file">jib2011_36.jpg</container>
<unittitle>Conductor Brad Lubman and Signal Ensemble in a workshop at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2425"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b85">
<did>
<container type="image-file">jib2011_37.jpg</container>
<unittitle>Clarinetist Jean Kopperud performing Eric Chasalow's work, In a Manner of Speaking, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2426"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140b98">
<did>
<container type="image-file">jib2011_38.jpg</container>
<unittitle>Pianist Eric Huebner and trumpet player Jon Nelson performing Jeffrey Stadelman's work, Mr. Natural, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2427"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140bae">
<did>
<container type="image-file">jib2011_39.jpg</container>
<unittitle>Student composer Jacob Gotlib in a rehearsal of his work, Year Without Summer, with members of Ensemble Linea, violoncellist Johannes Burghoff and conductor Jean-Philippe Wurtz, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2428"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140bc2">
<did>
<container type="image-file">jib2011_40.jpg</container>
<unittitle>James Baker conducting the Slee Sinfonietta in a rehearsal of David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2429"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140bd7">
<did>
<container type="image-file">jib2011_41.jpg</container>
<unittitle>James Baker conducting the Slee Sinfonietta in a rehearsal of David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2431"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140bec">
<did>
<container type="image-file">jib2011_42.jpg</container>
<unittitle>Composer David Felder at sound console with Christopher Jacobs and J. T. Rinker in a rehearsal at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2432"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c01">
<did>
<container type="image-file">jib2011_43.jpg</container>
<unittitle>Guitarist Magnus Andersson performing at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2433"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c17">
<did>
<container type="image-file">jib2011_44.jpg</container>
<unittitle>James Baker conducting the Slee Sinfonietta in a performance of David Felder's work, Requiescat, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2434"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c2e">
<did>
<container type="image-file">jib2011_45.jpg</container>
<unittitle>Violinist Yuki Numata, violoncellist Jonathan Golove, and pianist Eric Huebner performing Hilda Paredes' work, Alegoria Tri-partita, at June in Buffalo 2011, with Steven Beck, page-turner, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2435"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c45">
<did>
<container type="image-file">jib2011_46.jpg</container>
<unittitle>Composer Hilda Paredes with violinist Yuki Numata, violoncellist Jonathan Golove, and pianist Eric Huebner after a performance of Paredes' work, Alegoria Tri-partita, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2436"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c5d">
<did>
<container type="image-file">jib2011_47.jpg</container>
<unittitle>Clarinetist Jean Kopperud and percussionist Tom Kolor performing Jeffrey Stadelman's work, Wills and Wonts, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2437"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c75">
<did>
<container type="image-file">jib2011_48.jpg</container>
<unittitle>Composer Jeffrey Stadelman with clarinetist Jean Kopperud and percussionist Tom Kolor after the performance of Stadelman's work, Wills and Wonts, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2438"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140c8d">
<did>
<container type="image-file">jib2011_49.jpg</container>
<unittitle>James Baker conducting a performance of Eric Chasalow's work, Suspicious Motives, with violinist Yuki Numata, violoncellist Jonathan Golove, clarinetist Jean Kopperud, and flutist Barry Crawford at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2439"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140ca5">
<did>
<container type="image-file">jib2011_50.jpg</container>
<unittitle>Composer Eric Chasalow with conductor James Baker, violinist Yuki Numata, violoncellist Jonathan Golove, clarinetist Jean Kopperud, and flutist Barry Crawford after the performance of Chasalow's work, Suspicious Motives, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2440"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140cbe">
<did>
<container type="image-file">jib2011_51.jpg</container>
<unittitle>Conductor James Baker with clarinetist Greg Barrett, percussionist Tom Kolor, pianist Steve Beck, pianist Eric Huebner, violoncellist Jonathan Golove, and violoncellist Evelyn Farny at a performance of Jeffrey Stadelman's work, Incidental Music, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-07</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2441"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140cd7">
<did>
<container type="image-file">jib2011_52.jpg</container>
<unittitle>Student composer Per Bloland in a workshop performance of his work, Negative Mirror II, with violinist Maiko Matsuoka, violoncellist Johannes Burghoff, clarinetist Andrea Nagy, flutist Keiko Murakami, and conductor Jean-Philippe Wurtz of Ensemble Linea at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2442"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140cf0">
<did>
<container type="image-file">jib2011_54.jpg</container>
<unittitle>Percussionist Olivier Maurel of Ensemble Linea playing a melodica in a workshop at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2443"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d0a">
<did>
<container type="image-file">jib2011_55.jpg</container>
<unittitle>Pianist Reto Staub of Ensemble Linea at an electronically prepared piano in a workshop at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2444"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d25">
<did>
<container type="image-file">jib2011_56.jpg</container>
<unittitle>Student composer Per Bloland in a workshop with pianist Reto Staub of Ensemble Linea at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2445"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d40">
<did>
<container type="image-file">jib2011_57.jpg</container>
<unittitle>Student composer Francisco Castillo Trigueros and flutist Alice Teyssier of Slee Sinfonietta at a workshop performance of Trigueros' work, Nealika, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2446"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d5b">
<did>
<container type="image-file">jib2011_58.jpg</container>
<unittitle>Brad Lubman conducting a rehearsal with the Signal ensemble at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2447"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d77">
<did>
<container type="image-file">jib2011_59.jpg</container>
<unittitle>Composer Hilda Paredes with violinist Irvine Arditti at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2448"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140d93">
<did>
<container type="image-file">jib2011_60.jpg</container>
<unittitle>Composer Hilda Paredes with violinist Irvine Arditti at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2450"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140daf">
<did>
<container type="image-file">jib2011_61.jpg</container>
<unittitle>Violinist Irvine Arditti at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2449"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140dcc">
<did>
<container type="image-file">jib2011_62.jpg</container>
<unittitle>Pianist Eric Huebner and percussionist Tom Kolor performing Edmund Campion's work, Domus Aurea, at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-08</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2451"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140de9">
<did>
<container type="image-file">jib2011_64.jpg</container>
<unittitle>Student composer Per Bloland setting up the electronically prepared piano at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-09</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2452"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a2140e08">
<did>
<container type="image-file">jib2011_65.jpg</container>
<unittitle>Ensemble Linea workshop at June in Buffalo 2011, <unitdate type="inclusive" normal="" era="ce" calendar="gregorian">2011-06-09</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/cdm/ref/collection/LIB-MUS009/id/2453"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1
digital image (tiff format)</extent>
</physdesc>