-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrz.html
1904 lines (1902 loc) · 227 KB
/
rz.html
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
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Mamiya RZ Lenses</title>
</head>
<body>
<div class="body" style="vertical-align:bottom;min-height:1868px;color:rgb(255, 255, 255);text-align:left;overflow-x:visible;overflow-y:visible;margin: 8px; background-color:black">
<h1 style="text-align:left;">Mamiya RZ Lenses</h1>
<p style="text-align:left;"> </p>
<p style="text-align:left;"><font color="#FFFF00" style="text-align:left;">(the current lenses are highlighted in yellow)</font></p>
<table style="width:100%;text-align:left;border-width: 1px; border-style: outset; border-color: #999; ">
<tbody style="text-align:left;"><tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Lens</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Optical</b><p style="text-align:left;"><b style="text-align:left;">Construction</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Aperture</b><p style="text-align:left;"><b style="text-align:left;">Range</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Angle of View</b><p style="text-align:left;"><b style="text-align:left;">(deg. diag.)</b></p><p style="text-align:left;"><b style="text-align:left;">(6 x 7)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Closest
</b>
<p style="text-align:left;"><b style="text-align:left;">Focus (mm)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Maximum</b><p style="text-align:left;"><b style="text-align:left;">Magnification</b></p><p style="text-align:left;"><b style="text-align:left;">(6 x 7)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Area</b><p style="text-align:left;"><b style="text-align:left;">Covered (mm)</b></p><p style="text-align:left;"><b style="text-align:left;">(6 x 7)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">35 mm</b><p style="text-align:left;"><b style="text-align:left;">Equivalent</b></p><p style="text-align:left;"><b style="text-align:left;">(6 x 7)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">IR focus<p style="text-align:left;">(mm)</p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Lens Hood</b><p style="text-align:left;"><b style="text-align:left;">(Mamiya Part #)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Filter</b><p style="text-align:left;"><b style="text-align:left;">Size (mm)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Dimensions</b><p style="text-align:left;"><b style="text-align:left;">(mm)</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Weight</b><p style="text-align:left;"><b style="text-align:left;">(g)</b></p></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-37mm-f4.5-fisheye.html" style="color:rgb(0, 255, 255);text-align:left;">Z 37 mm f/4.5</a>
(1)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">9 elements, 6 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<p align="right"><font color="#FFFF00">180</font></p></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">260</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:1.23</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">45 x 56</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">18 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.4</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">None</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">40.5 mm rear mount</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">100.3 x 112</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1280</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 50 mm f/4.5</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">11 elements, 9 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">4.5 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<p align="right">84</p></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">280</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.90</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">62 x 77</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">24 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.4</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Slip on (213-370)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">82.2 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">760</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-50mm-f4.5-uld-l.html" style="color:rgb(0, 255, 255);text-align:left;">M 50 mm f/4.5 ULD L</a></font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">15 elements, 11 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">82</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">240</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.88</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">63 x 78</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">24 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Slip on (213-370)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">93 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">954</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 65 mm f/4.0</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">7 elements, 7 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">4.0 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">69</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">320</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.70</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">80 x 100</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">32 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Slip on (213-370)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">80 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">715</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-65mm-f4.html" style="color:rgb(0, 255, 255);text-align:left;">M 65 mm f/4.0 L-A</a>
(<a href="https://archive.is/o/5bxkQ/http://old.photodo.com/prod/lens/detail/MaRZM65_4L-A-346.shtml" style="color:rgb(0, 255, 255);text-align:left;">P</a>)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">9 elements, 8 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.0 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">68</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">320</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.70</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">80 x 100</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">31 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.24</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Slip on (213-370)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">113 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1060</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">M 75 mm f/3.5 L (<a href="https://archive.is/o/5bxkQ/http://old.photodo.com/prod/lens/detail/MaRZM75_35L-347.shtml" style="color:rgb(0, 255, 255);text-align:left;">P</a>)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">9 elements, 7 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">3.5 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">61</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">380</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.61</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">92 x 114</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">36 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.27</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Slip on (213-370)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">102 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">950</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-75mm-f4.5-shift.html" style="color:rgb(0, 255, 255);text-align:left;">Z 75 mm f/4.5 Shift</a>
(3)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">11 elements, 9 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">62</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">420</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.60</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">93 x 115</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">36 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.6</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">None</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">105 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">152 x 108</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1660</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">M 75 mm f/4.5 L SB<font color="#FFFF00" style="text-align:left;">
(3)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">11 elements, 9 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">62</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">420</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.60</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">93 x 115</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">36 mm
</font>
</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.6</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">None</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">105 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">124.5 x 108</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1295</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-90mm-f3.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 90 mm f/3.5</a>
(2)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">6 elements, 6 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">3.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">53</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">430</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.43</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">110 x 136</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">44 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.4</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-371)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">82.1 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">690</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-110mm-f2.8.html" style="color:rgb(0, 255, 255);text-align:left;">Z 110 mm f/2.8</a>
(2)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">6 elements, 5 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">2.8 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">44</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">530</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.42</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">135 x 167</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">53 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.3</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-371)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">62 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">610</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 127 mm f/3.5 (2)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">5 elements, 3 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">3.5 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">39</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">660</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.36</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">155 x 192</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">62 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.4</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Screw in (213-372)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">64.1 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">620</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 127 mm f/3.8</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">5 elements, 3 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">3.8 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">38</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">660</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">~ 1:0.36</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">~ 155 x 192</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">62 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Screw in (213-372)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 140 mm f/4.5 Macro (2) (4)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">7 elements, 4 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">4.5 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">35</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">750</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.33</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">169 x 210</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">68 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Screw in (213-372)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">83.5 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">810</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-140mm-f4.5-macro.html" style="color:rgb(0, 255, 255);text-align:left;">M 140 mm f/4.5 L-A Macro</a>
(2) (<a href="https://archive.is/o/5bxkQ/http://old.photodo.com/prod/lens/detail/MaRZM140_45macroM-344.shtml" style="color:rgb(0, 255, 255);text-align:left;">P</a>)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">6 elements, 4 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">35</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">760</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.33</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">173 x 214</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">68 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.23</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">104 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">930</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-150mm-f3.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 150 mm f/3.5</a>
(2)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">6 elements, 4 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">3.5 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">33</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">820</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.31</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">183 x 227</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">74 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">none</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">83 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">825</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-180mm-f4.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 180 mm f/4.5 W-N</a> (2) (<a href="https://archive.is/o/5bxkQ/http://old.photodo.com/prod/lens/detail/MaRZ180_45W-N-336.shtml" style="color:rgb(0, 255, 255);text-align:left;">P</a>)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">4 elements, 3 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">28</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1110</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.26</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">219 x 272</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">87 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.7</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">101.7 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">750</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-180mm-f4.5-short-barrel.html" style="color:rgb(0, 255, 255);text-align:left;">M 180 mm f/4.5 L SB</a>
(2) (<a href="https://archive.is/o/5bxkQ/http://old.photodo.com/prod/lens/detail/MaRZ180_45W-N-336.shtml" style="color:rgb(0, 255, 255);text-align:left;">P</a>)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">4 elements, 3 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">28</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1110</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.26</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">217 x 270</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">87 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.7</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">119.3 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">900</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-180mm-f4-variable-soft-focus.html" style="color:rgb(0, 255, 255);text-align:left;">
M 180 mm f/4.0 D/L Variable Soft Focus</a>
(5)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">6 elements, 4 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.0 - 32</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">28</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1110</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.26</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">217 x 270</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">87 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">?</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">118 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1039</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-210mm-f4.5-apo.html" style="color:rgb(0, 255, 255);text-align:left;">APO 210 mm f/4.5</a></font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">7 elements, 5 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">24</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1432</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.22</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">256 x 318</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">102 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">none</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">114.4 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">980</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-250mm-f4.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 250 mm f/4.5</a></font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">5 elements, 4 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5- 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">20</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1850</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.19</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">297 x 369</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">121 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.6</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">126 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1080</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-250mm-f4.5-apo.html" style="color:rgb(0, 255, 255);text-align:left;">APO 250 mm f/4.5</a></font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">7 elements, 5 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">4.5 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">20</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1860</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.19</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">298 x 370</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">121 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">none</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-372)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">145.3 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1340</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-350mm-f5.6-apo.html" style="color:rgb(0, 255, 255);text-align:left;">APO 350 mm f/5.6</a>
(*)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">7 elements, 6 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">5.6 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">15</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">3423</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.13</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">420 x 521</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">170 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">none</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-373)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">192 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1455</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 360 mm f/6.0</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">6 elements, 5 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">6.0 - 45</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">14</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">3690</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.13</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">423 x 536</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">175 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-1.0</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Screw in (213-373)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">77 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">166 x 97.2</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1110</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 500 mm f/8.0 (*)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">6 elements, 6 groups</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">8.0 - 32</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">10</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">6600</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1:0.09</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">597 x 740</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">242 mm</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-1.0</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Slip on (213-374)</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">105 mm</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">298.5 x 108</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1980</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-500mm-f6-apo.html" style="color:rgb(0, 255, 255);text-align:left;">APO 500 mm f/6.0</a>
(*)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">7 elements, 7 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">6.0 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">10</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">6493</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.09</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">597 x 740</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">242 mm
</font>
</td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">none</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Slip on (213-374)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">105 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">279 x 108</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">2315</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-lenses-100-200mm-f5.2-zoom.html" style="color:rgb(0, 255, 255);text-align:left;">Z 100 - 200 mm f/5.2 Zoom</a>
(*) (2)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">14 elements, 12 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">5.2 - 45</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">48 - 25</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">100 mm: 553</font><p>
<font color="#FFFF00">200 mm: 1053</font></p></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1:0.46</font><p>
<font color="#FFFF00">1:0.31</font></p></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">122 x 151</font><p>
<font color="#FFFF00">183 x 228</font></p></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">48 - 97 mm</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-1.2</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">Screw in (213-389)</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">77 mm</font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">173 x 108.5</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">1620</font></td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">
<a href="https://archive.is/o/5bxkQ/http://www.mamiya.com/rz67-pro-iid-accessories-tele-converter-tele-converter-1.4-x.html" style="color:rgb(0, 255, 255);text-align:left;">Tele Converter 1.4 x</a></font></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">5 elements, 3 groups</font></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">-0.4</td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00" style="text-align:left;">37 x 97.2</font></td>
<td align="right" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><font color="#FFFF00">430</font></td>
</tr>
</tbody></table>
<p style="text-align:left;">(1) = 4 filters supplied with lens; (2) recommended with Tele Converter, other lenses need to be stopped down by 1-2 stops; (3) vignettes with Tele Converter; (4) some lenses of the old type were built with floating elements all data are otherwise apparently the same; (5) includes three disks that can be inserted behind the front element to achieve soft focus effect; (*) = needs specific support bracket (P) = old.photodo.com test</p>
<p style="text-align:left;">Most of the information was obtained from Bob Shell (1995) Mamiya Pro Guide, Hove Foto Books, Newpro, Faringdon Oxon., UK, ISBN 0-906447-76-3</p><hr style="text-align:left;"/>
<p style="text-align:left;"><a href="https://archive.is/o/5bxkQ/http://www.hevanet.com/cperez/MF_testing.html" style="color:rgb(0, 255, 255);text-align:left;">Christopher Perez' Medium Format Lens Reviews</a>
(includes three Mamiya RZ lenses)</p>
<p style="text-align:left;">M. Butkus scan of the
<a href="https://archive.is/o/5bxkQ/http://www.cameramanuals.org/mamiya_pdf/mamiya_rz67_interchangeable_lenses.pdf" style="color:rgb(0, 255, 255);text-align:left;">
Mamiya Interchangable Lenses Manual</a></p>
<p style="text-align:left;">Don Fleming's DOFMaster
<a href="https://archive.is/o/5bxkQ/http://www.dofmaster.com/doftable.html" style="color:rgb(0, 255, 255);text-align:left;">
Online Depth of Field Table calculator</a></p>
</div>
<div class="body" style="vertical-align:bottom;min-height:4691px;color:rgb(255, 255, 255);text-align:left;overflow-x:visible;overflow-y:visible;margin: 8px; background-color:black">
<h1 style="text-align:left;">Mamiya RZ Pro II Close up Tables</h1>
<p style="text-align:left;"> </p>
<p style="text-align:left;"><b style="text-align:left;">6 x 7 cm backs</b></p>
<table style="width:100%;text-align:left;border-width: 1px; border-style: outset; border-color: #999; ">
<tbody style="text-align:left;"><tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Lens</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Tube No.</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Magnification (6 x 7)</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Subject Distance (cm)
</b>
<p style="text-align:left;"><b style="text-align:left;">to front rim of lens</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Area Covered (cm) (6 x 7)</b></td>
<td colspan="5" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Exposure Compensation (without AE finder) (mm)</b></td>
</tr>
<tr style="text-align:left;">
<td colspan="5" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+0.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+1.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+2.5</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-65mm-f4.html" style="color:rgb(0, 255, 255);text-align:left;">M 65 mm f/4.0 L-A</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.68 - 1.38</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">8.7 - 3.9</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[8.2 x 10.2] / [4.1 x 5.0]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 27</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">27 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="2" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">M 75 mm f/3.5 L</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.60 - 1.21</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">12.8 - 6.4</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[9.4 x 11.7] / [4.7 x 5.8]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 30</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">30 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1.10 - 1.70</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">7.1 - 4.6</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[5.2 x 6.4] / [3.3 x 4.1]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 32</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">32 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-90mm-f3.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 90 mm f/3.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.50 - 1.01</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">20.1 - 11.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[11.2 x 13.9] / [5.5 x 6.9]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 22</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">22 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.91 - 1.42</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">12.0 - 8.4</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[6.1 x 7.6] / [3.9 x 4.9]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 20</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">20 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1.41 - 1.92</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">8.5 - 6.8</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[4.0 x 4.9] / [2.9 x 3.6]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 23</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">23 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="4" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-110mm-f2.8.html" style="color:rgb(0, 255, 255);text-align:left;">Z 110 mm f/2.8</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.41 - 0.82</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">31.9 - 18.1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[13.8 x 17.1] / [6.8 x 8.5]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 22</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">22 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.74 - 1.15</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">19.6 - 14.2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[7.6 x 9.4] / [4.8 x 6.0]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 22</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">22 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1.15 - 1.56</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">14.3 - 11.7</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[4.9 x 6.1] / [3.6 x 4.5]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 20</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">20 - 46</td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 + SB</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1.50 - 2.03</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">13.0 - 11.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[3.8 x 4.6] / [2.7 x 3.4]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 23</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">23 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 127 mm f/3.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.35 - 0.72</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">41.6 - 23.4</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[15.8 x 19.6] / [7.8 x 9.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 18</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">18 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.65 - 1.01</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">25.4 - 18.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[8.7 x 10.8] / [5.6 x 6.9]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 15</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">15 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1.00 - 1.36</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">18.4 - 15.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[5.6 x 7.0] / [4.1 x 5.1]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 10</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">10 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-140mm-f4.5-macro.html" style="color:rgb(0, 255, 255);text-align:left;">M 140 mm f/4.5 L-A Macro</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.32 - 0.64</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">52.2 - 29.7</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[17.6 x 21.9] / [8.7 x 10.8]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 27</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">27 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.58 - 0.90</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">32.1 - 23.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[9.7 x 12.0] / [6.2 x 7.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 29</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">29 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.90 - 1.22</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">23.4 - 19.2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[6.3 x 7.8] / [ 4.6 x 5.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 30</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">30 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-150mm-f3.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 150 mm f/3.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.30 - 0.61</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">59.5 - 34.1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[18.7 x 23.2] / [9.3 x 11.5]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 32</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">32 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.55 - 0.85</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">36.8 - 26.9</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[10.3 x 12.7] / [6.6 x 8.2]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 36</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">36 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.85 - 1.15</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">27.1 - 22.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[6.6 x 8.2] / [4.9 x 6.0]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 40</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">40 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-180mm-f4.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 180 mm f/4.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.25 - 0.51</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">86.3 - 49.9</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[22.4 x 27.4] / [11.1 x 13.5]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 28</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">28 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.46 - 0.71</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">53.8 - 39.6</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[12.3 x 15.0] / [7.9 x 9.6]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 31</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">31 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.71 - 0.96</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">39.8 - 33.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[7.9 x 9.7] / [5.8 x 7.1]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 33</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">33 - 46</td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-210mm-f4.5-apo.html" style="color:rgb(0, 255, 255);text-align:left;">
APO Z 210 mm f/4.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.20 - 0.43</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">118.9 - 69.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[26.1 x 32.5] / [12.9 x 16.1]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 36</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">36 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.40 - 0.61</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">55.7 - 46.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[14.4 x 17.8] / [9.2 x 11.4]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 44</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">44 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.60 - 0.82</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">39.8 - 33.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[9.3 x 11.5] / [6.8 x 8.4]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-250mm-f4.5.html" style="color:rgb(0, 255, 255);text-align:left;">Z 250 mm f/4.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.18 - 0.36</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">163.0 - 93.0
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[31.1 x 38.0] / [15.4 x 18.8]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 38</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">38 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.33 - 0.51</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">100.0 - 73.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[17.1 x 20.9] / [10.9 x 13.4]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.51 - 0.69</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">74.0 - 61.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[11.0 x 13.5] / [8.1 x 9.9]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-250mm-f4.5-apo.html" style="color:rgb(0, 255, 255);text-align:left;">
APO Z 250 mm f/4.5</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.18 - 0.37</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">159.3 - 91.9
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[30.5 x 37.8] / [15.1 x 18.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 36.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">36.5 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.34 - 0.52</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">99.2 - 72.9</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[16.7 x 20.8] / [10.7 x 13.3]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 44</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">44 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.52 - 0.71</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">73.2 - 60.7</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[10.8 x 13.4] / [7.9 x 9.8]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">
<a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-350mm-f5.6-apo.html" style="color:rgb(0, 255, 255);text-align:left;">
APO Z 350 mm f/5.6</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.13 - 0.26</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">313.9 - 180.2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[42.9 x 53.3] / [21.2 x 26.4]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 4
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">4 - 45</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">45 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.24 - 0.37</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">194.5 - 142.4</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[23.6 x 29.2] / [15.1 x 18.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 8</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">8 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.37 - 0.50</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">143.1 - 118.2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[15.2 x 18.9] / [11.2 x 13.9]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 11</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">11 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="3" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">Z 360 mm f/6.3</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.13 - 0.25</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">352.0 - 207.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[44.8 x 54.7] / [22.1 x 27.0]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 37</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">37 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.23 - 0.35</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">222.0 - 165.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[24.6 x 30.0] / [15.7 x 19.2]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 44</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">44 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1 + 2 (*)</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.35 - 0.48</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">166.0 - 139.0</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[15.9 x 19.4] / [11.7 x 14.3]
</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
</tbody></table>
<p style="text-align:left;"> </p>
<hr style="text-align:left;"/>
<p style="text-align:left;"><b style="text-align:left;">6 x 6 cm backs</b></p>
<table style="width:100%;text-align:left;border-width: 1px; border-style: outset; border-color: #999; ">
<tbody style="text-align:left;"><tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Lens</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Tube No.</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Magnification (6 x 6)</b></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Subject Distance (cm)</b><p style="text-align:left;"><b style="text-align:left;">to front rim of lens</b></p></td>
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Area Covered (cm) (6 x 6)</b></td>
<td colspan="5" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><b style="text-align:left;">Exposure Compensation (without AE finder) (mm)</b></td>
</tr>
<tr style="text-align:left;">
<td colspan="5" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+0.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+1.5</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+2</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">+2.5</td>
</tr>
<tr style="text-align:left;">
<td style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "><a href="https://archive.is/o/MLxA3/http://www.mamiya.com/rz67-pro-iid-lenses-65mm-f4.html" style="color:rgb(0, 255, 255);text-align:left;">M 65 mm f/4.0 L-A</a></td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.68 - 1.38</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">8.7 - 3.9</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[8.2 x 8.2] / [4.1 x 4.1]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 27</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">27 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
</tr>
<tr style="text-align:left;">
<td rowspan="2" style="color:rgb(255, 255, 255);text-align:left;border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">M 75 mm f/3.5 L</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">1</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0.60 - 1.21</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">12.8 - 6.4</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">[9.4 x 9.4] / [4.7 x 4.7]</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">0 - 30</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); ">30 - 46</td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>
<td align="center" style="color:rgb(255, 255, 255);border-width: 1px; border-style: inset; border-color: rgb(128, 128, 128); "> </td>