assembly-objectfile 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/.gitignore +13 -0
  2. data/.rspec +1 -0
  3. data/.rvmrc.example +1 -0
  4. data/Gemfile +5 -0
  5. data/README.rdoc +94 -0
  6. data/Rakefile +4 -0
  7. data/assembly-objectfile.gemspec +29 -0
  8. data/bin/console +8 -0
  9. data/bin/run_all_tests +3 -0
  10. data/config/boot.rb +9 -0
  11. data/lib/assembly-objectfile.rb +35 -0
  12. data/lib/assembly-objectfile/content_metadata.rb +229 -0
  13. data/lib/assembly-objectfile/object_file.rb +30 -0
  14. data/lib/assembly-objectfile/object_fileable.rb +263 -0
  15. data/lib/assembly-objectfile/version.rb +9 -0
  16. data/profiles/AdobeRGB1998.icc +0 -0
  17. data/profiles/DotGain20.icc +0 -0
  18. data/profiles/sRGBIEC6196621.icc +0 -0
  19. data/spec/content_metadata_spec.rb +563 -0
  20. data/spec/object_file_spec.rb +115 -0
  21. data/spec/spec_helper.rb +46 -0
  22. data/spec/test_data/input/.empty +0 -0
  23. data/spec/test_data/input/file_with_no_exif.xml +83 -0
  24. data/spec/test_data/input/oo000oo0001/00/oo000oo0001_00_001.tif +0 -0
  25. data/spec/test_data/input/oo000oo0001/00/oo000oo0001_00_002.tif +0 -0
  26. data/spec/test_data/input/oo000oo0001/05/oo000oo0001_05_001.jp2 +0 -0
  27. data/spec/test_data/input/oo000oo0001/05/oo000oo0001_05_002.jp2 +0 -0
  28. data/spec/test_data/input/oo000oo0001/15/oo000oo0001_15_001.pdf +1 -0
  29. data/spec/test_data/input/oo000oo0001/15/oo000oo0001_15_002.pdf +1 -0
  30. data/spec/test_data/input/oo000oo0001/31/oo000oo0001_31_001.pdf +1 -0
  31. data/spec/test_data/input/oo000oo0001/50/oo000oo0001_50_001.tif +0 -0
  32. data/spec/test_data/input/oo000oo0001/oo000oo0001_book.pdf +1 -0
  33. data/spec/test_data/input/res1_image1.jp2 +0 -0
  34. data/spec/test_data/input/res1_image1.tif +0 -0
  35. data/spec/test_data/input/res1_image2.jp2 +0 -0
  36. data/spec/test_data/input/res1_image2.tif +0 -0
  37. data/spec/test_data/input/res1_teifile.txt +1 -0
  38. data/spec/test_data/input/res1_textfile.txt +1 -0
  39. data/spec/test_data/input/res1_transcript.pdf +1 -0
  40. data/spec/test_data/input/res2_image1.jp2 +0 -0
  41. data/spec/test_data/input/res2_image1.tif +0 -0
  42. data/spec/test_data/input/res2_image2.jp2 +0 -0
  43. data/spec/test_data/input/res2_image2.tif +0 -0
  44. data/spec/test_data/input/res2_teifile.txt +1 -0
  45. data/spec/test_data/input/res2_textfile.txt +1 -0
  46. data/spec/test_data/input/res3_image1.jp2 +0 -0
  47. data/spec/test_data/input/res3_image1.tif +0 -0
  48. data/spec/test_data/input/res3_teifile.txt +1 -0
  49. data/spec/test_data/input/test.jp2 +0 -0
  50. data/spec/test_data/input/test.pdf +1 -0
  51. data/spec/test_data/input/test.tif +0 -0
  52. data/spec/test_data/input/test2.jp2 +0 -0
  53. data/spec/test_data/input/test2.tif +0 -0
  54. metadata +260 -0
