traject 0.14.1 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -8,5 +8,5 @@ group :development do
8
8
  end
9
9
 
10
10
  group :debug do
11
- gem "pry"
11
+ gem "ruby-debug"
12
12
  end
@@ -22,7 +22,7 @@ require 'traject/macros/basic'
22
22
  # 2) Responds to the usual ruby #each, returning a source record from each #each.
23
23
  # (Including Enumerable is prob a good idea too)
24
24
  #
25
- # The default reader is the Traject::MarcReader, who's behavior is
25
+ # The default reader is the Traject::Marc4JReader, who's behavior is
26
26
  # further customized by several settings in the Settings hash.
27
27
  #
28
28
  # Alternate readers can be set directly with the #reader_class= method, or
@@ -198,14 +198,13 @@ class Traject::Indexer
198
198
  accumulator = log_mapping_errors(context, index_step) do
199
199
  index_step.execute(context) # will always return [] for an each_record step
200
200
  end
201
- context.index_step =
202
201
 
203
- accumulator.compact!
204
202
  if accumulator.size > 0
203
+ accumulator.compact!
205
204
  (context.output_hash[index_step.field_name] ||= []).concat accumulator
206
205
  end
207
206
 
208
- context.index_step = index_step
207
+ context.index_step = nil
209
208
  end
210
209
 
211
210
  return context
@@ -432,10 +431,10 @@ class Traject::Indexer
432
431
  # but for positive arrity, we need 1 or 2 args
433
432
  if proc
434
433
  unless proc.is_a?(Proc)
435
- raise NamingError.new("argument to each_record must be a block/lambda, not a #{proc.class} (#{self.inspect})")
434
+ raise NamingError.new("argument to each_record must be a block/lambda, not a #{proc.class} #{self.inspect}")
436
435
  end
437
436
  if (proc.arity == 0 || proc.arity > 2)
438
- raise ArityError.new("block/proc given to each_record needs 1 or 2 arguments: (#{self.inspect})")
437
+ raise ArityError.new("block/proc given to each_record needs 1 or 2 arguments: #{self.inspect}")
439
438
  end
440
439
  end
441
440
  end
@@ -459,7 +458,7 @@ class Traject::Indexer
459
458
 
460
459
  # Over-ride inspect for outputting error messages etc.
461
460
  def inspect
462
- "<each_record at #{source_location}>"
461
+ "(each_record at #{source_location})"
463
462
  end
464
463
  end
465
464
 
@@ -494,7 +493,7 @@ class Traject::Indexer
494
493
 
495
494
  # Override inspect for developer debug messages
496
495
  def inspect
497
- "<to_field #{self.field_name} at #{self.source_location}>"
496
+ "(to_field #{self.field_name} at #{self.source_location})"
498
497
  end
499
498
 
500
499
  def execute(context)
@@ -17,7 +17,7 @@ module Traject::Macros
17
17
  # MarcExtractor::parse_string_spec.
18
18
  #
19
19
  # Second arg is optional options, including options valid on MarcExtractor.new,
20
- # and others. (TODO)
20
+ # and others. By default, will de-duplicate results, but see :allow_duplicates
21
21
  #
22
22
  # * :first => true: take only first value
23
23
  # * :translation_map => String: translate with named translation map looked up in load
@@ -25,32 +25,28 @@ module Traject::Macros
25
25
  # * :trim_punctuation => true; trims leading/trailing punctuation using standard algorithms that
26
26
  # have shown themselves useful with Marc, using Marc21.trim_punctuation
27
27
  # * :default => String: if otherwise empty, add default value
28
+ # * :allow_duplicates => boolean, default false, if set to true then will avoid
29
+ # de-duplicating the result array (array.uniq!)
30
+ #
28
31
  #
29
32
  # Examples:
30
33
  #
31
34
  # to_field("title"), extract_marc("245abcd", :trim_punctuation => true)
32
35
  # to_field("id"), extract_marc("001", :first => true)
33
36
  # to_field("geo"), extract_marc("040a", :separator => nil, :translation_map => "marc040")
34
-
35
-
36
- # A list of symbols that are valid keys in the options hash
37
- EXTRACT_MARC_VALID_OPTIONS = [:first, :trim_punctuation, :default,
38
- :deduplicate, :uniq, :separator, :translation_map,
39
- :alternate_script]
40
-
41
37
  def extract_marc(spec, options = {})
42
38
 
43
39
  # Raise an error if there are any invalid options, indicating a
44
40
  # misspelled or illegal option, using a string instead of a symbol, etc.
45
41
 
46
42
  unless (options.keys - EXTRACT_MARC_VALID_OPTIONS).empty?
47
- raise RuntimeError.new("Illegal/Unknown argument '#{options.keys.join(', ')}' in extract_marc at #{Traject::Util.extract_caller_location(caller.first)}")
43
+ raise RuntimeError.new("Illegal/Unknown argument '#{(options.keys - EXTRACT_MARC_VALID_OPTIONS).join(', ')}' in extract_marc at #{Traject::Util.extract_caller_location(caller.first)}")
48
44
  end
49
45
 
50
46
  only_first = options.delete(:first)
51
47
  trim_punctuation = options.delete(:trim_punctuation)
52
48
  default_value = options.delete(:default)
53
- deduplicate = options.delete(:deduplicate) || options.delete(:uniq)
49
+ allow_duplicates = options.delete(:allow_duplicates)
54
50
 
55
51
  # We create the TranslationMap and the MarcExtractor here
56
52
  # on load, so the lambda can just refer to already created
@@ -81,7 +77,7 @@ module Traject::Macros
81
77
  accumulator.collect! {|s| Marc21.trim_punctuation(s)}
82
78
  end
83
79
 
84
- if deduplicate
80
+ unless allow_duplicates
85
81
  accumulator.uniq!
86
82
  end
87
83
 
@@ -91,7 +87,11 @@ module Traject::Macros
91
87
 
92
88
  end
93
89
  end
94
-
90
+ # A list of symbols that are valid keys in the options hash
91
+ EXTRACT_MARC_VALID_OPTIONS = [:first, :trim_punctuation, :default,
92
+ :allow_duplicates, :separator, :translation_map,
93
+ :alternate_script]
94
+
95
95
  # Serializes complete marc record to a serialization format.
96
96
  # required param :format,
97
97
  # serialize_marc(:format => :binary)
@@ -110,12 +110,9 @@ module Traject::Macros
110
110
  # serialized, with certain header bytes filled with ascii 0's
111
111
  # -- technically illegal MARC, but can still be read by
112
112
  # ruby MARC::Reader in permissive mode.
113
-
114
- SERIALZED_MARC_VALID_OPTIONS = [:format, :binary_escape, :allow_oversized, :format]
115
-
116
113
  def serialized_marc(options)
117
114
  unless (options.keys - SERIALZED_MARC_VALID_OPTIONS).empty?
118
- raise RuntimeError.new("Illegal/Unknown argument '#{options.keys.join(', ')}' in seralized_marc at #{Traject::Util.extract_caller_location(caller.first)}")
115
+ raise RuntimeError.new("Illegal/Unknown argument '#{(options.keys - SERIALZED_MARC_VALID_OPTIONS).join(', ')}' in seralized_marc at #{Traject::Util.extract_caller_location(caller.first)}")
119
116
  end
120
117
 
121
118
  format = options[:format].to_s
@@ -139,6 +136,7 @@ module Traject::Macros
139
136
  end
140
137
  end
141
138
  end
139
+ SERIALZED_MARC_VALID_OPTIONS = [:format, :binary_escape, :allow_oversized]
142
140
 
143
141
  # Takes the whole record, by default from tags 100 to 899 inclusive,
144
142
  # all subfields, and adds them to output. Subfields in a record are all
@@ -153,12 +151,9 @@ module Traject::Macros
153
151
  #
154
152
  # Can always run this thing multiple times on the same field if you need
155
153
  # non-contiguous ranges of fields.
156
-
157
- EXTRACT_ALL_MARC_VALID_OPTIONS = [:separator, :from, :to]
158
-
159
154
  def extract_all_marc_values(options = {})
160
155
  unless (options.keys - EXTRACT_ALL_MARC_VALID_OPTIONS).empty?
161
- raise RuntimeError.new("Illegal/Unknown argument '#{options.keys.join(', ')}' in extract_all_marc at #{Traject::Util.extract_caller_location(caller.first)}")
156
+ raise RuntimeError.new("Illegal/Unknown argument '#{(options.keys - EXTRACT_ALL_MARC_VALID_OPTIONS).join(', ')}' in extract_all_marc at #{Traject::Util.extract_caller_location(caller.first)}")
162
157
  end
163
158
  options = {:from => "100", :to => "899", :separator => ' '}.merge(options)
164
159
 
@@ -177,6 +172,7 @@ module Traject::Macros
177
172
  end
178
173
 
179
174
  end
175
+ EXTRACT_ALL_MARC_VALID_OPTIONS = [:separator, :from, :to]
180
176
 
181
177
 
182
178
  # Trims punctuation mostly from end, and occasionally from beginning
@@ -203,4 +199,4 @@ module Traject::Macros
203
199
  end
204
200
 
205
201
  end
206
- end
202
+ end
@@ -60,21 +60,21 @@ module Traject::Macros
60
60
  end
61
61
 
62
62
  def self.get_sortable_author(record)
63
- onexx = MarcExtractor.cached("100:110:111", :first => true).extract(record).first
63
+ onexx = MarcExtractor.cached("100:110:111", :first => true, :trim_punctuation => true).extract(record).first
64
64
  onexx = onexx.strip if onexx
65
-
65
+
66
66
  titles = []
67
67
  MarcExtractor.cached("240:245", :first => true).each_matching_line(record) do |field, spec|
68
- non_filing = field.indicator2.to_i
68
+ non_filing = field.indicator2.to_i
69
69
 
70
- str = field.subfields.collect {|sf| sf.value}.join(" ")
70
+ str = field.subfields.collect {|sf| Marc21.trim_punctuation(sf.value.strip).strip}.join(" ")
71
71
  str = str.slice(non_filing, str.length)
72
72
  titles << str
73
73
  end.first
74
74
  title = titles.first
75
75
  title = title.strip if title
76
-
77
- return "#{onexx}#{title}"
76
+
77
+ return [onexx, title].compact.join(" ")
78
78
  end
79
79
 
80
80
 
@@ -105,6 +105,66 @@ module Traject::Macros
105
105
  str
106
106
  end.first
107
107
  end
108
+
109
+
110
+
111
+ # A generic way to strip a filing version (i.e., a string with the non-filing
112
+ # characters stripped off)
113
+ #
114
+ # Always returns an array. If :include_original=>true is passed in,
115
+ # that array will include the original string with the non-filing
116
+ # characters still in it.
117
+
118
+ def extract_marc_filing_version(spec='245abdefghknp', opts={})
119
+ include_original = opts.delete(:include_original)
120
+ if opts.size > 0
121
+ raise RuntimeError.new("extract_marc_filing_version can take only :include_original as an argument, not #{opts.keys.map{|x| "'#{x}'"}.join(' or ')}")
122
+ end
123
+
124
+ extractor = Traject::MarcExtractor.cached(spec, opts)
125
+
126
+ lambda do |record, accumulator, context|
127
+ extractor.collect_matching_lines(record) do |field, spec|
128
+ str = extractor.collect_subfields(field, spec).first
129
+ next unless str and !str.empty?
130
+ vals = [Marc21Semantics.filing_version(field, str, spec)]
131
+ if include_original
132
+ vals.unshift str
133
+ vals.uniq!
134
+ end
135
+ accumulator.concat vals
136
+ end
137
+ end
138
+ end
139
+
140
+
141
+
142
+
143
+ # Take in a field, a string extracted from that field, and a spec and
144
+ # return the filing version (i.e., the string without the
145
+ # non-filing characters)
146
+
147
+ def self.filing_version(field, str, spechash)
148
+ # Control fields don't have non-filing characters
149
+ return str if field.kind_of? MARC::ControlField
150
+
151
+ # 2nd indicator must be > 0
152
+ ind2 = field.indicator2.to_i
153
+ return str unless ind2 > 0
154
+
155
+ # The spechash must either (a) have no subfields specified, or
156
+ # (b) include the first subfield in the record
157
+
158
+ subs = spechash[:subfields]
159
+ return str unless subs && subs.include?(field.subfields[0].code)
160
+
161
+ # OK. If we got this far we actually need to strip characters off the string
162
+
163
+ return str[ind2..-1]
164
+ end
165
+
166
+
167
+
108
168
 
109
169
  # maps languages, by default out of 008[35-37] and 041a and 041d
110
170
  #
@@ -312,7 +372,7 @@ module Traject::Macros
312
372
  # or nil.
313
373
  #
314
374
  # The categories output aren't great, but they're something.
315
- LCC_REGEX = / *[A-Z]{1,3}[ .]*(?:(\d+)(?:\s*?\.\s*?(\d+))?).*/
375
+ LCC_REGEX = /\A *[A-Z]{1,3}[ .]*(?:(\d+)(?:\s*?\.\s*?(\d+))?).*/
316
376
  def marc_lcc_to_broad_category( options = {}, spec="050a:060a:090a:096a")
317
377
  # Trying to match things that look like LCC, and not match things
318
378
  # that don't. Is tricky.
@@ -391,6 +451,7 @@ module Traject::Macros
391
451
  accumulator.concat z_fields
392
452
  end
393
453
  end
454
+ accumulator.uniq!
394
455
  end
395
456
  end
396
457
 
@@ -429,6 +490,7 @@ module Traject::Macros
429
490
  end
430
491
  end
431
492
  end
493
+ accumulator.uniq!
432
494
  end
433
495
  end
434
496
 
@@ -146,11 +146,11 @@ module Traject
146
146
 
147
147
  # if field 007 byte 0 is 'h', that's microform. But many of our microform
148
148
  # don't have that. If leader byte 6 is 'h', that's an obsolete way of saying
149
- # microform. And finally, if GMD is
149
+ # microform. And finally, if GMD is
150
150
  def microform?
151
151
  normalized_gmd.start_with?("[microform]") ||
152
- record.leader['6'] == "h" ||
153
- record.find {|f| (f.tag == "007") && (f.value['0'] == "h")}
152
+ record.leader[6] == "h" ||
153
+ record.find {|f| (f.tag == "007") && (f.value[0] == "h")}
154
154
  end
155
155
 
156
156
  # Marked as manuscript OR archive.
@@ -159,7 +159,7 @@ module Traject
159
159
  leader08 = record.leader.slice(8)
160
160
 
161
161
  # leader 6 t=Manuscript Language Material, d=Manuscript Music,
162
- # f=Manuscript Cartograhpic
162
+ # f=Manuscript Cartographic
163
163
  #
164
164
  # leader 06 = 'b' is obsolete, but if it exists it means archival countrl
165
165
  #
@@ -120,7 +120,7 @@ module Traject
120
120
  # a String specification is a string (or array of strings) of form:
121
121
  # {tag}{|indicators|}{subfields} separated by colons
122
122
  # tag is three chars (usually but not neccesarily numeric),
123
- # indicators are optional two chars prefixed by hyphen,
123
+ # indicators are optional two chars enclosed in pipe ('|') characters,
124
124
  # subfields are optional list of chars (alphanumeric)
125
125
  #
126
126
  # indicator spec must be two chars, but one can be * meaning "don't care".
@@ -1,4 +1,5 @@
1
1
  require 'marc'
2
+ require 'traject/ndj_reader'
2
3
 
3
4
  # A Reader class that can be used with Traject::Indexer.reader, to read
4
5
  # MARC records.
@@ -16,7 +17,7 @@ require 'marc'
16
17
  # ["marc_source.type"] serialization type. default 'binary'
17
18
  # * "binary". Actual marc.
18
19
  # * "xml", MarcXML
19
- # * "json". (NOT YET IMPLEMENTED) The "marc-in-json" format, encoded as newline-separated
20
+ # * "json" The "marc-in-json" format, encoded as newline-separated
20
21
  # json. A simplistic newline-separated json, with no comments
21
22
  # allowed, and no unescpaed internal newlines allowed in the json
22
23
  # objects -- we just read line by line, and assume each line is a
@@ -50,6 +51,8 @@ class Traject::MarcReader
50
51
  when "xml"
51
52
  parser = settings["marc_reader.xml_parser"] || @@best_xml_parser
52
53
  MARC::XMLReader.new(self.input_stream, :parser=> parser)
54
+ when 'json'
55
+ Traject::NDJReader.new(self.input_stream, settings)
53
56
  else
54
57
  MARC::Reader.new(self.input_stream)
55
58
  end
@@ -0,0 +1,40 @@
1
+ require 'marc'
2
+ require 'json'
3
+ require 'zlib'
4
+
5
+
6
+ # Read newline-delimited JSON file, where each line is a marc-in-json string.
7
+ # UTF-8 encoding is required.
8
+
9
+ class Traject::NDJReader
10
+ include Enumerable
11
+
12
+ def initialize(input_stream, settings)
13
+ @settings = settings
14
+ @input_stream = input_stream
15
+ if settings['command_line.filename'] =~ /\.gz$/
16
+ @input_stream = Zlib::GzipReader.new(@input_stream, :external_encoding => "UTF-8")
17
+ end
18
+ end
19
+
20
+ def logger
21
+ @logger ||= (settings[:logger] || Yell.new(STDERR, :level => "gt.fatal")) # null logger)
22
+ end
23
+
24
+ def each
25
+ unless block_given?
26
+ return enum_for(:each)
27
+ end
28
+
29
+ @input_stream.each_with_index do |json, i|
30
+ begin
31
+ yield MARC::Record.new_from_hash(JSON.parse(json))
32
+ rescue Exception => e
33
+ self.logger.error("Problem with JSON record on line #{i}: #{e.message}")
34
+ end
35
+ end
36
+ end
37
+
38
+ end
39
+
40
+
@@ -194,7 +194,7 @@ module Traject
194
194
 
195
195
  class NotFound < Exception
196
196
  def initialize(path)
197
- super("No translation map definition file found at '#{path}[.rb|.yaml]' in load path: #{$LOAD_PATH}")
197
+ super("No translation map definition file found at 'translation_maps/#{path}.[rb|yaml|properties]' in load path: #{$LOAD_PATH}")
198
198
  end
199
199
  end
200
200
 
@@ -233,4 +233,4 @@ module Traject
233
233
  end
234
234
 
235
235
  end
236
- end
236
+ end
@@ -1,3 +1,3 @@
1
1
  module Traject
2
- VERSION = "0.14.1"
2
+ VERSION = "0.15.0"
3
3
  end
@@ -50,7 +50,7 @@ describe "Traject::Macros::Marc21Semantics" do
50
50
  it "collates author and title" do
51
51
  output = @indexer.map_record(@record)
52
52
 
53
- assert_equal ["Herman, Edward S.Manufacturing consent : the political economy of the mass media / Edward S. Herman and Noam Chomsky ; with a new introduction by the authors."], output["author_sort"]
53
+ assert_equal ["Herman, Edward S. Manufacturing consent the political economy of the mass media Edward S. Herman and Noam Chomsky ; with a new introduction by the authors"], output["author_sort"]
54
54
  end
55
55
  it "respects non-filing" do
56
56
  @record = MARC::Reader.new(support_file_path "the_business_ren.marc").to_a.first
@@ -180,6 +180,13 @@ describe "Traject::Macros::Marc21Semantics" do
180
180
 
181
181
  assert_nil output["discipline_no_default"]
182
182
  end
183
+
184
+ describe "LCC_REGEX" do
185
+ it "rejects a non-LCC" do
186
+ refute_match Traject::Macros::Marc21Semantics::LCC_REGEX, "Film no. A .N285"
187
+ end
188
+ end
189
+
183
190
  end
184
191
 
185
192
  describe "marc_geo_facet" do
@@ -213,5 +220,48 @@ describe "Traject::Macros::Marc21Semantics" do
213
220
  end
214
221
 
215
222
  end
223
+
224
+ describe "extract_marc_filing_version" do
225
+ before do
226
+ @record = MARC::Reader.new(support_file_path "the_business_ren.marc").to_a.first
227
+ end
228
+
229
+ it "works as expected" do
230
+ @indexer.instance_eval do
231
+ to_field 'title_phrase', extract_marc_filing_version('245ab')
232
+ end
233
+ output = @indexer.map_record(@record)
234
+ assert_equal ['Business renaissance quarterly'], output['title_phrase']
235
+ end
236
+
237
+ it "works with :include_original" do
238
+ @indexer.instance_eval do
239
+ to_field 'title_phrase', extract_marc_filing_version('245ab', :include_original=>true)
240
+ end
241
+ output = @indexer.map_record(@record)
242
+ assert_equal ['The Business renaissance quarterly', 'Business renaissance quarterly'], output['title_phrase']
243
+ end
244
+
245
+ it "doesn't do anything if you don't include the first subfield" do
246
+ @indexer.instance_eval do
247
+ to_field 'title_phrase', extract_marc_filing_version('245h')
248
+ end
249
+ output = @indexer.map_record(@record)
250
+ assert_equal ['[electronic resource].'], output['title_phrase']
251
+ end
252
+
253
+
254
+ it "dies if you pass it something else" do
255
+ assert_raises(RuntimeError) do
256
+ @indexer.instance_eval do
257
+ to_field 'title_phrase', extract_marc_filing_version('245ab', :include_original=>true, :uniq => true)
258
+ end
259
+ end
260
+ end
261
+
262
+
263
+ end
264
+
265
+
216
266
 
217
267
  end
@@ -57,22 +57,19 @@ describe "Traject::Macros::Marc21" do
57
57
  assert_equal ["DEFAULT VALUE"], output["only_default"]
58
58
  end
59
59
 
60
- it "respects the :deduplicate option (and its alias 'uniq')" do
60
+ it "de-duplicates by default, respects :allow_duplicates" do
61
61
  # Add a second 008
62
62
  f = @record.fields('008').first
63
63
  @record.append(f)
64
64
 
65
65
  @indexer.instance_eval do
66
66
  to_field "lang1", extract_marc('008[35-37]')
67
- to_field "lang2", extract_marc('008[35-37]', :deduplicate=>true)
68
- to_field "lang3", extract_marc('008[35-37]', :uniq=>true)
67
+ to_field "lang2", extract_marc('008[35-37]', :allow_duplicates=>true)
69
68
  end
70
69
 
71
70
  output = @indexer.map_record(@record)
72
- assert_equal ["eng", "eng"], output['lang1']
73
- assert_equal ["eng"], output['lang2']
74
- assert_equal ["eng"], output['lang3']
75
-
71
+ assert_equal ["eng"], output['lang1']
72
+ assert_equal ["eng", "eng"], output['lang2']
76
73
  end
77
74
 
78
75
  it "fails on an extra/misspelled argument to extract_marc" do
@@ -56,6 +56,9 @@ describe "MarcFormatClassifier" do
56
56
  assert ! classifier_for("manufacturing_consent.marc").microform?
57
57
  assert ! classifier_for("online_only.marc").microform?
58
58
  end
59
+ it "catches microform in an 007" do
60
+ assert classifier_for("nature.marc").microform?
61
+ end
59
62
  end
60
63
 
61
64
  describe "conference?" do
@@ -34,7 +34,21 @@ describe "Traject::MarcReader" do
34
34
  assert_equal "Fikr-i Ayāz /", first['245']['a']
35
35
  end
36
36
 
37
-
37
+ it "reads JSON" do
38
+ file = File.new(support_file_path "test_data.utf8.json")
39
+ settings = Traject::Indexer::Settings.new("marc_source.type" => "json")
40
+ reader = Traject::MarcReader.new(file, settings)
41
+ array = reader.to_a
42
+
43
+ assert_equal 30, array.length
44
+
45
+ first = array.first
46
+
47
+ assert_kind_of MARC::Record, first
48
+
49
+ assert first['245']['a'].encoding.name, "UTF-8"
50
+ assert_equal "Fikr-i Ayāz /", first['245']['a']
51
+ end
38
52
 
39
53
 
40
54
 
@@ -0,0 +1 @@
1
+ 04682cas a2200913 450000100070000000500170000700700140002400800410003801000160007902200250009503000110012003200170013103500110014803500140015903500270017303500160020003500220021603700700023804001580030804200130046604900670047905000120054606000120055808200080057009900120057813000290059021000200061922200210063924500120066024600110067226000450068330000430072831000110077136200240078250000600080651000370086651000690090351000550097251000360102751000330106351000340109651000220113051000290115251000490118151000320123051000460126251000330130851000500134151000400139151000430143151000610147451000410153552500400157658003510161665000260196765000260199378700500201978700450206991000250211494601090213994600770224894600430232594600510236894600430241994601060246294601710256894800180273995900390275793700440279693700960284093700770293693701630301393701900317693700450336693700440341193701940345593700530364993700660370241782620081017140900.0hd|afu---buuu880811c18699999enkwrzp 0 a0eng d a 12037118 a0028-0836z0302-2889 aNATUAS a082070bUSPS a417826 aAAD1070EI a(CStRLIN)MDJGAAD1070-S aocm01586310 a(Sirsi) o01586310 bMacmillan Journals Ltd., Brunel Rd., Basingstoke, Hants, RG21 2NS aMnMULScMnMULSdOCoLCdNICdNSDPdInUdMHdDLCdOCoLCdNSDPdOCoLCdDLCdOCoLCdDLCdSERdRCSdSERdNSTdAIPdNSDPdAIPdDLCdOCoLCdNSTdICRLdMdBJdJHA ansdpalc00aJHEaJHSMaJHWA [JOURNAL]aJHWIaJHWK [WILMER] [JOURNAL]aJHAP0 aQ1b.N2 aW1 NA81 a505 aJOURNAL0 aNature (London, England)0 aNatureb(Lond.) 0aNatureb(London)10aNature.00aNature a[London, etc.,bMacmillan Journals ltd.] av.bill. (part col.) ports.c26-28 cm. aWeekly0 av. 1- Nov. 4, 1869- aFounded and for many years edited by Sir J. N. Lockyer.1 aGeneral science indexx0162-19632 aAbstract bulletin of the Institute of Paper Chemistryx0020-30332 aArt and archaeology technical abstractsx0004-29942 aBiological abstractsx0006-31692 aBook review indexx0524-05812 aChemical abstractsx0009-22582 aGeoRefx0197-74822 aIndex medicusx0019-38792 aInternational aerospace abstractsx0020-58422 aMetals abstractsx0026-09242 aPsychological abstractsx0033-2887b1928-2 aReference sourcesx0163-35462 aSelected water resources abstractsx0037-136X2 aWorld aluminum abstractsx0002-66970 aBibliography of agriculturex0006-15300 aMeteorological and geoastrophysical abstractsx0026-11300 aNuclear science abstractsx0029-5612 aSupplements accompany many numbers. aVol. 229-246, Jan. 1971-Dec. 1973, issued in three parts. The two new parts, Nature: new biology, and Nature: physical sciences, continued the volume numbering of Nature in addition to carrying their own issue numbering. With vol. 246, Dec. 1973, Nature: new biology, and Nature: physical sciences, ceased publication and were absorbed by Nature. 0aSciencevPeriodicals. 2aSciencevPeriodicals.1 tNature. Physical sciencec(London)x0300-87461 tNature. New biologyc(London)x0369-4887 a417826bHorizon bib# aEffective 2010: cancel Mont. Cty. Ctr. subs.; no electronic order; may be other location subs; MR 9/2/09 aEffective 2010:cancel print, online comes with nature package; MR 9/2/09 aCANCEL FILM w/'09 per JCB; MR 10/17/08 aDo not add "Nature Podcast" per EK; BB 3/5/08 a1 vol=2 mos; Bind 1 month; MR 10/29/07 aITO FOR v.427:nos.6969-6973(2004:Jan.1-29): rec'd 6969-6971; 6972-6973 are not available. JCM 1/17/06 aDO NOT ADD REPRINTS FROM "NATURE" AS SUPPL. TO "NATURE....." JOURNALS. NATURE JOBS AND NATURE NET GUIDE GET STICKER, BUT DO NOT CHECK IN, AND DO NOT BIND; JCM 2/28/01 aJOURNAL TITLE aN07600000d8601g0e4v103-y1919- 81875218cc. 1falaq0mwwilmerlwwilmjn 81866547cc. 2falaq0mwwelchlwwjns1nSEE copy 1 record for complete set of printed items. 891865aQ1.N28cc. 1falaq0memsellemainncnPrint subscription canceled 81918520aQ1.N28cc. 1flcq0melscleoffsncnDigital copies of most articles and selections are available through the Libraries Service Center at lsc@jhu.edu. 81866545cc. 1falaq0mwwelchlwwjns1nVOL. 289 1981 VOL. 296 1982 located in Binding Office. Please inquire at the Reference Desk. Print subscription canceled 2005. Online access only. 81885174cc. 1SUPfalaq0mwwelchlwwjns1 81875219cc. 1falaq0mwwilmerlwwilje3 891866aFilm no. A .N285cc. 1falaq0melscleofavnDigital copies of most articles and selections are available through the Libraries Service Center at lsc@jhu.edu. Subscription cancelled. 81970071a505 N286cc. 1fdeweyq0mepbdylesgpby 863320falaq0mssaislspernLibrary retains latest two years.
@@ -0,0 +1,30 @@
1
+ {"leader":"00799cam a2200241 a 4500","fields":[{"001":" 00282214 "},{"003":"DLC"},{"005":"20090120022042.0"},{"008":"000417s1998 pk 000 0 urdo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 00282214 "}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"P-U-00282214; 05; 06"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"041":{"ind1":"1","ind2":" ","subfields":[{"a":"urd"},{"h":"snd"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"PK2788.9.A9"},{"b":"F55 1998"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Ayaz, Shaikh,"},{"d":"1923-1997."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Fikr-i Ayāz /"},{"c":"murattibīn, Āṣif Farruk̲h̲ī, Shāh Muḥammad Pīrzādah."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Karācī :"},{"b":"Dāniyāl,"},{"c":"[1998]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"375 p. ;"},{"c":"23 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Urdu."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Selected poems and articles from the works of renowned Sindhi poet; chiefly translated from Sindhi."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Farruk̲h̲ī, Āṣif,"},{"d":"1959-"}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Pīrzādah, Shāh Muḥammad."}]}}]}
2
+ {"leader":"00778cam a22002417a 4500","fields":[{"001":" 00282371 "},{"003":"DLC"},{"005":"20090120021204.0"},{"008":"000509s1986 pk 000 0 urdo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 00282371 "}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"P-U-00282371; 08"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"041":{"ind1":"1","ind2":" ","subfields":[{"a":"urd"},{"h":"snd"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"MLCME 2002/02660 (D)"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Ayaz, Shaikh,"},{"d":"1923-1997."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Sāhivāl jail kī ḍāʼirī /"},{"c":"Shaik̲h̲ Ayāz; tarjumah, Kiran Singh."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Karācī :"},{"b":"Maktabah-yi Dāniyāl,"},{"c":"1986."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"232 p. ;"},{"c":"23 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Urdu."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Translated from Sindhi."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Author's memoirs during his imprisonment in Sahiwal District jail during late 1960s."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references."}]}}]}
3
+ {"leader":"01988cam a2200421 a 4500","fields":[{"001":" 00313831 "},{"003":"DLC"},{"005":"20090121100001.0"},{"008":"010611s2000 ir b 001 0dper d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 00313831 "}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9645625963"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLN01-B3014"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"MH"},{"c":"MH"},{"d":"CStRLIN"},{"d":"DLC-R"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"},{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-ir---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DS318.84.N87"},{"b":"N87 2000"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(3"},{"c":"(4"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Nūrī, ʻAbd Allāh,"},{"d":"1949-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Naqdī barā-yi tamām-i fuṣūl :"},{"b":"guft va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻAbd Allāh Nūrī dar Majlis-i panjum."}]}},{"246":{"ind1":"1","ind2":"5","subfields":[{"a":"Critique for all seasons :"},{"b":"Akbar Ganji's conversation with Abdullah Nuri"}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Chāp-i 1."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Tihrān :"},{"b":"Ṭarḥ-i Naw,"},{"c":"2000."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"245 p. ;"},{"c":"22 cm."}]}},{"440":{"ind1":" ","ind2":"0","subfields":[{"6":"880-05"},{"a":"Farhang-i ʻumūmī"}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references and index."}]}},{"600":{"ind1":"1","ind2":"0","subfields":[{"6":"880-06"},{"a":"Nūrī, ʻAbd Allāh,"},{"d":"1949-"},{"v":"Interviews."}]}},{"610":{"ind1":"1","ind2":"0","subfields":[{"a":"Iran."},{"b":"Vizārat-i Kishvar"},{"x":"Officials and employees"},{"v":"Interviews."}]}},{"600":{"ind1":"1","ind2":"0","subfields":[{"6":"880-07"},{"a":"Nūrī, ʻAbd Allāh,"},{"d":"1949-"},{"v":"Trials, litigation, etc."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Iran"},{"x":"Politics and government"},{"y":"1997-"}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"6":"880-08"},{"a":"Ganjī, Akbar."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(3/r‏"},{"a":"‏نورى، عبد الله."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/(3/r‏"},{"a":"‏نقدى براى تمام فصول :‏"},{"b":"‏گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح عبد الله نورى در مجلس پنجم."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/(4/r‏"},{"a":"‏چاپ 1."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/(3/r‏"},{"a":"‏تهران :‏"},{"b":"‏طرح نو،‏"},{"c":"‏‪2000‬."}]}},{"880":{"ind1":" ","ind2":"0","subfields":[{"6":"440-05/(3/r‏"},{"a":"‏فرهنگ عمومى"}]}},{"880":{"ind1":"1","ind2":"4","subfields":[{"6":"600-06/(3/r‏"},{"a":"‏نورى، عبد الله."}]}},{"880":{"ind1":"1","ind2":"4","subfields":[{"6":"600-07/(3/r‏"},{"a":"‏نورى، عبد الله."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"700-08/(3/r‏"},{"a":"‏گنجى، اكبر."}]}}]}
4
+ {"leader":"00956dam a22002655a 4500","fields":[{"001":" 00314247 "},{"003":"DLC"},{"005":"20090126095911.0"},{"008":"000214s1997 ja 000 0 jpn "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 00314247 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLP00-B1931"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"},{"d":"DLC"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Yoshida, Hajime,"},{"d":"1934-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Kubo Sakae \"Kazanbaichi\" o yomu /"},{"c":"Yoshida Hajime cho."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Tōkyō :"},{"b":"Hōsei Daigaku Shuppankyoku,"},{"c":"1997."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"480 p. ;"},{"c":"19 cm."}]}},{"600":{"ind1":"1","ind2":"0","subfields":[{"6":"880-04"},{"a":"Kubo, Sakae,"},{"d":"1901-1958."},{"t":"Kazanbaichi."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Japanese drama"},{"y":"20th century."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Political plays, Japanese."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Theater"},{"z":"Japan"},{"x":"History."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/$1"},{"a":"吉田一,"},{"d":"1934-"}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/$1"},{"a":"久保栄 「火山灰地」 を読む /"},{"c":"吉田一著."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-03/$1"},{"a":"東京 :"},{"b":"法政大学出版局,"},{"c":"1997."}]}},{"880":{"ind1":"1","ind2":"4","subfields":[{"6":"600-04/$1"},{"a":"久保栄,"},{"d":"1901-1958."},{"t":"火山灰地."}]}}]}
5
+ {"leader":"00987cam a22002531 4500","fields":[{"001":" 43037890 "},{"003":"DLC"},{"005":"20090126171234.0"},{"008":"810731m19419999ru b b 000 0 ruso "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 43037890 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)28783996"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"ICU"},{"d":"OCoLC"},{"d":"DLC"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"e-ur-kz"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DK861.K3"},{"b":"V5"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Vi︠a︡tkin, M. P."},{"q":"(Mikhail Porfirʹevich),"},{"d":"1895-1967."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Ocherki po istorii Kazakhskoĭ SSR."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"[Moskva],"},{"b":"Ogiz, Gospolitizdat,"},{"c":"1941-"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"v."},{"b":"fold. map."},{"c":"20 cm."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"At head of title: Akademii︠a︡ nauk SSSR. Institut istorii i Kazakhstanskiĭ filial. M. Vi︠a︡tkin."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"\"Obzor literatury i istochnikov\": v. 1, p. 5-[19]. \"Bibliograficheskiĭ ukazatelʹ\": v. 1, p. 356-364."}]}},{"505":{"ind1":"2","ind2":" ","subfields":[{"a":"t. 1. S drevneĭshikh vremen po 1870 g."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Kazakhstan"},{"x":"History."}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Institut istorii (Akademii︠a︡ nauk SSSR)"}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Akademii︠a︡ nauk Kazakhskoĭ SSR, Alma Ata."}]}}]}
6
+ {"leader":"00955cam a22002411 4500","fields":[{"001":" 53029833 "},{"003":"DLC"},{"005":"20090126171326.0"},{"008":"860911s1952 ru f000 0 rus "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 53029833 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)14207259"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"CU"},{"d":"CU"},{"d":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"premarc"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-kn---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"KPC13"},{"b":"1952"}]}},{"110":{"ind1":"1","ind2":" ","subfields":[{"a":"Korea (North)"}]}},{"240":{"ind1":"1","ind2":"0","subfields":[{"a":"Laws, etc. (Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ Respubliki)"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ Respubliki."},{"c":"Perevod s koreĭskogo I︠U︡.N. Mazura i Khan Dyk Pona. Pod red. i s vstup. statʹeĭ G. Tavrova."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Moskva,"},{"b":"Izd-vo inostrannoĭ lit-ry,"},{"c":"1952."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"396 p."},{"c":"21 cm."}]}},{"490":{"ind1":"0","ind2":" ","subfields":[{"a":"Zakonodatelʹstvo stran narodnoĭ demokratii"}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Mazur, I︠U︡. N."}]}},{"710":{"ind1":"1","ind2":" ","subfields":[{"a":"Korea (North)"},{"t":"Constitution."}]}}]}
7
+ {"leader":"01062cam a2200301 a 4500","fields":[{"001":" 77826928 "},{"003":"DLC"},{"005":"20090122103906.0"},{"008":"070816s1976 ko 000 0ckor "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 77826928 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLP07-B11425"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"*BZV*"},{"d":"MH-HY"},{"d":"OCoLC"},{"d":"CU"},{"d":"CStRLIN"},{"d":"DLC-R"},{"d":"DLC"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-kr---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DS912.38"},{"b":".K982 1976"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"130":{"ind1":"0","ind2":" ","subfields":[{"6":"880-01"},{"a":"Koryŏsa."},{"p":"Yŏlchŏn."},{"k":"Selections."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Koryŏ inmul yŏlchŏn /"},{"c":"Yi Min-su pʻyŏnyŏk."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Sŏul :"},{"b":"Sŏmundang,"},{"c":"1976."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"255 p. ;"},{"c":"19 cm."}]}},{"490":{"ind1":"0","ind2":" ","subfields":[{"6":"880-04"},{"a":"Sŏmun munʼgo ;"},{"v":"237"}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Korea"},{"x":"History"},{"y":"Koryŏ period, 935-1392"},{"v":"Biography."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Korea"},{"v":"Biography."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"6":"880-05"},{"a":"Yi, Min-su,"},{"d":"1916-"}]}},{"880":{"ind1":"0","ind2":" ","subfields":[{"6":"130-01/$1"},{"a":"高麗史."},{"p":"列傅."},{"k":"Selections."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/$1"},{"a":"高麗 人物 列傅 /"},{"c":"李 民樹 編譯."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-03/$1"},{"a":"서울 :"},{"b":"瑞文堂,"},{"c":"1976."}]}},{"880":{"ind1":"0","ind2":" ","subfields":[{"6":"490-04/$1"},{"a":"瑞文 文庫 ;"},{"v":"237"}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"700-05/$1"},{"a":"李 民樹,"},{"d":"1916-"}]}}]}
8
+ {"leader":"00813cam a2200217 i 4500","fields":[{"001":" 78908283 "},{"003":"DLC"},{"005":"20090121104206.0"},{"008":"790619s1976 ii 000 0 sano "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 78908283 "}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"PK3799.P29"},{"b":"Y3"}]}},{"100":{"ind1":"2","ind2":" ","subfields":[{"a":"Parikshit Sharma, Ogeti,"},{"d":"1930-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Yaśodharā-mahākāvyam /"},{"c":"Ogeṭi Parīkṣitśarmā."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Puṇyapattanam :"},{"b":"Śāradā-Gaurava-Grantha-Mālā ;"},{"a":"Haidrābāda :"},{"b":"prāptisthalam O. Acyutarāmaśāstrī,"},{"c":"1976."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"24, 128, 2 p. ;"},{"c":"22 cm."}]}},{"490":{"ind1":"0","ind2":" ","subfields":[{"a":"Śāradā-gaurava-grantha-mālā ; 37"}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"In Sanskrit; introductory matter in English or Sanskrit."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"A poem."}]}},{"600":{"ind1":"0","ind2":"0","subfields":[{"a":"Gautama Buddha"},{"v":"Poetry."}]}},{"600":{"ind1":"0","ind2":"0","subfields":[{"a":"Yaśodharā"},{"c":"(Wife of Gautama Buddha)"},{"v":"Poetry."}]}}]}
9
+ {"leader":"00729cam a2200229 i 4500","fields":[{"001":" 79930185 "},{"003":"DLC"},{"005":"20090123080110.0"},{"008":"791203r19781950pk 000 0 urdo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 79930185 "}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"c":"Rs10.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-pk---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"HQ1745.5"},{"b":".I83 1978"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Iṣlāḥī, Amīn Aḥsan,"},{"d":"1904-1997."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Pākistānī ʻaurat dorāhe par /"},{"c":"tālīf Amīn Aḥsan Iṣlāḥī."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Lāhaur :"},{"b":"Maktabah-yi Markazī Anjuman-i K̲h̲uddāmulqurʼān,"},{"c":"1978."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"8, 174 p. ;"},{"c":"22 cm."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"In Urdu."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"First published in 1950."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Women"},{"z":"Pakistan."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Women"},{"z":"Pakistan"},{"x":"Social conditions."}]}}]}
10
+ {"leader":"01012cam a22002657a 4500","fields":[{"001":" 85910001 "},{"003":"DLC"},{"005":"20090121023106.0"},{"007":"heuamb---baca"},{"007":"heubmb---baaa"},{"008":"860321r19851946dcu bb s001 0 sano "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 85910001 "}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"LC San A 616"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"Microfiche 90/61328 (P)"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Nārāyaṇapaṇḍita,"},{"d":"17th cent."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Āśleṣāśataka of Nārāyaṇa Paṇḍita"},{"h":"[microform]."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Trivandrum :"},{"b":"University MSS. Library, University of Travancore,"},{"c":"1946."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"xii, 24 p. ;"},{"c":"24 cm."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Poem."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"In Sanskrit; introd. in English."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"\"Reprint from the Journal of the Travancore University Oriental Manuscripts Library, no. 7.\""}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references and index."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Master microform held by: DLC."}]}},{"533":{"ind1":" ","ind2":" ","subfields":[{"a":"Microfiche."},{"b":"Washington, D.C. :"},{"c":"Library of Congress Photoduplication Service,"},{"d":"1985."},{"e":"1 microfiche ; 11 x 15 cm."}]}}]}
11
+ {"leader":"01258cam a2200301 a 4500","fields":[{"001":" 86207417 "},{"003":"DLC"},{"005":"20090123161900.0"},{"008":"930810s1984 is a 000 0 heb "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 86207417 "}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9650101373"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLH93-B1897"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"}]}},{"041":{"ind1":"1","ind2":" ","subfields":[{"a":"heb"},{"h":"eng"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"G535"},{"b":".F54 1984"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(2"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Finkel, Chaim Jacob."}]}},{"240":{"ind1":"1","ind2":"0","subfields":[{"a":"Jewish pirates."},{"l":"Hebrew"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Shodede-yam Yehudiyim :"},{"b":"sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot /"},{"c":"Ḥayim Yaʻaḳov Finḳel ; me-Anglit, Ofirah Rahaṭ."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Yerushalayim :"},{"b":"Devir,"},{"c":"c1984."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"283 p. :"},{"b":"ill. ;"},{"c":"22 cm."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Title on t.p. verso: Jewish pirates."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Jewish pirates"},{"v":"Anecdotes."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Jewish criminals"},{"v":"Anecdotes."}]}},{"740":{"ind1":"0","ind2":" ","subfields":[{"a":"Jewish pirates."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(2/r‏"},{"a":"‏פינקל, חיים יעקב."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/(2/r‏"},{"a":"‏שודדי־ים יהודיים :‏"},{"b":"‏ספורים מפליאים המבוססים על עובדות היסטוריות /‏"},{"c":"‏חיים יעקב פינקל ; מאנגלית, אופירה רהט."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-03/(2/r‏"},{"a":"‏ירושלים :‏"},{"b":"‏דביר,‏"},{"c":"‏‪c1984‬."}]}}]}
12
+ {"leader":"01657cam a2200337 a 4500","fields":[{"001":" 87931798 "},{"003":"DLC"},{"005":"20090121115059.0"},{"008":"060428m19869999ir ah b 000 0 per d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 87931798 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLN06-B3656"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"NjP"},{"c":"NjP"},{"d":"UkLSOA"},{"d":"DLC-R"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a------"},{"a":"f------"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BP44"},{"b":".M88 1986"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(3"},{"c":"(4"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Muvaḥḥid Abṭaḥī, Ḥujjat."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh /"},{"c":"bih qalam-i Ḥujjat Muvaḥḥid Abṭaḥī."}]}},{"246":{"ind1":"3","ind2":" ","subfields":[{"6":"880-03"},{"a":"Āshnāyī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh"}]}},{"246":{"ind1":"3","ind2":"0","subfields":[{"6":"880-04"},{"a":"Ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah"}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-05"},{"a":"Iṣfahān :"},{"b":"Ḥawzah-i ʻIlmīyah,"},{"c":"1365- [1986- ]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"v. <1> :"},{"b":"ill. (some col.), facsims. ;"},{"c":"25 cm."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Bibliography: v. 1, p.451-455."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Religious institutions"},{"z":"Islamic countries."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Shiites"},{"x":"Education"},{"z":"Islamic countries."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Islamic universities and colleges."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(3/r‏"},{"a":"‏موحد ابطحى، خجة."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/(3/r‏"},{"a":"‏اشنائى با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏"},{"c":"‏بقلم حجة موحد ابطحى."}]}},{"880":{"ind1":"3","ind2":" ","subfields":[{"6":"246-03/(3/r‏"},{"a":"‏اشنايى با حوزه‌هاى علميۀ شيعه در طول تاريخ"}]}},{"880":{"ind1":"3","ind2":"0","subfields":[{"6":"246-04/(3/r‏"},{"a":"‏حوزه هاى علميۀ شيعه"}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-05/(3/r‏"},{"a":"‏اصفهان :‏"},{"b":"‏حوزۀ علميه،‏"},{"c":"‏‪1365- [1986- ]‬."}]}}]}
13
+ {"leader":"00610cam a22001817a 4500","fields":[{"001":" 90142413 "},{"003":"DLC"},{"005":"20090126150928.0"},{"008":"900409s1975 gs 000 0 geo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 90142413 "}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"MLCSN 96/3906 (H)"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Lomtʻatʻiże, Čola,"},{"d":"1879-1915."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Mrecvelobis mušakis cʻxovrebis cesi :"},{"b":"tʻeoriul-metʻoduri narkvevi /"},{"c":"Čola Lomtʻatʻiże."}]}},{"246":{"ind1":"1","ind2":" ","subfields":[{"i":"Title in colophon:"},{"a":"Obraz zhizni rabotnika promyshlennosti"}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Tʻbilisi :"},{"b":"Mecʻniereba,"},{"c":"1975."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"65 p. ;"},{"c":"22 cm."}]}},{"653":{"ind1":" ","ind2":" ","subfields":[{"a":"Industrial workers;"},{"a":"life style"}]}}]}
14
+ {"leader":"01106cam a2200325 a 4500","fields":[{"001":" 92117465 "},{"003":"DLC"},{"005":"20090126171556.0"},{"008":"920805s1990 ko l 000 0 kor "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 92117465 "}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"c":"W300000 (set)"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLP92-B14190"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-kn---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"KPC13"},{"b":".K67 1990"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"110":{"ind1":"1","ind2":" ","subfields":[{"a":"Korea (North)"}]}},{"240":{"ind1":"1","ind2":"0","subfields":[{"a":"Laws, etc."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-01"},{"a":"Pukhan pŏmnyŏngjip /"},{"c":"chʻaegim pʻyŏnjip Chŏng Kyŏng-mo, Chʻoe Tal-gon."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-02"},{"a":"Chaepʻan."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Sŏul Tʻŭkpyŏlsi :"},{"b":"Taeryuk Yŏnʼguso,"},{"c":"1990."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"5 v. ;"},{"c":"27 cm."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Law"},{"z":"Korea (North)"}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"6":"880-04"},{"a":"Chŏng, Kyŏng-mo,"},{"d":"1937-"}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"6":"880-05"},{"a":"Chʻoe, Tal-gon."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-01/$1"},{"a":"北韓 法令集 /"},{"c":"責任 編輯 鄭 慶謨, 崔 逹坤."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-02/$1"},{"a":"再版."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-03/$1"},{"a":"서울 持別市 :"},{"b":"大陸 研究所,"},{"c":"1990."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"700-04/$1"},{"a":"鄭 慶謨,"},{"d":"1937-"}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"700-05/$1"},{"a":"崔 逹坤."}]}}]}
15
+ {"leader":"03361cam a2200493 a 4500","fields":[{"001":" 92828023 "},{"003":"DLC"},{"005":"20090122150744.0"},{"008":"921008m19929999is 000 0 heb "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 92828023 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLH92-B2385"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"},{"d":"DLC-R"},{"d":"DLC"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BM520.88.A53"},{"b":"I88 1992b"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(2"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"6":"880-01"},{"a":"Israel Meir,"},{"c":"ha-Kohen,"},{"d":"1838-1933."}]}},{"240":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Mishnah berurah"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-03"},{"a":"Sefer Mishnah berurah :"},{"b":"ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... ṿe-himtsiʼam ... Mosheh Iserlish /"},{"c":"kol eleh ḥibarti [z.o. asafti ṿe-ʻarakhti] Yiśraʼel Meʼir b.R. Aryeh Zeʼev ha-Kohen."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Hotsaʼah ḥadashah, menuḳedet u-mefuseḳet uve-fiʻnuaḥ rashe-tevot uve-hagahah meduḳdeḳet."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-05"},{"a":"[Jerusalem? :"},{"b":"ḥ. mo. l. ],"},{"c":"752-<[768]> [1992-<2007 or 2008>]"},{"e":"(Yerushalayim :"},{"f":"Nidpas ʻa. y. Makhon le-hotsaʼat sefarim ʻA. L.B.)"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"v. <1-5> ;"},{"c":"29 cm."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Title on cover <v. 2-3, 5>: Sefer Mishnah berurah ha-menuḳad."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Vol. 4- has ed. statement: Mahadura meyuḥedet ʻim hagahot ṿe-heʻarot \"Ish matsliaḥ\" la-Sefaradim ṿa-ʻadot ha-Mizraḥ."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Vol. 4- published: Bene Beraḳ : \"Mekhon ha-Rav Matsliaḥ\" she-ʻa. y. Mosdot Yeshivat \"Kise Raḥamim\" Sefaradit."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes text of Shulḥan ʻarukh, Oraḥ ḥayim."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes Beʼer ha-Golah by Mosheh Ravḳash, Baʼer heṭev by Judah ben Simon Ashkenazi, Shaʻare teshuvah by Ḥayim Mordekhai Margaliyot."}]}},{"600":{"ind1":"1","ind2":"0","subfields":[{"a":"Karo, Joseph ben Ephraim,"},{"d":"1488-1575."},{"t":"Oraḥ ḥayim."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Jewish law."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Judaism"},{"x":"Customs and practices."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"6":"880-06"},{"a":"Isserles, Moses ben Israel,"},{"d":"ca. 1525-1572."}]}},{"700":{"ind1":"1","ind2":"2","subfields":[{"6":"880-07"},{"a":"Karo, Joseph ben Ephraim,"},{"d":"1488-1575."},{"t":"Oraḥ ḥayim."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-08"},{"a":"Mishnah berurah."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-09"},{"a":"Sefer Mishnah berurah ha-menuḳad."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-10"},{"a":"Ish matsliaḥ."}]}},{"880":{"ind1":"0","ind2":" ","subfields":[{"6":"100-01/(2/r‏"},{"a":"‏ישראל מאיר,‏"},{"c":"‏הכהן."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"240-02/(2/r‏"},{"a":"‏משנה ברורה"}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-03/(2/r‏"},{"a":"‏ספר משנה ברורה :‏"},{"b":"‏והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף קארו ... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש /‏"},{"c":"‏כל אלה חיברתי [ז״א אספתי וערכתי] ישראל מאיר בר׳ אריה זאב הכהן."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-04/(2/r‏"},{"a":"‏הוצאה חדשה, מנקדת ומפסקת ובפענוח ראשי־תבות ובהגהה מדקדקת."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-05/(2/r‏"},{"a":"‏[Jerusalem? :‏"},{"b":"‏חמו״ל,‏"},{"c":"‏‪752-<[768]> [1992-<2007 or 2008>]‏"},{"e":"‏(ירושלים :‏"},{"f":"‏נדפס ע״י מכון להוצאת ספרים ע.ל.ב.)‬"}]}},{"880":{"ind1":"0","ind2":"4","subfields":[{"6":"630-00/(2/r‏"},{"a":"‏שלחן ערוך.‏"},{"p":"‏ארח חיים."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"700-06/(2/r‏"},{"a":"‏איסרליש, משה."}]}},{"880":{"ind1":"1","ind2":"2","subfields":[{"6":"700-07/(2/r‏"},{"a":"‏קארו, יוסף.‏"},{"t":"‏אורח חיים."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-08/(2/r‏"},{"a":"‏משנה ברורה."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-09/(2/r‏"},{"a":"‏ספר משנה ברורה המנקד."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-10/(2/r"},{"a":"איש מצליח."}]}}]}
16
+ {"leader":"01149cam a2200301 a 4500","fields":[{"001":" 94120425 "},{"003":"DLC"},{"005":"20090123075708.0"},{"008":"940328s1990 ko 000 0 kor d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 94120425 "}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"c":"W3800"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLP94-B5791"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"CLASIA"},{"c":"CLASIA"},{"d":"DLC"},{"d":"CStRLIN"},{"d":"DLC-R"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-ko---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"HQ1765.5"},{"b":".K46 1990"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Kim, Hong-sin,"},{"d":"1947-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Ajikto kŭrŏk chŏrŏk sasimnikka :"},{"b":"kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin setʻae rŭpʻo."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Chʻopʻan."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Sŏul :"},{"b":"Yŏwŏn Chʻulpʻanʼguk,"},{"c":"1990"},{"g":"(1992 printing)"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"289 p. ;"},{"c":"22 cm."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Women"},{"z":"Korea (South)"},{"x":"Social conditions."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Seoul (Korea)"},{"x":"Social conditions."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/$1"},{"a":"김 홍신,"},{"d":"1947-"}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/$1"},{"a":"아직도 그럭 저럭 사십니까 :"},{"b":"강남 여인 과 신 팔불출 : 金 洪信 세태 르포."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/$1"},{"a":"초판."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/$1"},{"a":"서울 :"},{"b":"女苑 出版局,"},{"c":"1990"},{"g":"(1992 printing)"}]}}]}
17
+ {"leader":"01484cam a2200349 a 4500","fields":[{"001":" 96933325 "},{"003":"DLC"},{"005":"20090121112252.0"},{"008":"040115s1994 ir b 001 0 per "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 96933325 "}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLN04-B274"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-ir---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DS274"},{"b":".R327 1994"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(3"},{"c":"(4"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Rajāyī, Farhang,"},{"d":"1952 or 3-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Maʻrakah-ʼi jahānʹbīnīʹhā :"},{"b":"dar khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān /"},{"c":"Farhang Rajāʼī."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Chāp-i 1."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Tihrān :"},{"b":"Iḥyā-yi Kitāb,"},{"c":"1373 [1994 or 1995]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"323 p. ;"},{"c":"22 cm."}]}},{"440":{"ind1":" ","ind2":"0","subfields":[{"6":"880-05"},{"a":"Sipihr-i farhang va jāmiʻah ;"},{"v":"1"}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references (p.287-320) and index."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Iran"},{"x":"Politics and government."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Political science"},{"z":"Iran."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Iranians"},{"x":"Ethnic identity."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Iran"},{"x":"Civilization."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(4/r‏"},{"a":"‏رجايى، فرهنگ ."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/(3/r‏"},{"a":"‏معركۀ جهان‌بينىها :‏"},{"b":"‏در خردورزى سياسى و هويت ما ايرانيان /‏"},{"c":"‏فرهنگ رجائى."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/(4/r‏"},{"a":"‏چاپ 1."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/(3/r‏"},{"a":"‏تهران :‏"},{"b":"‏احياء كتاب،‏"},{"c":"‏‪1373 [1994 or 1995]‬."}]}},{"880":{"ind1":" ","ind2":"0","subfields":[{"6":"440-05/(3/r‏"},{"a":"‏سپهر فرهنگ و جامعه ؛‏"},{"v":"‏1"}]}}]}
18
+ {"leader":"01588cam a2200313 a 4500","fields":[{"001":" 2001417245"},{"003":"DLC"},{"005":"20090121030347.0"},{"008":"011001m20009999ii 001 0 sano "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2001417245"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-San-2001-417245; 11"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs200.00 (v. 1)"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"041":{"ind1":"0","ind2":" ","subfields":[{"a":"sanengkan"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"PK3798.N313"},{"b":"S87 2000"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Nārāyaṇa Paṇḍitācārya,"},{"d":"13th cent."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Sumadhvavijayaḥ /"},{"c":"Nārāyaṇapaṇḍitācāryaviracitaḥ ; Nārāyaṇapaṇḍitācāryaviracitabhāvaprakāśikā, Viśvapatitīrthaviracitapadārthadīpikodbodhikā, Chalārīśeṣācāryaviracitamandopakāriṇī iti vyākhyānatrayasametaḥ ; edited by A.B. Shyamachar and S.R. Pandurangi."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Bangalore :"},{"b":"Dvaita Vedanta Studies and Research Foundation,"},{"c":"2000-"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"v. <1 > ;"},{"c":"25 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Sanskrit; prefatory matter in English and Kannada."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Verse work on Madhva, 13th cent. Vaishnava religious leader and exponent of dualistic philosophy; includes autocommentary and two classical commentaries."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes indexes."}]}},{"600":{"ind1":"0","ind2":"0","subfields":[{"a":"Madhva,"},{"d":"13th cent."},{"v":"Poetry."}]}},{"700":{"ind1":"0","ind2":"2","subfields":[{"a":"Nārāyaṇa Paṇḍitācārya,"},{"d":"17th cent."},{"t":"Bhāvaprakāśikā."},{"f":"2000."}]}},{"700":{"ind1":"0","ind2":"2","subfields":[{"a":"Viśvapatitīrtha,"},{"d":"16th cent."},{"t":"Padārthadīpikodbodhikā."},{"f":"2000."}]}},{"700":{"ind1":"0","ind2":"2","subfields":[{"a":"Chalāriśeṣācārya."},{"t":"Mandopakāriṇī."},{"f":"2000."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Shyamachar, A. B."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Pandurangi, S. R."}]}}]}
19
+ {"leader":"01197cam a22003014a 4500","fields":[{"001":" 2003546302"},{"003":"DLC"},{"005":"20090123173626.0"},{"008":"030922s2003 mu 000 0 ara "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2003546302"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLN03-B4961"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"},{"d":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"U21.2"},{"b":".W85 2003"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(3"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Wuld Mawlāy al-Zayn, Sayyid Muḥammad wuld Sayyid."}]}},{"245":{"ind1":"1","ind2":"3","subfields":[{"6":"880-02"},{"a":"al-Ḥarb fī al-alfīyah al-thālithah /"},{"c":"bi-qalam Sayyid Muḥammad wuld Sayyid wuld Mawlāy al-Zayn."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Nuwākshūṭ :"},{"b":"[s.n.],"},{"c":"2003."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"128 p. ;"},{"c":"20 cm."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"War"},{"x":"History"},{"y":"21st century."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Military art and science"},{"x":"History"},{"y":"21st century."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"War"},{"x":"Forecasting."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Military art and science"},{"x":"Forecasting."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Warfare, Conventional."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Military weapons."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(3/r"},{"a":"ولد مولاي الزين، سيد محمد ولد سيد."}]}},{"880":{"ind1":"1","ind2":"2","subfields":[{"6":"245-02/(3/r"},{"a":"الحرب في الألفية الثالثة /"},{"c":"بقلم سيد محمد ولد سيد ولد مولاي الزين."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-03/(3/r"},{"a":"نواكشوط :"},{"b":"[s.n.]،"},{"c":"2003."}]}}]}
20
+ {"leader":"00875cam a22002534a 4500","fields":[{"001":" 2004310986"},{"003":"DLC"},{"005":"20090123105515.0"},{"008":"040812s2004 cc a 000 0 tibo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2004310986"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"Ch-Tib-2004-310986; 16"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs154.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-cc-ti"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DS797.82.B663"},{"b":"B75 2004"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Bstan-ʼdzin-mkhas-grub,"},{"d":"1967-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so /"},{"c":"Bstan-ʼdzin-mkhas-grub kyis brtsams."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"[Lha-sa :"},{"b":"s.n.,"},{"c":"2004]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"149 p. :"},{"b":"ill. ;"},{"c":"21 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Tibetan."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Historical account of Bon-brgya in Tibet during 7th-9th cent."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Bon-brgya (China)"},{"x":"History."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Bon-brgya (China)"},{"x":"Kings and rulers."}]}}]}
21
+ {"leader":"01127nam a2200277 a 4500","fields":[{"001":" 2005461726"},{"003":"DLC"},{"005":"20090126155550.0"},{"008":"070712s2006 ua 000 0 ara d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2005461726"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLN07-B4171"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"EMU"},{"c":"EMU"},{"d":"CUY"},{"d":"DLC-R"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"},{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BP161.3"},{"b":".A27 2006"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(3"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Thuqūb fī ʻaql al-ummah :"},{"b":"min jald al-dhāt ilá ṣidq al-sharḥ."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"al-Ṭabʻah 1."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"al-Maʻādī, al-Qāhirah :"},{"b":"Markaz Yāfā lil-Dirāsāt wa-al-Abḥāth,"},{"c":"2006."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"85 p. ;"},{"c":"24 cm."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Islam"},{"y":"20th century."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Islam"},{"y":"21st century."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/(3/r"},{"a":"أبو الخير، علي عبد الحميد."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/(3/r"},{"a":"ثقوب في عقل الأمة :"},{"b":"من جلد الذات إلى صدق الشرح."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/(3/r"},{"a":"الطبعة 1."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/(3/r"},{"a":"المعادي، القاهرة :"},{"b":"مركز يافا للدراسات والأبحاث،"},{"c":"2006."}]}}]}
22
+ {"leader":"03730cam a22006257a 4500","fields":[{"001":" 2005553155"},{"003":"DLC"},{"005":"20090121104139.0"},{"008":"051007m19659999is | l 000 0 heb "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2005553155"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(CStRLIN)DCLH05-B11400"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC-R"},{"c":"DLC-R"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-is---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"HG8695.2"},{"b":".B57 1962"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"(2"}]}},{"245":{"ind1":"0","ind2":"0","subfields":[{"6":"880-01"},{"a":"[Bituaḥ u-viṭaḥon sotsyali]."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"[Israel ,"},{"c":"1962-<2001>]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"items 1-<13> of <13> ;"},{"c":"22-25 cm."}]}},{"505":{"ind1":"1","ind2":" ","subfields":[{"a":"[1] Megamot be-mesheḳ ha-biṭuaḥ ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat 1965. 1966. 52 leaves ; 25 cm. -- [2] Biṭuaḥ ziḳnah : meʻudkan le-Yuli 2001. 24 p. ; 22 cm. -- [3] Biṭuaḥ sheʼirim : meʻudkan le-Yuli 2001. 2001. 24 p. ; 22 cm. -- [4] Gimlah le-yeled nekheh : meʻudkan le-Yuni 2001. 2001. 16 p. 22 cm. -- [5] Biṭuaḥ imahut : meʻudkan le-Yuli 2002. 24 p. ; 22 cm. -- [6] Biṭuaḥ siʻud : meʻudkan le-Februʼar 2001. 2001. 12 p. ; 22 cm. -- [7] Medaʻ le-ʻoved ʻatsmaʼi : meʻudkan le-Februʼar 2000. 2000. 18 p. ; 22 cm. -- [8] Biṭuaḥ nifgeʻe teʻunot. 1999. 1 folded leaflet ; 22 cm. -- [9] ha-Ḳeren le-nifgeʻe ṭeror -- [10] Teluyim be-nifgeʻe ʻavodah : meʻudkan le-Februʼar 2001. 2001. 24 p. ; 22 cm. -- [11] Sherut miluʼim : meʻudkan le-Yuli 2002. 2002. 16 p. ; 22 cm. -- [12] Ḳitsbah le-sherutim meyuhadim le-nekhim ḳashim : meʻudkan le-Detsember 2002. 2002. 16 p. ; 22 cm. -- [13] Mumḥim benleʼumiyim ʻal medukat ha-biṭaḥon ha-sotsyali / Yitsḥaḳ Ḳanev. 1962. 10 p. ; 24 cm."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Insurance"},{"z":"Israel."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Social security"},{"z":"Israel."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Family allowances"},{"z":"Israel."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Maternity insurance"},{"z":"Israel."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Accident insurance"},{"z":"Israel."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Old age"},{"x":"Economic aspects."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Israel"},{"x":"Social policy."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Israel"},{"x":"Armed Forces"},{"x":"Reserves"},{"x":"Pay, allowances, etc."},{"x":"Law and legislation"}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Social security"},{"x":"Law and legislation"},{"z":"Israel."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-02"},{"a":"Megamot be-mesheḳ ha-biṭuaḥ ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat 1965."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-03"},{"a":"Biṭuaḥ ziḳnah."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-04"},{"a":"Biṭuaḥ sheʼirim."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-05"},{"a":"Gimlah le-yeled nekheh."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-06"},{"a":"Biṭuaḥ imahut."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-07"},{"a":"Biṭuaḥ siʻud."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-08"},{"a":"Medaʻ le-ʻoved ʻatsmaʼi."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-09"},{"a":"Biṭuaḥ nifgeʻe teʻunot."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-10"},{"a":"Ḳeren le-nifgeʻe ṭeror."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-11"},{"a":"Teluyim be-nifgeʻe ʻavodah."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-12"},{"a":"Sherut miluʼim."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-13"},{"a":"Ḳitsbah le-sherutim meyuḥadim le-nekhim ḳashim."}]}},{"740":{"ind1":"0","ind2":"2","subfields":[{"6":"880-14"},{"a":"Mumḥim benleʼumiyim ʻal medukat ha-biṭaḥon ha-sotsyali."}]}},{"880":{"ind1":"0","ind2":"0","subfields":[{"6":"245-01/(2/r"},{"a":"[ביטוח וביטחון סוציאלי]."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-02/(2/r"},{"a":"מגמות במשק הביטוח והפיקוח על עסקי ביטוח בשנת 1965."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-03/(2/r"},{"a":"ביטוח זקנה."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-04/(2/r"},{"a":"ביטוח שאירים."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-05/(2/r"},{"a":"גמלה לילד נכה."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-06/(2/r"},{"a":"ביטוח אמהות."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-07/(2/r"},{"a":"ביטוח סיעוד."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-08/(2/r"},{"a":"מדע לעובד עצמאי."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-09/(2/r"},{"a":"ביטוח נפגעי תעונות."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-10/(2/r"},{"a":"קרן לנפגעי טרור."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-11/(2/r"},{"a":"תלויים בניפגעי תעונה."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-12/(2/r"},{"a":"שירות מילואים."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-13/(2/r"},{"a":"קצבה לשירותים מיוחדים לנכים קשים."}]}},{"880":{"ind1":"0","ind2":"2","subfields":[{"6":"740-14/(2/r"},{"a":"מומחים בינלאומיים על מדוכת הביטחון הסוציאלי."}]}}]}
23
+ {"leader":"01490cam a2200361 a 4500","fields":[{"001":" 2007020969"},{"003":"DLC"},{"005":"20090126093447.0"},{"008":"070522s2008 nyua b 000 0beng "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2007020969"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9780743297790 (alk. paper)"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"0743297792 (alk. paper)"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)ocn137335139"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)137335139"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"},{"d":"BAKER"},{"d":"BTCTA"},{"d":"YDXCP"},{"d":"C#P"},{"d":"DLC"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"n-us-nj"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"E99.D2"},{"b":"H437 2008"}]}},{"082":{"ind1":"0","ind2":"0","subfields":[{"a":"974.004/97345"},{"a":"B"},{"2":"22"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"a":"Hearth, Amy Hill,"},{"d":"1958-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"\"Strong Medicine speaks\" :"},{"b":"a Native American elder has her say : an oral history /"},{"c":"Amy Hill Hearth."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"a":"1st Atria Books hardcover ed."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"New York :"},{"b":"Atria Books,"},{"c":"2008."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"xvii, 267 p. :"},{"b":"ill. ;"},{"c":"23 cm."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references (p. 261-266)."}]}},{"600":{"ind1":"0","ind2":"0","subfields":[{"a":"Strong Medicine,"},{"d":"1922-"}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Delaware women"},{"z":"New Jersey"},{"z":"Bridgeton"},{"v":"Biography."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Indian women shamans"},{"z":"New Jersey"},{"z":"Bridgeton"},{"v":"Biography."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Delaware Indians"},{"z":"New Jersey"},{"z":"Bridgeton"},{"v":"Biography."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Delaware Indians"},{"z":"New Jersey"},{"z":"Bridgeton"},{"x":"History."}]}},{"700":{"ind1":"0","ind2":" ","subfields":[{"a":"Strong Medicine,"},{"d":"1922-"}]}},{"856":{"ind1":"4","ind2":"1","subfields":[{"3":"Table of contents only"},{"u":"http://www.loc.gov/catdir/toc/ecip0719/2007020969.html"}]}},{"856":{"ind1":"4","ind2":"2","subfields":[{"3":"Publisher description"},{"u":"http://www.loc.gov/catdir/enhancements/fy0808/2007020969-d.html"}]}},{"856":{"ind1":"4","ind2":"1","subfields":[{"3":"Sample text"},{"u":"http://www.loc.gov/catdir/enhancements/fy0808/2007020969-s.html"}]}}]}
24
+ {"leader":"01099cam a22002534a 4500","fields":[{"001":" 2008305903"},{"003":"DLC"},{"005":"20090122162012.0"},{"008":"080602s2008 ii a 000 0 tibo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008305903"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-Tib-2008-305903; 01; 05-01"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs400.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BQ7684.4"},{"b":".D564 2008"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Dkon-mchog-rgya-mtsho,"},{"c":"Ra-se,"},{"d":"1968-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Dris lan don gcig ma :"},{"b":"dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so /"},{"c":"Dwags-po Spyan-sṅa-ba Dkon-mchog-rgya-mtshos brtsams."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"a":"Par theṅ 2."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"[ʼPhags-yul Dhe-ra-dhun :"},{"b":"Sroṅ-btsan dpe mdzod khaṅ nas grems spel byas,"},{"c":"2008]"}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"208 p. :"},{"b":"1 col. ill. ;"},{"c":"24 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Tibetan."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"On the Dgoṅs-gcig teaching of Drikung Kagyudpa sect in questions/answers format."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"ʼBri-guṅ-pa (Sect)"},{"x":"Doctrines"},{"v":"Miscellanea."}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Sroṅ-btsan dpe mdzod khaṅ."}]}}]}
25
+ {"leader":"01582cam a2200325 a 4500","fields":[{"001":" 2008308175"},{"003":"DLC"},{"005":"20090123091532.0"},{"008":"080718s2002 ii b 000 0 eng "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008308175"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"8186470336"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-E-2008-308175; 59-13"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs185.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"041":{"ind1":"1","ind2":" ","subfields":[{"a":"eng"},{"a":"tib"},{"h":"tib"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-ii---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BQ5593.P3"},{"b":"N3313 2002"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho,"},{"c":"Dalai Lama V,"},{"d":"1617-1682."}]}},{"240":{"ind1":"1","ind2":"0","subfields":[{"a":"Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs bdud rtsiʼi char rgyun."},{"l":"English & Tibetan"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Pluvial nectar of blessings :"},{"b":"a supplication to the noble Lama Mahaguru Padmasambhava /"},{"c":"by His Holiness Ngag-dbang-blo-bzang-rgya-mtsho, the fifth Dalai Lama ; translated from the Tibetan with commentary by Dennis Cordell."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Dharamsala :"},{"b":"Library of Tibetan Works and Archives,"},{"c":"2002."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"viii, 101 p. ;"},{"c":"22 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"English and Tibetan"},{"b":"(Tibetan also in roman)."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references (p. [97]-101)."}]}},{"600":{"ind1":"0","ind2":"0","subfields":[{"a":"Padma Sambhava,"},{"d":"ca. 717-ca. 762"},{"v":"Prayers and devotions."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Priests, Buddhist"},{"z":"India"},{"v":"Prayers and devotions."}]}},{"700":{"ind1":"1","ind2":" ","subfields":[{"a":"Cordell, Dennis."}]}},{"700":{"ind1":"0","ind2":"2","subfields":[{"a":"Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho,"},{"c":"Dalai Lama V,"},{"d":"1617-1682"},{"t":"Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs bdud rtsiʼi char rgyun."},{"f":"2002"}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Library of Tibetan Works & Archives."}]}}]}
26
+ {"leader":"01221cam a22002534a 4500","fields":[{"001":" 2008308201"},{"003":"DLC"},{"005":"20090122162646.0"},{"008":"080721s2008 ii 000 0 tibo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008308201"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-Tib-2008-308201; 27"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs150.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"BQ4036"},{"b":".B78 2008"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Bstan-ʼdzin-rgya-mtsho,"},{"c":"Dalai Lama XIV,"},{"d":"1935-"}]}},{"245":{"ind1":"0","ind2":"0","subfields":[{"a":"Bod kyi naṅ chos ṅo sprod sñiṅ bsdus :"},{"b":"goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs so."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"a":"Par theṅs 2."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Dharamsala, H.P. :"},{"b":"Sku-bcar Rnam-par-rgyal-ba Phan-bde-legs-bśad-gliṅ Grwa-tshaṅ gi Śes-yon Lhan-tshogs,"},{"c":"2008."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"4, iv, 254 p. ;"},{"c":"23 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Tibetan."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Series of lectures delivered by His Holiness the Dali Lama to younger generation of Tibetan studying in different colleges and universities in India and students from schools in Dharamsala on the introduction of Buddhist teaching."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Buddhism"},{"x":"Essence, genius, nature."}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Rnam-rgyal Grwa-tshaṅ."},{"b":"Śes-yon Lhan-tshogs."}]}}]}
27
+ {"leader":"01111cam a2200289 a 4500","fields":[{"001":" 2008308202"},{"003":"DLC"},{"005":"20090121092141.0"},{"008":"080721s2005 ii b b 000 0 tibo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008308202"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-Tib-2008-308202; 16"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"},{"c":"Rs150.00"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-cc-ti"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"DS785"},{"b":".T475 2005"}]}},{"100":{"ind1":"0","ind2":" ","subfields":[{"a":"Thub-bstan-yar-ʼphel,"},{"c":"Rnam-grwa."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"a":"Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me loṅ źes bya ba bźugs so /"},{"c":"Rnam-grwa Thub-bstan-yar-ʼphel."}]}},{"246":{"ind1":"1","ind2":"8","subfields":[{"a":"Rgyal rabs dris lan brgya pa rab gsal śel gyi me loṅ"}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"a":"1st ed."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Dharamsala, H.P. :"},{"b":"Sku-bcar Rnam-rgyal Grwa-tshaṅ nas ʼgrems spel źus,"},{"c":"2005."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"a-e, iv, ii, 407 p. :"},{"b":"maps ;"},{"c":"23 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Tibetan."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"History of Tibet in questions/answers format."}]}},{"504":{"ind1":" ","ind2":" ","subfields":[{"a":"Includes bibliographical references (p. 406-407)."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Tibet (China)"},{"x":"History"},{"v":"Miscellanea."}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Rnam-rgyal Grwa-tshaṅ."}]}}]}
28
+ {"leader":"01127cam a22002895a 4500","fields":[{"001":" 2008308478"},{"003":"DLC"},{"005":"20090123131001.0"},{"008":"080728s2007 ii 000 0 tibo "},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008308478"}]}},{"025":{"ind1":" ","ind2":" ","subfields":[{"a":"I-Tib-2008-308478; 23"}]}},{"037":{"ind1":" ","ind2":" ","subfields":[{"b":"Library of Congress -- New Delhi Overseas Office"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"DLC"},{"c":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lcode"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-cc-ti"},{"a":"a-ii---"}]}},{"245":{"ind1":"0","ind2":"0","subfields":[{"a":"Śes yon."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"a":"1st ed."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"a":"Dharamsala, Distt. Kangra, H.P. :"},{"b":"Skabs bźi paʼi ʼbriṅ rim dge ʼos slob thon pa thun moṅ gis ʼgrems spel źus,"},{"c":"2007."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"xii, 419 p. ;"},{"c":"22 cm."}]}},{"546":{"ind1":" ","ind2":" ","subfields":[{"a":"In Tibetan."}]}},{"500":{"ind1":" ","ind2":" ","subfields":[{"a":"Copyright: College for Higher Tibetan Studies."}]}},{"520":{"ind1":" ","ind2":" ","subfields":[{"a":"Contributed articles reflecting new educational policy for development of Tibetan education system in exile Tibetan community and Tibetan language teaching method etc."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Education and state"},{"z":"China"},{"z":"Tibet."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Tibetans"},{"x":"Education"},{"z":"India."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Tibetan language"},{"x":"Study and teaching"},{"z":"India."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Teaching"},{"x":"Methodology."}]}},{"710":{"ind1":"2","ind2":" ","subfields":[{"a":"Sa-rā Bod kyi mtho rim slob gñer khaṅ."}]}}]}
29
+ {"leader":"01230nam a22003494a 4500","fields":[{"001":" 2008543486"},{"003":"DLC"},{"005":"20090126101044.0"},{"008":"081217s1997 ja 000 0 jpn d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2008543486"},{"z":" 2000314247"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9784588460050"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"4588460056"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)ocm40868083"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"UIU"},{"c":"UIU"},{"d":"TRCLS"},{"d":"OCLCG"},{"d":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-ja---"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"PL832.U25"},{"b":"Z96 1997"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Yoshida, Hajime,"},{"d":"1934-"}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Kubo Sakae 'Kazanbaichi' o yomu /"},{"c":"Yoshida Hajime cho."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Shohan."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Tōkyō :"},{"b":"Hōsei Daigaku Shuppankyoku,"},{"c":"1997."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"480 p. ;"},{"c":"19 cm."}]}},{"600":{"ind1":"1","ind2":"0","subfields":[{"6":"880-05"},{"a":"Kubo, Sakae,"},{"d":"1901-1958."},{"t":"Kazanbaichi."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Japanese drama"},{"y":"20th century"},{"x":"History and criticism."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Political plays, Japanese"},{"x":"History and criticism."}]}},{"650":{"ind1":" ","ind2":"0","subfields":[{"a":"Theater"},{"z":"Japan"},{"x":"History."}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/$1"},{"a":"吉田一,"},{"d":"1934-"}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/$1"},{"a":"久保栄「火山灰地」を読む /"},{"c":"吉田一著."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/$1"},{"a":"初版."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/$1"},{"a":"東京 :"},{"b":"法政大学出版局,"},{"c":"1997."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"600-05/$1"},{"a":"久保栄,"},{"d":"1901-1958."},{"t":"Kazanbaichi."}]}}]}
30
+ {"leader":"01213nam a22003614a 4500","fields":[{"001":" 2009373513"},{"003":"DLC"},{"005":"20090121153231.0"},{"008":"090114s2008 ch 000 0 chi d"},{"010":{"ind1":" ","ind2":" ","subfields":[{"a":" 2009373513"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9789573908678"}]}},{"020":{"ind1":" ","ind2":" ","subfields":[{"a":"9573908670"}]}},{"035":{"ind1":" ","ind2":" ","subfields":[{"a":"(OCoLC)ocn268619391"}]}},{"040":{"ind1":" ","ind2":" ","subfields":[{"a":"HUA"},{"c":"HUA"},{"d":"HKP"},{"d":"DLC"}]}},{"042":{"ind1":" ","ind2":" ","subfields":[{"a":"lccopycat"}]}},{"043":{"ind1":" ","ind2":" ","subfields":[{"a":"a-cc-hk"}]}},{"050":{"ind1":"0","ind2":"0","subfields":[{"a":"HC59.15"},{"b":".L533 2008"}]}},{"066":{"ind1":" ","ind2":" ","subfields":[{"c":"$1"}]}},{"100":{"ind1":"1","ind2":" ","subfields":[{"6":"880-01"},{"a":"Lin, Xingzhi."}]}},{"245":{"ind1":"1","ind2":"0","subfields":[{"6":"880-02"},{"a":"Ci an zhou bian /"},{"c":"Lin Xingzhi zhu."}]}},{"250":{"ind1":" ","ind2":" ","subfields":[{"6":"880-03"},{"a":"Chu ban."}]}},{"260":{"ind1":" ","ind2":" ","subfields":[{"6":"880-04"},{"a":"Taibei Xian Banqiao Shi :"},{"b":"Yuan jing chu ban shi ye you xian gong si,"},{"c":"2008."}]}},{"300":{"ind1":" ","ind2":" ","subfields":[{"a":"5, 300 p. ;"},{"c":"21 cm."}]}},{"490":{"ind1":"0","ind2":" ","subfields":[{"6":"880-05"},{"a":"Lin Xingzhi zuo pin ji ;"},{"v":"51"}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Economic history"},{"y":"1990-"}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"World politics"},{"y":"2005-2015."}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Hong Kong (China)"},{"x":"Economic conditions"},{"y":"1997-"}]}},{"651":{"ind1":" ","ind2":"0","subfields":[{"a":"Hong Kong (China)"},{"x":"Politics and government"},{"y":"1997-"}]}},{"880":{"ind1":"1","ind2":" ","subfields":[{"6":"100-01/$1"},{"a":"林行止."}]}},{"880":{"ind1":"1","ind2":"0","subfields":[{"6":"245-02/$1"},{"a":"次按驟變 /"},{"c":"林行止著."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"250-03/$1"},{"a":"初版."}]}},{"880":{"ind1":" ","ind2":" ","subfields":[{"6":"260-04/$1"},{"a":"臺北縣板橋市 :"},{"b":"遠景出版事業有限公司,"},{"c":"2008."}]}},{"880":{"ind1":"0","ind2":" ","subfields":[{"6":"490-05/$1"},{"a":"林行止作品集 ;"},{"v":"51"}]}}]}
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: traject
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.14.1
5
+ version: 0.15.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jonathan Rochkind
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-23 00:00:00.000000000 Z
13
+ date: 2013-09-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: marc
@@ -195,6 +195,7 @@ files:
195
195
  - lib/traject/marc_extractor.rb
196
196
  - lib/traject/marc_reader.rb
197
197
  - lib/traject/mock_reader.rb
198
+ - lib/traject/ndj_reader.rb
198
199
  - lib/traject/null_writer.rb
199
200
  - lib/traject/qualified_const_get.rb
200
201
  - lib/traject/solrj_writer.rb
@@ -240,9 +241,11 @@ files:
240
241
  - test/test_support/multi_era.marc
241
242
  - test/test_support/multi_geo.marc
242
243
  - test/test_support/musical_cage.marc
244
+ - test/test_support/nature.marc
243
245
  - test/test_support/one-marc8.mrc
244
246
  - test/test_support/online_only.marc
245
247
  - test/test_support/packed_041a_lang.marc
248
+ - test/test_support/test_data.utf8.json
246
249
  - test/test_support/test_data.utf8.marc.xml
247
250
  - test/test_support/test_data.utf8.mrc
248
251
  - test/test_support/test_data.utf8.mrc.gz
@@ -342,9 +345,11 @@ test_files:
342
345
  - test/test_support/multi_era.marc
343
346
  - test/test_support/multi_geo.marc
344
347
  - test/test_support/musical_cage.marc
348
+ - test/test_support/nature.marc
345
349
  - test/test_support/one-marc8.mrc
346
350
  - test/test_support/online_only.marc
347
351
  - test/test_support/packed_041a_lang.marc
352
+ - test/test_support/test_data.utf8.json
348
353
  - test/test_support/test_data.utf8.marc.xml
349
354
  - test/test_support/test_data.utf8.mrc
350
355
  - test/test_support/test_data.utf8.mrc.gz