@@ -0,0 +1,115 @@
1
+ describe Assembly::ObjectFile do
2
+
3
+ it "should not run if no input file is passed in" do
4
+ @ai=Assembly::ObjectFile.new('')
5
+ lambda{@ai.filesize}.should raise_error
6
+ lambda{@ai.sha1}.should raise_error
7
+ lambda{@ai.md5}.should raise_error
8
+ end
9
+
10
+ it "should return the common directory of a set of filenames passed into it, where the common part does not terminate on a directory" do
11
+ Assembly::ObjectFile.common_path(['/Users/peter/00/test.tif','/Users/peter/05/test.jp2']).should == "/Users/peter/"
12
+ end
13
+
14
+ it "should return the common directory of a set of filenames passed into it, where the common part does not terminate on a directory" do
15
+ Assembly::ObjectFile.common_path(['/Users/peter/00/test.tif','/Users/peter/00/test.jp2']).should == "/Users/peter/00/"
16
+ end
17
+
18
+ it "should tell us if an input file is an image" do
19
+ File.exists?(TEST_TIF_INPUT_FILE).should be true
20
+ @ai = Assembly::ObjectFile.new(TEST_TIF_INPUT_FILE)
21
+ @ai.image?.should == true
22
+ @ai.exif.should_not be nil
23
+ @ai.mimetype.should == 'image/tiff'
24
+ @ai.object_type.should == :image
25
+ @ai.valid_image?.should == true
26
+ @ai.jp2able?.should == true
27
+ end
28
+
29
+ it "should tell us information about the input file" do
30
+ @ai = Assembly::ObjectFile.new(TEST_TIF_INPUT_FILE)
31
+ @ai.filename.should == "test.tif"
32
+ @ai.ext.should == ".tif"
33
+ @ai.filename_without_ext.should == "test"
34
+ @ai.dirname.should == File.dirname(TEST_TIF_INPUT_FILE)
35
+ end
36
+
37
+ it "should give us the mimetype of a file even if the exif information is damaged" do
38
+ @ai = Assembly::ObjectFile.new(TEST_FILE_NO_EXIF)
39
+ @ai.filename.should == "file_with_no_exif.xml"
40
+ @ai.ext.should == ".xml"
41
+ ['text/html','application/xml'].include?(@ai.mimetype).should be true # we could get either of these mimetypes depending on the OS
42
+ end
43
+
44
+ it "should give us the DPG base name for a file" do
45
+ test_file=File.join(TEST_INPUT_DIR,'oo000oo0001_00_001.tif')
46
+ @ai = Assembly::ObjectFile.new(test_file)
47
+ @ai.dpg_basename.should == "oo000oo0001_001"
48
+ end
49
+
50
+ it "should give us the DPG subfolder name for a file" do
51
+ test_file=File.join(TEST_INPUT_DIR,'oo000oo0001_05_001.tif')
52
+ @ai = Assembly::ObjectFile.new(test_file)
53
+ @ai.dpg_folder.should == "05"
54
+ end
55
+
56
+ it "should tell us that a jp2 file not jp2able and is not valid since it has no profile" do
57
+ File.exists?(TEST_JP2_INPUT_FILE).should be true
58
+ @ai = Assembly::ObjectFile.new(TEST_JP2_INPUT_FILE)
59
+ @ai.image?.should == true
60
+ @ai.object_type.should == :image
61
+ @ai.valid_image?.should == true
62
+ @ai.jp2able?.should == false
63
+ end
64
+
65
+ it "should compute checksums for an image file" do
66
+ File.exists?(TEST_TIF_INPUT_FILE).should be true
67
+ @ai = Assembly::ObjectFile.new(TEST_TIF_INPUT_FILE)
68
+ @ai.md5.should == 'a2400500acf21e43f5440d93be894101'
69
+ @ai.sha1.should == '8d11fab63089a24c8b17063d29a4b0eac359fb41'
70
+ end
71
+
72
+ it "should indicate that the file is not found when a valid directory is supplied instead of a file or when an invalid file path is specified" do
73
+ path=Assembly::PATH_TO_GEM
74
+ @ai = Assembly::ObjectFile.new(path)
75
+ File.exists?(path).should be true
76
+ File.directory?(path).should be true
77
+ @ai.file_exists?.should be false
78
+
79
+ path=File.join(Assembly::PATH_TO_GEM,'bogus.txt')
80
+ @ai = Assembly::ObjectFile.new(path)
81
+ File.exists?(path).should be false
82
+ File.directory?(path).should be false
83
+ @ai.file_exists?.should be false
84
+ end
85
+
86
+ it "should tell us if an input file is not an image" do
87
+ non_image_file=File.join(Assembly::PATH_TO_GEM,'spec/object_file_spec.rb')
88
+ File.exists?(non_image_file).should be true
89
+ @ai = Assembly::ObjectFile.new(non_image_file)
90
+ @ai.image?.should == false
91
+ @ai.object_type.should == :text
92
+ @ai.valid_image?.should == false
93
+
94
+ non_image_file=File.join(Assembly::PATH_TO_GEM,'README.rdoc')
95
+ File.exists?(non_image_file).should be true
96
+ @ai = Assembly::ObjectFile.new(non_image_file)
97
+ @ai.image?.should == false
98
+ @ai.object_type.should == :text
99
+ @ai.valid_image?.should == false
100
+ end
101
+
102
+ it "should tell us the size of an input file" do
103
+ File.exists?(TEST_TIF_INPUT_FILE).should be true
104
+ @ai = Assembly::ObjectFile.new(TEST_TIF_INPUT_FILE)
105
+ @ai.filesize.should == 63542
106
+ end
107
+
108
+ it "should tell us the mimetype and encoding of an input file" do
109
+ File.exists?(TEST_TIF_INPUT_FILE).should be true
110
+ @ai = Assembly::ObjectFile.new(TEST_TIF_INPUT_FILE)
111
+ @ai.mimetype.should == 'image/tiff'
112
+ @ai.encoding.should == 'binary'
113
+ end
114
+
115
+ end
@@ -0,0 +1,46 @@
1
+ bootfile = File.expand_path(File.dirname(__FILE__) + '/../config/boot')
2
+ require bootfile
3
+
4
+ TEST_DATA_DIR = File.join(Assembly::PATH_TO_GEM,'spec','test_data')
5
+ TEST_INPUT_DIR = File.join(TEST_DATA_DIR,'input')
6
+ TEST_OUTPUT_DIR = File.join(TEST_DATA_DIR,'output')
7
+ TEST_TIF_INPUT_FILE = File.join(TEST_INPUT_DIR,'test.tif')
8
+ TEST_TIF_INPUT_FILE2 = File.join(TEST_INPUT_DIR,'test2.tif')
9
+ TEST_JPEG_INPUT_FILE = File.join(TEST_INPUT_DIR,'test.jpg')
10
+ TEST_JP2_INPUT_FILE = File.join(TEST_INPUT_DIR,'test.jp2')
11
+ TEST_JP2_INPUT_FILE2 = File.join(TEST_INPUT_DIR,'test2.jp2')
12
+ TEST_JP2_OUTPUT_FILE = File.join(TEST_OUTPUT_DIR,'test.jp2')
13
+ TEST_PDF_FILE = File.join(TEST_INPUT_DIR,'test.pdf')
14
+
15
+ TEST_DPG_TIF=File.join(TEST_INPUT_DIR,'oo000oo0001','00','oo000oo0001_00_001.tif')
16
+ TEST_DPG_TIF2=File.join(TEST_INPUT_DIR,'oo000oo0001','00','oo000oo0001_00_002.tif')
17
+ TEST_DPG_JP=File.join(TEST_INPUT_DIR,'oo000oo0001','05','oo000oo0001_05_001.jp2')
18
+ TEST_DPG_JP2=File.join(TEST_INPUT_DIR,'oo000oo0001','05','oo000oo0001_05_002.jp2')
19
+ TEST_DPG_PDF=File.join(TEST_INPUT_DIR,'oo000oo0001','15','oo000oo0001_15_001.pdf')
20
+ TEST_DPG_PDF2=File.join(TEST_INPUT_DIR,'oo000oo0001','15','oo000oo0001_15_002.pdf')
21
+ TEST_DPG_SPECIAL_PDF1=File.join(TEST_INPUT_DIR,'oo000oo0001','oo000oo0001_book.pdf')
22
+ TEST_DPG_SPECIAL_PDF2=File.join(TEST_INPUT_DIR,'oo000oo0001','31','oo000oo0001_31_001.pdf')
23
+ TEST_DPG_SPECIAL_TIF=File.join(TEST_INPUT_DIR,'oo000oo0001','50','oo000oo0001_50_001.tif')
24
+
25
+ TEST_RES1_TIF1=File.join(TEST_INPUT_DIR,'res1_image1.tif')
26
+ TEST_RES1_JP1=File.join(TEST_INPUT_DIR,'res1_image1.jp2')
27
+ TEST_RES1_TIF2=File.join(TEST_INPUT_DIR,'res1_image2.tif')
28
+ TEST_RES1_JP2=File.join(TEST_INPUT_DIR,'res1_image2.jp2')
29
+ TEST_RES1_TEI=File.join(TEST_INPUT_DIR,'res1_teifile.txt')
30
+ TEST_RES1_TEXT=File.join(TEST_INPUT_DIR,'res1_textfile.txt')
31
+ TEST_RES1_PDF=File.join(TEST_INPUT_DIR,'res1_transcript.pdf')
32
+
33
+ TEST_RES2_TIF1=File.join(TEST_INPUT_DIR,'res2_image1.tif')
34
+ TEST_RES2_JP1=File.join(TEST_INPUT_DIR,'res2_image1.jp2')
35
+ TEST_RES2_TIF2=File.join(TEST_INPUT_DIR,'res2_image2.tif')
36
+ TEST_RES2_JP2=File.join(TEST_INPUT_DIR,'res2_image2.jp2')
37
+ TEST_RES2_TEI=File.join(TEST_INPUT_DIR,'res2_teifile.txt')
38
+ TEST_RES2_TEXT=File.join(TEST_INPUT_DIR,'res2_textfile.txt')
39
+
40
+ TEST_RES3_TIF1=File.join(TEST_INPUT_DIR,'res3_image1.tif')
41
+ TEST_RES3_JP1=File.join(TEST_INPUT_DIR,'res3_image1.jp2')
42
+ TEST_RES3_TEI=File.join(TEST_INPUT_DIR,'res3_teifile.txt')
43
+
44
+ TEST_FILE_NO_EXIF=File.join(TEST_INPUT_DIR,'file_with_no_exif.xml')
45
+
46
+ TEST_DRUID = "nx288wh8889"
File without changes
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <alto xmlns="http://www.loc.gov/standards/alto/ns-v2#">
3
+ <Description>
4
+ <MeasurementUnit>pixel</MeasurementUnit>
5
+ <OCRProcessing ID="IdOcr"><ocrProcessingStep><processingDateTime>2012-09-04</processingDateTime><processingSoftware><softwareCreator>ABBYY</softwareCreator><softwareName>ABBYY Recognition Server</softwareName><softwareVersion>3.0</softwareVersion></processingSoftware></ocrProcessingStep></OCRProcessing>
6
+ </Description>
7
+ <Styles>
8
+ <ParagraphStyle ID="StyleId-FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0"/>
9
+ <ParagraphStyle ID="StyleId-7AB27E74-A3BB-41C3-98D2-CE62A8AEF17A-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="0"/>
10
+ <ParagraphStyle ID="StyleId-5D959386-EF28-450F-8FDC-78233C0B6376-" ALIGN="Right" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="3942"/>
11
+ <ParagraphStyle ID="StyleId-6A88DA03-FD66-4BE3-9FA8-7140AB1DD695-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="0"/>
12
+ <ParagraphStyle ID="StyleId-F387C286-0CA9-4D61-9E30-28A70D9254A7-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="0"/>
13
+ <ParagraphStyle ID="StyleId-AE942207-8F0A-4939-82FE-D097E0FDB4CE-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="0"/>
14
+ <ParagraphStyle ID="StyleId-710B4720-C248-4223-91D1-BD707AAB23A1-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="-6000" LINESPACE="846"/>
15
+ <ParagraphStyle ID="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="1224"/>
16
+ <ParagraphStyle ID="StyleId-D0C337CC-33CB-4881-A7CE-0E9E10380DA8-" ALIGN="Block" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="846"/>
17
+ <ParagraphStyle ID="StyleId-64DD1B39-E610-46CD-9344-4BF516F311BC-" ALIGN="Left" LEFT="0" RIGHT="0" FIRSTLINE="0" LINESPACE="0"/>
18
+ </Styles>
19
+ <Layout>
20
+ <Page ID="Page1" PHYSICAL_IMG_NR="1">
21
+ <PrintSpace HEIGHT="4335" WIDTH="3319" VPOS="0" HPOS="0">
22
+ <TextBlock ID="BlockId-55E94F60-CF2B-4604-BAB6-D7CB4B798B35-" HEIGHT="998" WIDTH="2129" VPOS="241" HPOS="649" STYLEREFS="StyleId-5D959386-EF28-450F-8FDC-78233C0B6376-">
23
+ <TextLine HEIGHT="48" WIDTH="272" VPOS="248" HPOS="1115" STYLEREFS="StyleId-AE942207-8F0A-4939-82FE-D097E0FDB4CE-"><String CONTENT="Appendix" HEIGHT="48" WIDTH="223" VPOS="248" HPOS="1115"/><SP WIDTH="18" VPOS="249" HPOS="1339"/><String CONTENT="B" HEIGHT="36" WIDTH="29" VPOS="249" HPOS="1358"/></TextLine>
24
+ <TextLine HEIGHT="82" WIDTH="704" VPOS="554" HPOS="894"><String CONTENT="13.2" HEIGHT="64" WIDTH="164" VPOS="556" HPOS="894"/><SP WIDTH="54" VPOS="556" HPOS="1059"/><String CONTENT="Appendix" HEIGHT="82" WIDTH="398" VPOS="554" HPOS="1114"/><SP WIDTH="30" VPOS="554" HPOS="1513"/><String CONTENT="B" HEIGHT="64" WIDTH="54" VPOS="554" HPOS="1544"/></TextLine>
25
+ <TextLine HEIGHT="58" WIDTH="656" VPOS="780" HPOS="896"><String CONTENT="13.2.1" HEIGHT="56" WIDTH="198" VPOS="782" HPOS="896"/><SP WIDTH="20" VPOS="780" HPOS="1095"/><String CONTENT="U.S." HEIGHT="58" WIDTH="140" VPOS="780" HPOS="1116"/><SP WIDTH="26" VPOS="780" HPOS="1257"/><String CONTENT="Patents" HEIGHT="58" WIDTH="268" VPOS="780" HPOS="1284"/></TextLine>
26
+ <TextLine HEIGHT="64" WIDTH="1488" VPOS="967" HPOS="866" STYLEREFS="StyleId-6A88DA03-FD66-4BE3-9FA8-7140AB1DD695-"><String CONTENT="13.2.1.1" HEIGHT="48" WIDTH="225" VPOS="970" HPOS="866"/><SP WIDTH="22" VPOS="968" HPOS="1092"/><String CONTENT="Capacitative" HEIGHT="63" WIDTH="386" VPOS="968" HPOS="1115"/><SP WIDTH="23" VPOS="968" HPOS="1502"/><String CONTENT="Method" HEIGHT="48" WIDTH="227" VPOS="968" HPOS="1526"/><SP WIDTH="25" VPOS="968" HPOS="1754"/><String CONTENT="US" HEIGHT="50" WIDTH="85" VPOS="967" HPOS="1780"/><SP WIDTH="24" VPOS="967" HPOS="1866"/><String CONTENT="Patent" HEIGHT="48" WIDTH="194" VPOS="968" HPOS="1891"/><SP WIDTH="20" VPOS="969" HPOS="2086"/><String CONTENT="#482071" HEIGHT="49" WIDTH="247" VPOS="968" HPOS="2107"/></TextLine>
27
+ <TextLine HEIGHT="88" WIDTH="2110" VPOS="1060" HPOS="658" STYLEREFS="StyleId-7AB27E74-A3BB-41C3-98D2-CE62A8AEF17A-"><String CONTENT="United" HEIGHT="68" WIDTH="242" VPOS="1060" HPOS="658"/><SP WIDTH="28" VPOS="1062" HPOS="901"/><String CONTENT="States" HEIGHT="66" WIDTH="214" VPOS="1062" HPOS="930"/><SP WIDTH="26" VPOS="1064" HPOS="1145"/><String CONTENT="Patent" HEIGHT="66" WIDTH="236" VPOS="1064" HPOS="1172"/><SP WIDTH="48" VPOS="1070" HPOS="1409"/><String CONTENT="tuj" HEIGHT="46" WIDTH="70" VPOS="1092" HPOS="1458"/><SP WIDTH="294" VPOS="1092" HPOS="1529"/><String CONTENT="tm" HEIGHT="46" WIDTH="70" VPOS="1094" HPOS="1824"/><SP WIDTH="58" VPOS="1088" HPOS="1895"/><String CONTENT="Patent" HEIGHT="46" WIDTH="160" VPOS="1088" HPOS="1954"/><SP WIDTH="16" VPOS="1090" HPOS="2115"/><String CONTENT="Number:" HEIGHT="46" WIDTH="206" VPOS="1090" HPOS="2132"/><SP WIDTH="162" VPOS="1084" HPOS="2339"/><String CONTENT="4,823,071" HEIGHT="64" WIDTH="266" VPOS="1084" HPOS="2502"/></TextLine>
28
+ <TextLine HEIGHT="72" WIDTH="2114" VPOS="1166" HPOS="656" STYLEREFS="StyleId-F387C286-0CA9-4D61-9E30-28A70D9254A7-"><String CONTENT="Ptogetal." HEIGHT="54" WIDTH="256" VPOS="1166" HPOS="656"/><SP WIDTH="798" VPOS="1232" HPOS="912"/><String CONTENT="[45]" HEIGHT="46" WIDTH="66" VPOS="1180" HPOS="1824"/><SP WIDTH="62" VPOS="1172" HPOS="1891"/><String CONTENT="Date" HEIGHT="48" WIDTH="114" VPOS="1172" HPOS="1954"/><SP WIDTH="24" VPOS="1186" HPOS="2069"/><String CONTENT="of" HEIGHT="44" WIDTH="52" VPOS="1176" HPOS="2094"/><SP WIDTH="18" VPOS="1176" HPOS="2147"/><String CONTENT="Patent:" HEIGHT="46" WIDTH="172" VPOS="1176" HPOS="2166"/><SP WIDTH="96" VPOS="1176" HPOS="2339"/><String CONTENT="Apr." HEIGHT="56" WIDTH="108" VPOS="1176" HPOS="2436"/><SP WIDTH="18" VPOS="1180" HPOS="2545"/><String CONTENT="18,1989" HEIGHT="54" WIDTH="206" VPOS="1178" HPOS="2564"/></TextLine>
29
+ </TextBlock>
30
+ <TextBlock ID="BlockId-3DC65669-97B4-4322-B71A-0B2DC8D31419-" HEIGHT="1179" WIDTH="1028" VPOS="1296" HPOS="640" STYLEREFS="StyleId-710B4720-C248-4223-91D1-BD707AAB23A1-">
31
+ <TextLine HEIGHT="43" WIDTH="956" VPOS="1304" HPOS="657"><String CONTENT="[541" HEIGHT="43" WIDTH="67" VPOS="1304" HPOS="657"/><SP WIDTH="43" VPOS="1304" HPOS="725"/><String CONTENT="CAPAOnVE" HEIGHT="36" WIDTH="267" VPOS="1306" HPOS="769"/><SP WIDTH="12" VPOS="1309" HPOS="1037"/><String CONTENT="MEASURING" HEIGHT="36" WIDTH="270" VPOS="1309" HPOS="1050"/><SP WIDTH="11" VPOS="1310" HPOS="1321"/><String CONTENT="SYSTEM" HEIGHT="35" WIDTH="176" VPOS="1310" HPOS="1333"/><SP WIDTH="11" VPOS="1311" HPOS="1510"/><String CONTENT="FOR" HEIGHT="33" WIDTH="91" VPOS="1313" HPOS="1522"/></TextLine>
32
+ <TextLine HEIGHT="38" WIDTH="836" VPOS="1355" HPOS="769"><String CONTENT="MEASURING" HEIGHT="36" WIDTH="270" VPOS="1355" HPOS="769"/><SP WIDTH="10" VPOS="1355" HPOS="1040"/><String CONTENT="THE" HEIGHT="35" WIDTH="94" VPOS="1356" HPOS="1051"/><SP WIDTH="10" VPOS="1356" HPOS="1146"/><String CONTENT="DISTANCE" HEIGHT="37" WIDTH="222" VPOS="1356" HPOS="1157"/><SP WIDTH="10" VPOS="1359" HPOS="1380"/><String CONTENT="BETWEEN" HEIGHT="34" WIDTH="214" VPOS="1359" HPOS="1391"/></TextLine>
33
+ <TextLine HEIGHT="40" WIDTH="783" VPOS="1401" HPOS="767"><String CONTENT="TWO" HEIGHT="35" WIDTH="103" VPOS="1401" HPOS="767"/><SP WIDTH="12" VPOS="1402" HPOS="871"/><String CONTENT="RELATIVELY" HEIGHT="37" WIDTH="279" VPOS="1402" HPOS="884"/><SP WIDTH="10" VPOS="1404" HPOS="1164"/><String CONTENT="MOVABLE" HEIGHT="36" WIDTH="222" VPOS="1404" HPOS="1175"/><SP WIDTH="12" VPOS="1406" HPOS="1398"/><String CONTENT="PARTS" HEIGHT="35" WIDTH="139" VPOS="1406" HPOS="1411"/></TextLine>
34
+ <TextLine HEIGHT="49" WIDTH="899" VPOS="1495" HPOS="656"><String CONTENT="[75]" HEIGHT="45" WIDTH="66" VPOS="1495" HPOS="656"/><SP WIDTH="43" VPOS="1497" HPOS="723"/><String CONTENT="Inventors:" HEIGHT="33" WIDTH="184" VPOS="1500" HPOS="767"/><SP WIDTH="38" VPOS="1500" HPOS="952"/><String CONTENT="Kurt" HEIGHT="34" WIDTH="84" VPOS="1500" HPOS="991"/><SP WIDTH="12" VPOS="1500" HPOS="1076"/><String CONTENT="Ding," HEIGHT="40" WIDTH="97" VPOS="1500" HPOS="1089"/><SP WIDTH="13" VPOS="1502" HPOS="1187"/><String CONTENT="Augsburg;" HEIGHT="42" WIDTH="189" VPOS="1502" HPOS="1201"/><SP WIDTH="15" VPOS="1501" HPOS="1391"/><String CONTENT="Hartwig" HEIGHT="42" WIDTH="148" VPOS="1501" HPOS="1407"/></TextLine>
35
+ <TextLine HEIGHT="43" WIDTH="565" VPOS="1547" HPOS="992"><String CONTENT="KnoeS," HEIGHT="40" WIDTH="126" VPOS="1548" HPOS="992"/><SP WIDTH="13" VPOS="1547" HPOS="1119"/><String CONTENT="Karbfeid;" HEIGHT="42" WIDTH="178" VPOS="1547" HPOS="1133"/><SP WIDTH="15" VPOS="1548" HPOS="1312"/><String CONTENT="Josef" HEIGHT="36" WIDTH="96" VPOS="1548" HPOS="1328"/><SP WIDTH="9" VPOS="1550" HPOS="1425"/><String CONTENT="Weaxl," HEIGHT="40" WIDTH="122" VPOS="1550" HPOS="1435"/></TextLine>
36
+ <TextLine HEIGHT="44" WIDTH="579" VPOS="1595" HPOS="990"><String CONTENT="Hebertshausen;" HEIGHT="42" WIDTH="277" VPOS="1595" HPOS="990"/><SP WIDTH="14" VPOS="1596" HPOS="1268"/><String CONTENT="Hermann" HEIGHT="36" WIDTH="168" VPOS="1596" HPOS="1283"/><SP WIDTH="11" VPOS="1598" HPOS="1452"/><String CONTENT="Biebl," HEIGHT="41" WIDTH="105" VPOS="1598" HPOS="1464"/></TextLine>
37
+ <TextLine HEIGHT="46" WIDTH="543" VPOS="1642" HPOS="989"><String CONTENT="Karisfcid," HEIGHT="39" WIDTH="179" VPOS="1642" HPOS="989"/><SP WIDTH="14" VPOS="1653" HPOS="1169"/><String CONTENT="all" HEIGHT="36" WIDTH="44" VPOS="1643" HPOS="1184"/><SP WIDTH="12" VPOS="1643" HPOS="1229"/><String CONTENT="of" HEIGHT="36" WIDTH="42" VPOS="1643" HPOS="1242"/><SP WIDTH="7" VPOS="1643" HPOS="1285"/><String CONTENT="Fed." HEIGHT="35" WIDTH="81" VPOS="1644" HPOS="1293"/><SP WIDTH="14" VPOS="1644" HPOS="1375"/><String CONTENT="Rep." HEIGHT="44" WIDTH="83" VPOS="1644" HPOS="1390"/><SP WIDTH="14" VPOS="1656" HPOS="1474"/><String CONTENT="of" HEIGHT="35" WIDTH="43" VPOS="1644" HPOS="1489"/></TextLine>
38
+ <TextLine HEIGHT="42" WIDTH="175" VPOS="1691" HPOS="988"><String CONTENT="Germany" HEIGHT="42" WIDTH="175" VPOS="1691" HPOS="988"/></TextLine>
39
+ <TextLine HEIGHT="45" WIDTH="1009" VPOS="1784" HPOS="651"><String CONTENT="[73]" HEIGHT="44" WIDTH="67" VPOS="1784" HPOS="651"/><SP WIDTH="41" VPOS="1784" HPOS="719"/><String CONTENT="Assignee;" HEIGHT="43" WIDTH="175" VPOS="1786" HPOS="761"/><SP WIDTH="50" VPOS="1787" HPOS="937"/><String CONTENT="MTU" HEIGHT="35" WIDTH="102" VPOS="1787" HPOS="988"/><SP WIDTH="12" VPOS="1788" HPOS="1091"/><String CONTENT="Motoren" HEIGHT="35" WIDTH="155" VPOS="1788" HPOS="1104"/><SP WIDTH="11" VPOS="1798" HPOS="1260"/><String CONTENT="-Und" HEIGHT="37" WIDTH="90" VPOS="1789" HPOS="1272"/><SP WIDTH="10" VPOS="1789" HPOS="1363"/><String CONTENT="Tarbiaea-Union" HEIGHT="35" WIDTH="286" VPOS="1790" HPOS="1374"/></TextLine>
40
+ <TextLine HEIGHT="46" WIDTH="671" VPOS="1835" HPOS="988"><String CONTENT="Manchea" HEIGHT="34" WIDTH="165" VPOS="1835" HPOS="988"/><SP WIDTH="14" VPOS="1836" HPOS="1154"/><String CONTENT="GngH," HEIGHT="40" WIDTH="130" VPOS="1836" HPOS="1169"/><SP WIDTH="12" VPOS="1837" HPOS="1300"/><String CONTENT="Munich," HEIGHT="39" WIDTH="150" VPOS="1837" HPOS="1313"/><SP WIDTH="12" VPOS="1837" HPOS="1464"/><String CONTENT="Fed." HEIGHT="35" WIDTH="82" VPOS="1837" HPOS="1477"/><SP WIDTH="14" VPOS="1839" HPOS="1560"/><String CONTENT="Rep." HEIGHT="42" WIDTH="84" VPOS="1839" HPOS="1575"/></TextLine>
41
+ <TextLine HEIGHT="44" WIDTH="224" VPOS="1881" HPOS="987"><String CONTENT="of" HEIGHT="35" WIDTH="43" VPOS="1881" HPOS="987"/><SP WIDTH="7" VPOS="1881" HPOS="1031"/><String CONTENT="Germany" HEIGHT="44" WIDTH="172" VPOS="1881" HPOS="1039"/></TextLine>
42
+ <TextLine HEIGHT="46" WIDTH="474" VPOS="1975" HPOS="648"><String CONTENT="[21]" HEIGHT="43" WIDTH="69" VPOS="1975" HPOS="648"/><SP WIDTH="42" VPOS="1975" HPOS="718"/><String CONTENT="Appt." HEIGHT="44" WIDTH="103" VPOS="1977" HPOS="761"/><SP WIDTH="12" VPOS="1979" HPOS="865"/><String CONTENT="No.:" HEIGHT="33" WIDTH="79" VPOS="1979" HPOS="878"/><SP WIDTH="27" VPOS="1979" HPOS="958"/><String CONTENT="773^61" HEIGHT="39" WIDTH="136" VPOS="1979" HPOS="986"/></TextLine>
43
+ <TextLine HEIGHT="46" WIDTH="555" VPOS="2069" HPOS="648"><String CONTENT="[22]" HEIGHT="46" WIDTH="68" VPOS="2069" HPOS="648"/><SP WIDTH="40" VPOS="2071" HPOS="717"/><String CONTENT="Filed:" HEIGHT="36" WIDTH="108" VPOS="2072" HPOS="758"/><SP WIDTH="118" VPOS="2074" HPOS="867"/><String CONTENT="Sep." HEIGHT="40" WIDTH="76" VPOS="2074" HPOS="986"/><SP WIDTH="10" VPOS="2074" HPOS="1063"/><String CONTENT="6,1985" HEIGHT="40" WIDTH="129" VPOS="2074" HPOS="1074"/></TextLine>
44
+ <TextLine HEIGHT="46" WIDTH="813" VPOS="2165" HPOS="648" STYLEREFS="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-"><String CONTENT="[30]" HEIGHT="44" WIDTH="66" VPOS="2165" HPOS="648"/><SP WIDTH="129" VPOS="2166" HPOS="715"/><String CONTENT="Foreign" HEIGHT="41" WIDTH="139" VPOS="2168" HPOS="845"/><SP WIDTH="11" VPOS="2171" HPOS="985"/><String CONTENT="Application" HEIGHT="38" WIDTH="206" VPOS="2171" HPOS="997"/><SP WIDTH="12" VPOS="2170" HPOS="1204"/><String CONTENT="Priority" HEIGHT="41" WIDTH="142" VPOS="2170" HPOS="1217"/><SP WIDTH="12" VPOS="2171" HPOS="1360"/><String CONTENT="Data" HEIGHT="34" WIDTH="88" VPOS="2171" HPOS="1373"/></TextLine>
45
+ <TextLine HEIGHT="43" WIDTH="972" VPOS="2235" HPOS="683" STYLEREFS="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-"><String CONTENT="Sep." HEIGHT="40" WIDTH="68" VPOS="2235" HPOS="683"/><SP WIDTH="16" VPOS="2238" HPOS="752"/><String CONTENT="11,1934" HEIGHT="34" WIDTH="134" VPOS="2238" HPOS="769"/><SP WIDTH="20" VPOS="2235" HPOS="904"/><String CONTENT="DDE]" HEIGHT="42" WIDTH="81" VPOS="2235" HPOS="925"/><SP WIDTH="47" VPOS="2237" HPOS="1007"/><String CONTENT="Fed." HEIGHT="31" WIDTH="72" VPOS="2239" HPOS="1055"/><SP WIDTH="12" VPOS="2239" HPOS="1128"/><String CONTENT="Rep." HEIGHT="39" WIDTH="74" VPOS="2239" HPOS="1141"/><SP WIDTH="13" VPOS="2248" HPOS="1216"/><String CONTENT="of" HEIGHT="30" WIDTH="36" VPOS="2239" HPOS="1230"/><SP WIDTH="6" VPOS="2239" HPOS="1267"/><String CONTENT="Germsay" HEIGHT="38" WIDTH="153" VPOS="2240" HPOS="1274"/><SP WIDTH="14" VPOS="2249" HPOS="1428"/><String CONTENT="—..." HEIGHT="10" WIDTH="66" VPOS="2262" HPOS="1443"/><SP WIDTH="15" VPOS="2242" HPOS="1510"/><String CONTENT="3433331" HEIGHT="32" WIDTH="129" VPOS="2242" HPOS="1526"/></TextLine>
46
+ <TextLine HEIGHT="48" WIDTH="1010" VPOS="2328" HPOS="648"><String CONTENT="[51]" HEIGHT="44" WIDTH="67" VPOS="2328" HPOS="648"/><SP WIDTH="41" VPOS="2328" HPOS="716"/><String CONTENT="Int" HEIGHT="36" WIDTH="66" VPOS="2330" HPOS="758"/><SP WIDTH="12" VPOS="2330" HPOS="825"/><String CONTENT="a*" HEIGHT="36" WIDTH="67" VPOS="2330" HPOS="838"/><SP WIDTH="239" VPOS="2356" HPOS="923"/><String CONTENT="G01R" HEIGHT="34" WIDTH="105" VPOS="2333" HPOS="1180"/><SP WIDTH="9" VPOS="2333" HPOS="1286"/><String CONTENT="27/26;" HEIGHT="42" WIDTH="118" VPOS="2334" HPOS="1296"/><SP WIDTH="12" VPOS="2335" HPOS="1415"/><String CONTENT="G01R" HEIGHT="36" WIDTH="109" VPOS="2334" HPOS="1428"/><SP WIDTH="15" VPOS="2336" HPOS="1538"/><String CONTENT="33/00" HEIGHT="36" WIDTH="104" VPOS="2336" HPOS="1554"/></TextLine>
47
+ <TextLine HEIGHT="50" WIDTH="1007" VPOS="2375" HPOS="648"><String CONTENT="[52]" HEIGHT="46" WIDTH="68" VPOS="2375" HPOS="648"/><SP WIDTH="40" VPOS="2377" HPOS="717"/><String CONTENT="UACi." HEIGHT="35" WIDTH="145" VPOS="2379" HPOS="758"/><SP WIDTH="391" VPOS="2402" HPOS="917"/><String CONTENT="324/61R;" HEIGHT="42" WIDTH="181" VPOS="2381" HPOS="1324"/><SP WIDTH="14" VPOS="2384" HPOS="1506"/><String CONTENT="73/462;" HEIGHT="41" WIDTH="134" VPOS="2384" HPOS="1521"/></TextLine>
48
+ <TextLine HEIGHT="36" WIDTH="195" VPOS="2430" HPOS="1458"><String CONTENT="364/571.01" HEIGHT="36" WIDTH="195" VPOS="2430" HPOS="1458"/></TextLine>
49
+ </TextBlock>
50
+ <TextBlock ID="BlockId-2DD324A6-A04B-4CFF-B505-B37F5296EF00-" HEIGHT="1183" WIDTH="1045" VPOS="1304" HPOS="1732" STYLEREFS="StyleId-710B4720-C248-4223-91D1-BD707AAB23A1-">
51
+ <TextLine HEIGHT="50" WIDTH="1018" VPOS="1312" HPOS="1749"><String CONTENT="[58]" HEIGHT="44" WIDTH="67" VPOS="1312" HPOS="1749"/><SP WIDTH="42" VPOS="1313" HPOS="1817"/><String CONTENT="Field" HEIGHT="35" WIDTH="90" VPOS="1314" HPOS="1860"/><SP WIDTH="12" VPOS="1315" HPOS="1951"/><String CONTENT="of" HEIGHT="35" WIDTH="40" VPOS="1314" HPOS="1964"/><SP WIDTH="8" VPOS="1314" HPOS="2005"/><String CONTENT="Search" HEIGHT="34" WIDTH="119" VPOS="1315" HPOS="2014"/><SP WIDTH="316" VPOS="1318" HPOS="2155"/><String CONTENT="324/61" HEIGHT="37" WIDTH="124" VPOS="1318" HPOS="2472"/><SP WIDTH="16" VPOS="1320" HPOS="2597"/><String CONTENT="R," HEIGHT="39" WIDTH="43" VPOS="1320" HPOS="2614"/><SP WIDTH="14" VPOS="1320" HPOS="2658"/><String CONTENT="61" HEIGHT="35" WIDTH="38" VPOS="1320" HPOS="2673"/><SP WIDTH="17" VPOS="1321" HPOS="2712"/><String CONTENT="P;" HEIGHT="41" WIDTH="37" VPOS="1321" HPOS="2730"/></TextLine>
52
+ <TextLine HEIGHT="47" WIDTH="755" VPOS="1362" HPOS="2011"><String CONTENT="340/870," HEIGHT="39" WIDTH="155" VPOS="1362" HPOS="2011"/><SP WIDTH="14" VPOS="1364" HPOS="2167"/><String CONTENT="37;" HEIGHT="39" WIDTH="52" VPOS="1364" HPOS="2182"/><SP WIDTH="14" VPOS="1364" HPOS="2235"/><String CONTENT="364/481." HEIGHT="39" WIDTH="158" VPOS="1364" HPOS="2250"/><SP WIDTH="13" VPOS="1366" HPOS="2409"/><String CONTENT="486," HEIGHT="39" WIDTH="73" VPOS="1366" HPOS="2423"/><SP WIDTH="16" VPOS="1366" HPOS="2497"/><String CONTENT="56ft" HEIGHT="39" WIDTH="72" VPOS="1366" HPOS="2514"/><SP WIDTH="15" VPOS="1367" HPOS="2587"/><String CONTENT="561," HEIGHT="39" WIDTH="73" VPOS="1367" HPOS="2603"/><SP WIDTH="14" VPOS="1368" HPOS="2677"/><String CONTENT="571;" HEIGHT="41" WIDTH="74" VPOS="1368" HPOS="2692"/></TextLine>
53
+ <TextLine HEIGHT="37" WIDTH="127" VPOS="1414" HPOS="2640"><String CONTENT="73/462" HEIGHT="37" WIDTH="127" VPOS="1414" HPOS="2640"/></TextLine>
54
+ <TextLine HEIGHT="44" WIDTH="660" VPOS="1477" HPOS="1749"><String CONTENT="[56]" HEIGHT="44" WIDTH="66" VPOS="1477" HPOS="1749"/><SP WIDTH="284" VPOS="1477" HPOS="1816"/><String CONTENT="References" HEIGHT="34" WIDTH="195" VPOS="1482" HPOS="2101"/><SP WIDTH="12" VPOS="1484" HPOS="2297"/><String CONTENT="Cited" HEIGHT="34" WIDTH="99" VPOS="1484" HPOS="2310"/></TextLine>
55
+ <TextLine HEIGHT="40" WIDTH="595" VPOS="1545" HPOS="1955"><String CONTENT="U.S." HEIGHT="36" WIDTH="81" VPOS="1545" HPOS="1955"/><SP WIDTH="12" VPOS="1547" HPOS="2037"/><String CONTENT="PATENT" HEIGHT="35" WIDTH="191" VPOS="1547" HPOS="2050"/><SP WIDTH="9" VPOS="1547" HPOS="2242"/><String CONTENT="DOCUMENTS" HEIGHT="38" WIDTH="298" VPOS="1547" HPOS="2252"/></TextLine>
56
+ <TextLine HEIGHT="38" WIDTH="933" VPOS="1617" HPOS="1830" STYLEREFS="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-"><String CONTENT="2,142,738" HEIGHT="35" WIDTH="148" VPOS="1617" HPOS="1830"/><SP WIDTH="38" VPOS="1617" HPOS="1979"/><String CONTENT="7/195*" HEIGHT="34" WIDTH="111" VPOS="1617" HPOS="2018"/><SP WIDTH="32" VPOS="1618" HPOS="2130"/><String CONTENT="W«nuck" HEIGHT="32" WIDTH="140" VPOS="1618" HPOS="2163"/><SP WIDTH="289" VPOS="1623" HPOS="2318"/><String CONTENT="324/61" HEIGHT="32" WIDTH="110" VPOS="1623" HPOS="2608"/><SP WIDTH="14" VPOS="1623" HPOS="2719"/><String CONTENT="R" HEIGHT="30" WIDTH="29" VPOS="1623" HPOS="2734"/></TextLine>
57
+ <TextLine HEIGHT="39" WIDTH="938" VPOS="1660" HPOS="1827" STYLEREFS="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-"><String CONTENT="4063,167" HEIGHT="35" WIDTH="152" VPOS="1660" HPOS="1827"/><SP WIDTH="20" VPOS="1660" HPOS="1980"/><String CONTENT="12/1977" HEIGHT="33" WIDTH="128" VPOS="1660" HPOS="2001"/><SP WIDTH="32" VPOS="1660" HPOS="2130"/><String CONTENT="DnJy" HEIGHT="39" WIDTH="84" VPOS="1660" HPOS="2163"/><SP WIDTH="342" VPOS="1666" HPOS="2266"/><String CONTENT="324/61" HEIGHT="31" WIDTH="109" VPOS="1666" HPOS="2609"/><SP WIDTH="14" VPOS="1666" HPOS="2719"/><String CONTENT="R" HEIGHT="31" WIDTH="31" VPOS="1666" HPOS="2734"/></TextLine>
58
+ <TextLine HEIGHT="38" WIDTH="935" VPOS="1702" HPOS="1827" STYLEREFS="StyleId-FC858F43-9CE2-4E62-B9B9-453243413664-"><String CONTENT="4,251,033" HEIGHT="34" WIDTH="151" VPOS="1702" HPOS="1827"/><SP WIDTH="37" VPOS="1703" HPOS="1979"/><String CONTENT="2/1981" HEIGHT="32" WIDTH="109" VPOS="1704" HPOS="2017"/><SP WIDTH="33" VPOS="1704" HPOS="2127"/><String CONTENT="Chatwin" HEIGHT="32" WIDTH="142" VPOS="1704" HPOS="2161"/><SP WIDTH="8" VPOS="1713" HPOS="2304"/><String CONTENT="et" HEIGHT="25" WIDTH="32" VPOS="1711" HPOS="2313"/><SP WIDTH="10" VPOS="1711" HPOS="2346"/><String CONTENT="si." HEIGHT="30" WIDTH="37" VPOS="1706" HPOS="2357"/><SP WIDTH="151" VPOS="1706" HPOS="2413"/><String CONTENT="324/61" HEIGHT="34" WIDTH="110" VPOS="1706" HPOS="2565"/><SP WIDTH="14" VPOS="1708" HPOS="2676"/><String CONTENT="R" HEIGHT="31" WIDTH="29" VPOS="1708" HPOS="2691"/><SP WIDTH="10" VPOS="1708" HPOS="2721"/><String CONTENT="X" HEIGHT="31" WIDTH="30" VPOS="1708" HPOS="2732"/></TextLine>
59
+ <TextLine HEIGHT="49" WIDTH="793" VPOS="1769" HPOS="1744" STYLEREFS="StyleId-D0C337CC-33CB-4881-A7CE-0E9E10380DA8-"><String CONTENT="Primary" HEIGHT="43" WIDTH="145" VPOS="1769" HPOS="1744"/><SP WIDTH="8" VPOS="1770" HPOS="1890"/><String CONTENT="Examlnei^-Kaahuxi" HEIGHT="38" WIDTH="390" VPOS="1770" HPOS="1899"/><SP WIDTH="12" VPOS="1773" HPOS="2290"/><String CONTENT="J." HEIGHT="35" WIDTH="30" VPOS="1773" HPOS="2303"/><SP WIDTH="15" VPOS="1774" HPOS="2334"/><String CONTENT="Eisenzopf" HEIGHT="44" WIDTH="187" VPOS="1774" HPOS="2350"/></TextLine>
60
+ <TextLine HEIGHT="46" WIDTH="679" VPOS="1818" HPOS="1742" STYLEREFS="StyleId-D0C337CC-33CB-4881-A7CE-0E9E10380DA8-"><String CONTENT="Assistant" HEIGHT="33" WIDTH="157" VPOS="1818" HPOS="1742"/><SP WIDTH="9" VPOS="1818" HPOS="1900"/><String CONTENT="Examintr—Jack" HEIGHT="37" WIDTH="304" VPOS="1818" HPOS="1910"/><SP WIDTH="12" VPOS="1820" HPOS="2215"/><String CONTENT="B." HEIGHT="35" WIDTH="38" VPOS="1820" HPOS="2228"/><SP WIDTH="14" VPOS="1821" HPOS="2267"/><String CONTENT="Harvey" HEIGHT="43" WIDTH="139" VPOS="1821" HPOS="2282"/></TextLine>
61
+ <TextLine HEIGHT="48" WIDTH="997" VPOS="1865" HPOS="1741"><String CONTENT="Attorney," HEIGHT="42" WIDTH="158" VPOS="1865" HPOS="1741"/><SP WIDTH="14" VPOS="1867" HPOS="1900"/><String CONTENT="Agent," HEIGHT="41" WIDTH="111" VPOS="1867" HPOS="1915"/><SP WIDTH="17" VPOS="1876" HPOS="2027"/><String CONTENT="or" HEIGHT="24" WIDTH="36" VPOS="1876" HPOS="2045"/><SP WIDTH="10" VPOS="1867" HPOS="2082"/><String CONTENT="Firm—Roberts," HEIGHT="39" WIDTH="288" VPOS="1867" HPOS="2093"/><SP WIDTH="13" VPOS="1869" HPOS="2382"/><String CONTENT="Spiecens" HEIGHT="44" WIDTH="161" VPOS="1869" HPOS="2396"/><SP WIDTH="12" VPOS="1871" HPOS="2558"/><String CONTENT="&amp;" HEIGHT="33" WIDTH="32" VPOS="1871" HPOS="2571"/><SP WIDTH="11" VPOS="1871" HPOS="2604"/><String CONTENT="Cohen" HEIGHT="35" WIDTH="122" VPOS="1871" HPOS="2616"/></TextLine>
62
+ <TextLine HEIGHT="45" WIDTH="621" VPOS="1934" HPOS="1744"><String CONTENT="[57]" HEIGHT="45" WIDTH="67" VPOS="1934" HPOS="1744"/><SP WIDTH="322" VPOS="1934" HPOS="1812"/><String CONTENT="ABSTRACT" HEIGHT="35" WIDTH="230" VPOS="1938" HPOS="2135"/></TextLine>
63
+ <TextLine HEIGHT="46" WIDTH="1015" VPOS="2003" HPOS="1744"><String CONTENT="A" HEIGHT="32" WIDTH="32" VPOS="2004" HPOS="1744"/><SP WIDTH="17" VPOS="2004" HPOS="1777"/><String CONTENT="capacitive" HEIGHT="42" WIDTH="185" VPOS="2003" HPOS="1795"/><SP WIDTH="14" VPOS="2013" HPOS="1981"/><String CONTENT="measuring" HEIGHT="44" WIDTH="188" VPOS="2004" HPOS="1996"/><SP WIDTH="14" VPOS="2015" HPOS="2185"/><String CONTENT="system" HEIGHT="36" WIDTH="125" VPOS="2012" HPOS="2200"/><SP WIDTH="15" VPOS="2006" HPOS="2326"/><String CONTENT="for" HEIGHT="34" WIDTH="55" VPOS="2006" HPOS="2342"/><SP WIDTH="14" VPOS="2015" HPOS="2398"/><String CONTENT="measuring" HEIGHT="41" WIDTH="189" VPOS="2008" HPOS="2413"/><SP WIDTH="14" VPOS="2015" HPOS="2603"/><String CONTENT="the" HEIGHT="35" WIDTH="59" VPOS="2008" HPOS="2618"/><SP WIDTH="14" VPOS="2011" HPOS="2678"/><String CONTENT="dis" HEIGHT="34" WIDTH="56" VPOS="2009" HPOS="2693"/><HYP CONTENT="172"/></TextLine>
64
+ <TextLine HEIGHT="47" WIDTH="1020" VPOS="2050" HPOS="1741"><String CONTENT="tance" HEIGHT="29" WIDTH="98" VPOS="2053" HPOS="1741"/><SP WIDTH="16" VPOS="2050" HPOS="1840"/><String CONTENT="between" HEIGHT="34" WIDTH="153" VPOS="2050" HPOS="1857"/><SP WIDTH="15" VPOS="2056" HPOS="2011"/><String CONTENT="two" HEIGHT="29" WIDTH="71" VPOS="2056" HPOS="2027"/><SP WIDTH="17" VPOS="2059" HPOS="2099"/><String CONTENT="relatively" HEIGHT="42" WIDTH="175" VPOS="2052" HPOS="2117"/><SP WIDTH="15" VPOS="2061" HPOS="2293"/><String CONTENT="movable" HEIGHT="37" WIDTH="157" VPOS="2052" HPOS="2309"/><SP WIDTH="15" VPOS="2063" HPOS="2467"/><String CONTENT="parts" HEIGHT="37" WIDTH="93" VPOS="2060" HPOS="2483"/><SP WIDTH="14" VPOS="2055" HPOS="2577"/><String CONTENT="based" HEIGHT="35" WIDTH="103" VPOS="2055" HPOS="2592"/><SP WIDTH="15" VPOS="2057" HPOS="2696"/><String CONTENT="on" HEIGHT="25" WIDTH="49" VPOS="2066" HPOS="2712"/></TextLine>
65
+ <TextLine HEIGHT="49" WIDTH="1018" VPOS="2096" HPOS="1741"><String CONTENT="measurement" HEIGHT="27" WIDTH="241" VPOS="2103" HPOS="1741"/><SP WIDTH="10" VPOS="2103" HPOS="1983"/><String CONTENT="of" HEIGHT="36" WIDTH="44" VPOS="2096" HPOS="1994"/><SP WIDTH="5" VPOS="2096" HPOS="2039"/><String CONTENT="capacitative" HEIGHT="44" WIDTH="222" VPOS="2098" HPOS="2045"/><SP WIDTH="11" VPOS="2109" HPOS="2268"/><String CONTENT="charge" HEIGHT="45" WIDTH="126" VPOS="2098" HPOS="2280"/><SP WIDTH="9" VPOS="2110" HPOS="2407"/><String CONTENT="comprising" HEIGHT="44" WIDTH="208" VPOS="2101" HPOS="2417"/><SP WIDTH="10" VPOS="2111" HPOS="2626"/><String CONTENT="a" HEIGHT="26" WIDTH="21" VPOS="2111" HPOS="2637"/><SP WIDTH="12" VPOS="2111" HPOS="2659"/><String CONTENT="mea" HEIGHT="26" WIDTH="75" VPOS="2111" HPOS="2672"/><HYP CONTENT="172"/></TextLine>
66
+ <TextLine HEIGHT="49" WIDTH="1017" VPOS="2143" HPOS="1742"><String CONTENT="suring" HEIGHT="42" WIDTH="112" VPOS="2143" HPOS="1742"/><SP WIDTH="17" VPOS="2151" HPOS="1855"/><String CONTENT="sensor" HEIGHT="26" WIDTH="114" VPOS="2151" HPOS="1873"/><SP WIDTH="17" VPOS="2153" HPOS="1988"/><String CONTENT="which" HEIGHT="35" WIDTH="112" VPOS="2144" HPOS="2006"/><SP WIDTH="18" VPOS="2144" HPOS="2119"/><String CONTENT="forma" HEIGHT="36" WIDTH="106" VPOS="2144" HPOS="2138"/><SP WIDTH="15" VPOS="2154" HPOS="2245"/><String CONTENT="one" HEIGHT="27" WIDTH="67" VPOS="2154" HPOS="2261"/><SP WIDTH="15" VPOS="2156" HPOS="2329"/><String CONTENT="plate" HEIGHT="42" WIDTH="91" VPOS="2147" HPOS="2345"/><SP WIDTH="17" VPOS="2156" HPOS="2437"/><String CONTENT="of" HEIGHT="37" WIDTH="42" VPOS="2146" HPOS="2455"/><SP WIDTH="10" VPOS="2146" HPOS="2498"/><String CONTENT="the" HEIGHT="36" WIDTH="60" VPOS="2147" HPOS="2509"/><SP WIDTH="16" VPOS="2157" HPOS="2570"/><String CONTENT="capacitor" HEIGHT="44" WIDTH="172" VPOS="2148" HPOS="2587"/></TextLine>
67
+ <TextLine HEIGHT="49" WIDTH="1020" VPOS="2189" HPOS="1741"><String CONTENT="whose" HEIGHT="35" WIDTH="118" VPOS="2189" HPOS="1741"/><SP WIDTH="12" VPOS="2199" HPOS="1860"/><String CONTENT="gap" HEIGHT="33" WIDTH="66" VPOS="2199" HPOS="1873"/><SP WIDTH="13" VPOS="2190" HPOS="1940"/><String CONTENT="is" HEIGHT="35" WIDTH="28" VPOS="2190" HPOS="1954"/><SP WIDTH="12" VPOS="2195" HPOS="1983"/><String CONTENT="to" HEIGHT="31" WIDTH="39" VPOS="2195" HPOS="1996"/><SP WIDTH="10" VPOS="2191" HPOS="2036"/><String CONTENT="be" HEIGHT="34" WIDTH="44" VPOS="2191" HPOS="2047"/><SP WIDTH="12" VPOS="2201" HPOS="2092"/><String CONTENT="measured." HEIGHT="34" WIDTH="184" VPOS="2193" HPOS="2105"/><SP WIDTH="14" VPOS="2193" HPOS="2290"/><String CONTENT="With" HEIGHT="36" WIDTH="96" VPOS="2193" HPOS="2305"/><SP WIDTH="10" VPOS="2193" HPOS="2402"/><String CONTENT="the" HEIGHT="34" WIDTH="60" VPOS="2195" HPOS="2413"/><SP WIDTH="12" VPOS="2204" HPOS="2474"/><String CONTENT="position" HEIGHT="43" WIDTH="147" VPOS="2195" HPOS="2487"/><SP WIDTH="13" VPOS="2206" HPOS="2635"/><String CONTENT="of" HEIGHT="36" WIDTH="42" VPOS="2195" HPOS="2649"/><SP WIDTH="9" VPOS="2195" HPOS="2692"/><String CONTENT="the" HEIGHT="35" WIDTH="59" VPOS="2197" HPOS="2702"/></TextLine>
68
+ <TextLine HEIGHT="48" WIDTH="1019" VPOS="2237" HPOS="1741"><String CONTENT="sensor" HEIGHT="25" WIDTH="116" VPOS="2246" HPOS="1741"/><SP WIDTH="10" VPOS="2237" HPOS="1858"/><String CONTENT="fkee" HEIGHT="35" WIDTH="74" VPOS="2237" HPOS="1869"/><SP WIDTH="9" VPOS="2237" HPOS="1944"/><String CONTENT="in" HEIGHT="35" WIDTH="35" VPOS="2237" HPOS="1954"/><SP WIDTH="9" VPOS="2243" HPOS="1990"/><String CONTENT="the" HEIGHT="37" WIDTH="59" VPOS="2237" HPOS="2000"/><SP WIDTH="10" VPOS="2237" HPOS="2060"/><String CONTENT="fixed" HEIGHT="37" WIDTH="90" VPOS="2237" HPOS="2071"/><SP WIDTH="12" VPOS="2239" HPOS="2162"/><String CONTENT="part" HEIGHT="39" WIDTH="74" VPOS="2244" HPOS="2175"/><SP WIDTH="9" VPOS="2244" HPOS="2250"/><String CONTENT="of" HEIGHT="37" WIDTH="43" VPOS="2239" HPOS="2260"/><SP WIDTH="5" VPOS="2239" HPOS="2304"/><String CONTENT="casing" HEIGHT="44" WIDTH="115" VPOS="2241" HPOS="2310"/><SP WIDTH="9" VPOS="2243" HPOS="2426"/><String CONTENT="being" HEIGHT="44" WIDTH="102" VPOS="2241" HPOS="2436"/><SP WIDTH="10" VPOS="2243" HPOS="2539"/><String CONTENT="known," HEIGHT="41" WIDTH="137" VPOS="2243" HPOS="2550"/><SP WIDTH="13" VPOS="2250" HPOS="2688"/><String CONTENT="the" HEIGHT="37" WIDTH="58" VPOS="2243" HPOS="2702"/></TextLine>
69
+ <TextLine HEIGHT="49" WIDTH="1019" VPOS="2284" HPOS="1741"><String CONTENT="plate" HEIGHT="44" WIDTH="89" VPOS="2284" HPOS="1741"/><SP WIDTH="18" VPOS="2285" HPOS="1831"/><String CONTENT="distance" HEIGHT="35" WIDTH="149" VPOS="2285" HPOS="1850"/><SP WIDTH="16" VPOS="2295" HPOS="2000"/><String CONTENT="of" HEIGHT="37" WIDTH="44" VPOS="2285" HPOS="2017"/><SP WIDTH="12" VPOS="2285" HPOS="2062"/><String CONTENT="the" HEIGHT="36" WIDTH="58" VPOS="2286" HPOS="2075"/><SP WIDTH="17" VPOS="2297" HPOS="2134"/><String CONTENT="gap" HEIGHT="35" WIDTH="67" VPOS="2297" HPOS="2152"/><SP WIDTH="18" VPOS="2297" HPOS="2220"/><String CONTENT="capacitor" HEIGHT="44" WIDTH="172" VPOS="2288" HPOS="2239"/><SP WIDTH="18" VPOS="2299" HPOS="2412"/><String CONTENT="provides" HEIGHT="43" WIDTH="161" VPOS="2290" HPOS="2431"/><SP WIDTH="17" VPOS="2301" HPOS="2593"/><String CONTENT="a" HEIGHT="26" WIDTH="21" VPOS="2301" HPOS="2611"/><SP WIDTH="17" VPOS="2292" HPOS="2633"/><String CONTENT="direct" HEIGHT="35" WIDTH="109" VPOS="2292" HPOS="2651"/></TextLine>
70
+ <TextLine HEIGHT="47" WIDTH="362" VPOS="2332" HPOS="1741"><String CONTENT="measure" HEIGHT="26" WIDTH="150" VPOS="2342" HPOS="1741"/><SP WIDTH="12" VPOS="2343" HPOS="1892"/><String CONTENT="of" HEIGHT="37" WIDTH="42" VPOS="2332" HPOS="1905"/><SP WIDTH="8" VPOS="2332" HPOS="1948"/><String CONTENT="the" HEIGHT="35" WIDTH="57" VPOS="2334" HPOS="1957"/><SP WIDTH="10" VPOS="2343" HPOS="2015"/><String CONTENT="gap." HEIGHT="36" WIDTH="77" VPOS="2343" HPOS="2026"/></TextLine>
71
+ <TextLine HEIGHT="45" WIDTH="521" VPOS="2434" HPOS="1989"><String CONTENT="11" HEIGHT="33" WIDTH="38" VPOS="2436" HPOS="1989"/><SP WIDTH="13" VPOS="2435" HPOS="2028"/><String CONTENT="Claims," HEIGHT="41" WIDTH="133" VPOS="2434" HPOS="2042"/><SP WIDTH="12" VPOS="2436" HPOS="2176"/><String CONTENT="4" HEIGHT="33" WIDTH="24" VPOS="2436" HPOS="2189"/><SP WIDTH="11" VPOS="2436" HPOS="2214"/><String CONTENT="Drawing" HEIGHT="43" WIDTH="153" VPOS="2436" HPOS="2226"/><SP WIDTH="12" VPOS="2438" HPOS="2380"/><String CONTENT="Sheets" HEIGHT="35" WIDTH="117" VPOS="2438" HPOS="2393"/></TextLine>
72
+ </TextBlock><Illustration ID="BlockId-B4D6584B-D852-45BE-A803-458A240F14A5-" HEIGHT="1038" WIDTH="1078" VPOS="2812" HPOS="1194"/>
73
+ <ComposedBlock ID="BlockId-C15CC370-364A-49C3-BCF4-5AE85F1CEBCA-" HEIGHT="129" WIDTH="1918" VPOS="3967" HPOS="1151" TYPE="container">
74
+ <TextBlock ID="BlockId-3DA12A5F-58B8-479F-9148-549574842ABC-" HEIGHT="61" WIDTH="336" VPOS="4035" HPOS="1151" STYLEREFS="StyleId-AE942207-8F0A-4939-82FE-D097E0FDB4CE-">
75
+ <TextLine HEIGHT="44" WIDTH="320" VPOS="4043" HPOS="1159"><String CONTENT="June" HEIGHT="37" WIDTH="114" VPOS="4043" HPOS="1159"/><SP WIDTH="16" VPOS="4044" HPOS="1274"/><String CONTENT="10,1997" HEIGHT="43" WIDTH="188" VPOS="4044" HPOS="1291"/></TextLine>
76
+ </TextBlock>
77
+ <TextBlock ID="BlockId-A2EE149C-AB9A-46FA-86B2-F5E3E403F34F-" HEIGHT="70" WIDTH="251" VPOS="3967" HPOS="2818" STYLEREFS="StyleId-64DD1B39-E610-46CD-9344-4BF516F311BC-">
78
+ <TextLine HEIGHT="52" WIDTH="235" VPOS="3976" HPOS="2826"><String CONTENT="Page" HEIGHT="52" WIDTH="127" VPOS="3976" HPOS="2826"/><SP WIDTH="19" VPOS="3976" HPOS="2954"/><String CONTENT="195" HEIGHT="40" WIDTH="87" VPOS="3976" HPOS="2974"/></TextLine>
79
+ </TextBlock></ComposedBlock><GraphicalElement ID="BlockId-CE302001-9A41-44A5-95DF-670C59C22F67-" HEIGHT="16" WIDTH="2704" VPOS="199" HPOS="359"/><GraphicalElement ID="BlockId-03DE6659-281F-411A-AE09-8F4BD3CBCF6B-" HEIGHT="7" WIDTH="2703" VPOS="335" HPOS="359"/><GraphicalElement ID="BlockId-55EF79E1-A213-4F1B-A54A-930CEF455835-" HEIGHT="6" WIDTH="1949" VPOS="647" HPOS="1112"/><GraphicalElement ID="BlockId-63D46FC5-8AE3-4675-9EC8-7045FA63BBB4-" HEIGHT="4" WIDTH="702" VPOS="650" HPOS="360"/><GraphicalElement ID="BlockId-C71CC194-8105-4B38-8B87-293994925636-" HEIGHT="21" WIDTH="2115" VPOS="1230" HPOS="655"/><GraphicalElement ID="BlockId-43CADC4F-C7BA-4F3A-8EA7-7B6F6583FB9F-" HEIGHT="9" WIDTH="186" VPOS="3012" HPOS="1274"/><GraphicalElement ID="BlockId-D36C5970-D79F-4C64-B54E-1F4EEFE5B3CC-" HEIGHT="9" WIDTH="197" VPOS="3038" HPOS="1536"/><GraphicalElement ID="BlockId-057576D2-4225-4860-B848-C2C63E8A9308-" HEIGHT="9" WIDTH="187" VPOS="3042" HPOS="1931"/><GraphicalElement ID="BlockId-D24FD2DA-B4F1-42E6-9965-98F4D631844B-" HEIGHT="7" WIDTH="157" VPOS="3063" HPOS="1301"/><GraphicalElement ID="BlockId-D0861CA8-FD64-42BE-83BE-AFEAC166C0B5-" HEIGHT="7" WIDTH="148" VPOS="3089" HPOS="1926"/><GraphicalElement ID="BlockId-17892619-41BF-4DCE-BB21-8F524CF88618-" HEIGHT="12" WIDTH="538" VPOS="3269" HPOS="1506"/><GraphicalElement ID="BlockId-015E6374-804E-4039-9261-70637AE5D57C-" HEIGHT="10" WIDTH="216" VPOS="3319" HPOS="1608"/><GraphicalElement ID="BlockId-DC2326A0-D34B-426A-8299-0C60FEE28798-" HEIGHT="9" WIDTH="352" VPOS="3397" HPOS="1789"/><GraphicalElement ID="BlockId-71A68B8A-BCBD-488D-A325-F724EE118D83-" HEIGHT="9" WIDTH="277" VPOS="3428" HPOS="1716"/><GraphicalElement ID="BlockId-7A2F2B18-2DB3-4B69-A42C-1AA5DCDCAB70-" HEIGHT="7" WIDTH="223" VPOS="3463" HPOS="1721"/><GraphicalElement ID="BlockId-805C04EE-1E5D-4C7D-9AEA-C0E3854A3D10-" HEIGHT="9" WIDTH="163" VPOS="3498" HPOS="1720"/><GraphicalElement ID="BlockId-2B8DD1E5-7B59-4415-BCDC-9A57F2B9964E-" HEIGHT="8" WIDTH="272" VPOS="3539" HPOS="1825"/><GraphicalElement ID="BlockId-2A2DC95A-84D2-4A43-BFD7-B6D1E90FB622-" HEIGHT="9" WIDTH="273" VPOS="3639" HPOS="1825"/><GraphicalElement ID="BlockId-3FCE740C-18C7-4EB2-B0CD-9EE0A80190BC-" HEIGHT="10" WIDTH="2708" VPOS="3933" HPOS="353"/><GraphicalElement ID="BlockId-D0ACA928-05D5-48E6-BAF4-A18D630C70A1-" HEIGHT="991" WIDTH="10" VPOS="2852" HPOS="1182"/><GraphicalElement ID="BlockId-92836D2C-62C4-4B9F-A012-FD07A513C06B-" HEIGHT="543" WIDTH="12" VPOS="3059" HPOS="1407"/><GraphicalElement ID="BlockId-BEDABDC1-1913-4D55-81DF-ECBE1EFB5B54-" HEIGHT="166" WIDTH="7" VPOS="3319" HPOS="1607"/><GraphicalElement ID="BlockId-E1B4C5E5-6A37-4578-8046-7B9A66D1F2B5-" HEIGHT="326" WIDTH="9" VPOS="2896" HPOS="1623"/><GraphicalElement ID="BlockId-AF311305-8816-4C5D-9336-EA2FA22EB1ED-" HEIGHT="365" WIDTH="7" VPOS="3396" HPOS="1720"/><GraphicalElement ID="BlockId-C831D0B2-6823-4D7D-AAE1-0F561C05B7BE-" HEIGHT="165" WIDTH="8" VPOS="3163" HPOS="1818"/><GraphicalElement ID="BlockId-10CB53AE-26F2-4413-BEC9-3B2C739C2AE1-" HEIGHT="331" WIDTH="9" VPOS="3217" HPOS="1934"/><GraphicalElement ID="BlockId-9F876439-EABE-4648-B886-9B003352EF26-" HEIGHT="271" WIDTH="8" VPOS="3275" HPOS="2036"/><GraphicalElement ID="BlockId-E5542DB1-CBBF-4505-A53E-C52F6D420C31-" HEIGHT="447" WIDTH="7" VPOS="3403" HPOS="2236"/><GraphicalElement ID="BlockId-571D5BF1-BA0E-405E-992F-E657CD3E4162-" HEIGHT="72" WIDTH="6" VPOS="3397" HPOS="1789"/><GraphicalElement ID="BlockId-07414CAC-F6C8-4979-9692-789123916694-" HEIGHT="106" WIDTH="6" VPOS="3540" HPOS="1824"/><GraphicalElement ID="BlockId-99D81C55-F760-4A45-9725-817155408FBD-" HEIGHT="108" WIDTH="7" VPOS="3540" HPOS="2090"/><GraphicalElement ID="BlockId-ACCE86D4-BC91-4F8A-9BDF-6C52933137DD-" HEIGHT="1" WIDTH="56" VPOS="1234" HPOS="1412"/><GraphicalElement ID="BlockId-C63FF1C7-FD98-49BB-ACF9-A45E17359D42-" HEIGHT="9" WIDTH="47" VPOS="1685" HPOS="2521"/><GraphicalElement ID="BlockId-FD38D378-90EA-4C94-9CE3-87FF9DECA63F-" HEIGHT="12" WIDTH="135" VPOS="1726" HPOS="2413"/><GraphicalElement ID="BlockId-7C2D684F-8DCE-4DE1-98CF-3CFCC6065C22-" HEIGHT="18" WIDTH="975" VPOS="2850" HPOS="1193"/><GraphicalElement ID="BlockId-51C0B682-0671-4692-9ECD-142625D9A704-" HEIGHT="10" WIDTH="50" VPOS="3397" HPOS="1845"/><GraphicalElement ID="BlockId-88C67CA3-6E41-4701-B6B6-C89AACDC45C4-" HEIGHT="15" WIDTH="947" VPOS="3835" HPOS="1243"/><GraphicalElement ID="BlockId-8176B1D7-D057-450E-A17A-1BF8D40D49DB-" HEIGHT="103" WIDTH="16" VPOS="3405" HPOS="1819"/><GraphicalElement ID="BlockId-F82B7EBC-594D-453F-91CA-F9FC386EE3CE-" HEIGHT="50" WIDTH="1" VPOS="3292" HPOS="2043"/>
80
+ </PrintSpace>
81
+ </Page>
82
+ </Layout>
83
+ </alto>
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
@@ -0,0 +1 @@
1
+ this is another text file for resource 1
@@ -0,0 +1 @@
1
+ this is a text file for resource 1
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
@@ -0,0 +1 @@
1
+ this is another text file for resource 2
@@ -0,0 +1 @@
1
+ this is a text file for resource 2
@@ -0,0 +1 @@
1
+ this is another text file for resource 3
Binary file
@@ -0,0 +1 @@
1
+ Fake file: Transcript/aa111aa1111.pdf
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,260 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: assembly-objectfile
3
+ version: !ruby/object:Gem::Version
4
+ hash: 3
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 5
9
+ - 0
10
+ version: 1.5.0
11
+ platform: ruby
12
+ authors:
13
+ - Peter Mangiafico
14
+ - Renzo Sanchez-Silva
15
+ - Monty Hindman
16
+ - Tony Calavano
17
+ autorequire:
18
+ bindir: bin
19
+ cert_chain: []
20
+
21
+ date: 2013-04-18 00:00:00 Z
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ prerelease: false
34
+ type: :runtime
35
+ name: mini_exiftool
36
+ requirement: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ version_requirements: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ prerelease: false
48
+ type: :runtime
49
+ name: mime-types
50
+ requirement: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ prerelease: false
62
+ type: :runtime
63
+ name: nokogiri
64
+ requirement: *id003
65
+ - !ruby/object:Gem::Dependency
66
+ version_requirements: &id004 !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ~>
70
+ - !ruby/object:Gem::Version
71
+ hash: 15
72
+ segments:
73
+ - 2
74
+ - 6
75
+ version: "2.6"
76
+ prerelease: false
77
+ type: :development
78
+ name: rspec
79
+ requirement: *id004
80
+ - !ruby/object:Gem::Dependency
81
+ version_requirements: &id005 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ hash: 21
87
+ segments:
88
+ - 1
89
+ - 0
90
+ - 1
91
+ version: 1.0.1
92
+ prerelease: false
93
+ type: :development
94
+ name: lyberteam-devel
95
+ requirement: *id005
96
+ - !ruby/object:Gem::Dependency
97
+ version_requirements: &id006 !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ">"
101
+ - !ruby/object:Gem::Version
102
+ hash: 23
103
+ segments:
104
+ - 1
105
+ - 0
106
+ - 0
107
+ version: 1.0.0
108
+ prerelease: false
109
+ type: :development
110
+ name: lyberteam-gems-devel
111
+ requirement: *id006
112
+ - !ruby/object:Gem::Dependency
113
+ version_requirements: &id007 !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ hash: 3
119
+ segments:
120
+ - 0
121
+ version: "0"
122
+ prerelease: false
123
+ type: :development
124
+ name: yard
125
+ requirement: *id007
126
+ description: Get exif data, file sizes and more.
127
+ email:
128
+ - pmangiafico@stanford.edu
129
+ executables:
130
+ - console
131
+ - run_all_tests
132
+ extensions: []
133
+
134
+ extra_rdoc_files: []
135
+
136
+ files:
137
+ - .gitignore
138
+ - .rspec
139
+ - .rvmrc
140
+ - .rvmrc.example
141
+ - Gemfile
142
+ - README.rdoc
143
+ - Rakefile
144
+ - assembly-objectfile.gemspec
145
+ - bin/console
146
+ - bin/run_all_tests
147
+ - config/boot.rb
148
+ - lib/assembly-objectfile.rb
149
+ - lib/assembly-objectfile/content_metadata.rb
150
+ - lib/assembly-objectfile/object_file.rb
151
+ - lib/assembly-objectfile/object_fileable.rb
152
+ - lib/assembly-objectfile/version.rb
153
+ - profiles/AdobeRGB1998.icc
154
+ - profiles/DotGain20.icc
155
+ - profiles/sRGBIEC6196621.icc
156
+ - spec/content_metadata_spec.rb
157
+ - spec/object_file_spec.rb
158
+ - spec/spec_helper.rb
159
+ - spec/test_data/input/.empty
160
+ - spec/test_data/input/file_with_no_exif.xml
161
+ - spec/test_data/input/oo000oo0001/00/oo000oo0001_00_001.tif
162
+ - spec/test_data/input/oo000oo0001/00/oo000oo0001_00_002.tif
163
+ - spec/test_data/input/oo000oo0001/05/oo000oo0001_05_001.jp2
164
+ - spec/test_data/input/oo000oo0001/05/oo000oo0001_05_002.jp2
165
+ - spec/test_data/input/oo000oo0001/15/oo000oo0001_15_001.pdf
166
+ - spec/test_data/input/oo000oo0001/15/oo000oo0001_15_002.pdf
167
+ - spec/test_data/input/oo000oo0001/31/oo000oo0001_31_001.pdf
168
+ - spec/test_data/input/oo000oo0001/50/oo000oo0001_50_001.tif
169
+ - spec/test_data/input/oo000oo0001/oo000oo0001_book.pdf
170
+ - spec/test_data/input/res1_image1.jp2
171
+ - spec/test_data/input/res1_image1.tif
172
+ - spec/test_data/input/res1_image2.jp2
173
+ - spec/test_data/input/res1_image2.tif
174
+ - spec/test_data/input/res1_teifile.txt
175
+ - spec/test_data/input/res1_textfile.txt
176
+ - spec/test_data/input/res1_transcript.pdf
177
+ - spec/test_data/input/res2_image1.jp2
178
+ - spec/test_data/input/res2_image1.tif
179
+ - spec/test_data/input/res2_image2.jp2
180
+ - spec/test_data/input/res2_image2.tif
181
+ - spec/test_data/input/res2_teifile.txt
182
+ - spec/test_data/input/res2_textfile.txt
183
+ - spec/test_data/input/res3_image1.jp2
184
+ - spec/test_data/input/res3_image1.tif
185
+ - spec/test_data/input/res3_teifile.txt
186
+ - spec/test_data/input/test.jp2
187
+ - spec/test_data/input/test.pdf
188
+ - spec/test_data/input/test.tif
189
+ - spec/test_data/input/test2.jp2
190
+ - spec/test_data/input/test2.tif
191
+ homepage: ""
192
+ licenses: []
193
+
194
+ post_install_message:
195
+ rdoc_options: []
196
+
197
+ require_paths:
198
+ - lib
199
+ required_ruby_version: !ruby/object:Gem::Requirement
200
+ none: false
201
+ requirements:
202
+ - - ">="
203
+ - !ruby/object:Gem::Version
204
+ hash: 3
205
+ segments:
206
+ - 0
207
+ version: "0"
208
+ required_rubygems_version: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ hash: 3
214
+ segments:
215
+ - 0
216
+ version: "0"
217
+ requirements: []
218
+
219
+ rubyforge_project: assembly-objectfile
220
+ rubygems_version: 1.8.24
221
+ signing_key:
222
+ specification_version: 3
223
+ summary: Ruby immplementation of file services needed to prepare objects to be accessioned in SULAIR digital library
224
+ test_files:
225
+ - spec/content_metadata_spec.rb
226
+ - spec/object_file_spec.rb
227
+ - spec/spec_helper.rb
228
+ - spec/test_data/input/.empty
229
+ - spec/test_data/input/file_with_no_exif.xml
230
+ - spec/test_data/input/oo000oo0001/00/oo000oo0001_00_001.tif
231
+ - spec/test_data/input/oo000oo0001/00/oo000oo0001_00_002.tif
232
+ - spec/test_data/input/oo000oo0001/05/oo000oo0001_05_001.jp2
233
+ - spec/test_data/input/oo000oo0001/05/oo000oo0001_05_002.jp2
234
+ - spec/test_data/input/oo000oo0001/15/oo000oo0001_15_001.pdf
235
+ - spec/test_data/input/oo000oo0001/15/oo000oo0001_15_002.pdf
236
+ - spec/test_data/input/oo000oo0001/31/oo000oo0001_31_001.pdf
237
+ - spec/test_data/input/oo000oo0001/50/oo000oo0001_50_001.tif
238
+ - spec/test_data/input/oo000oo0001/oo000oo0001_book.pdf
239
+ - spec/test_data/input/res1_image1.jp2
240
+ - spec/test_data/input/res1_image1.tif
241
+ - spec/test_data/input/res1_image2.jp2
242
+ - spec/test_data/input/res1_image2.tif
243
+ - spec/test_data/input/res1_teifile.txt
244
+ - spec/test_data/input/res1_textfile.txt
245
+ - spec/test_data/input/res1_transcript.pdf
246
+ - spec/test_data/input/res2_image1.jp2
247
+ - spec/test_data/input/res2_image1.tif
248
+ - spec/test_data/input/res2_image2.jp2
249
+ - spec/test_data/input/res2_image2.tif
250
+ - spec/test_data/input/res2_teifile.txt
251
+ - spec/test_data/input/res2_textfile.txt
252
+ - spec/test_data/input/res3_image1.jp2
253
+ - spec/test_data/input/res3_image1.tif
254
+ - spec/test_data/input/res3_teifile.txt
255
+ - spec/test_data/input/test.jp2
256
+ - spec/test_data/input/test.pdf
257
+ - spec/test_data/input/test.tif
258
+ - spec/test_data/input/test2.jp2
259
+ - spec/test_data/input/test2.tif
260
+ has_rdoc: