bible 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,33 @@
1
+ = Introduction
2
+
3
+ This library provides tools to parse Bible references, look them up on the web (in a variety of translations) and to display them in an interactive console session.
4
+
5
+ = Interactive Use
6
+
7
+ To use the library as-is, run the included "bible" command. Enter a verse at the prompt and its corresponding text will be displayed. By default, the Revised Standard Version translation is used. The Douey-Rheims and New American Bible translations are also available.
8
+
9
+ If a reference is instead provided to the script, the interactive console will not be shown. Instead, the corresponding text will be looked up and printed.
10
+
11
+ == Windows Only Features
12
+
13
+ If the 'win32console' gem is available, the interactive console will print verses with bolded book and chapter headings. If the gem is not available, or the console is not being run on a Win32 system, those features will not be used.
14
+
15
+ = Library Design
16
+
17
+ The easiest way to use the library is through the Bible module. If 'bible' is required:
18
+
19
+ require 'bible'
20
+
21
+ Then the Bible module gets an index method ('[]') added which can take a reference string and a lookup. It will return an iterator that can produce the text of the reference.
22
+
23
+ The reference returned also allows access to the individual books, chapters, and/or verses that might be contained. The methods available on the object are dependent on the type of reference parsed. For example, if multiple books were inlclude, the a "books" method is available. Otherwise, only a "book" method is available. This design was inspired by Martin Fowler's post "Humane Interfaces" (http://www.martinfowler.com/bliki/HumaneInterface.html). The "test_bible.rb" file in the "test" directory contains a wide variety of reference forms and corresponding tests of the methods available.
24
+
25
+ = Limitations
26
+
27
+ The library is not able to handle the different book and numbering schemes in widely differing bibles very well. Instead, it uses a very broad definition of the Bible to internally parse references given.
28
+
29
+ = Acknowledgements
30
+
31
+ Of course, my thanks to Matz for creating Ruby. What a joy it is to program in. I'm also indebted to the fine coders of the "commandline" and "highline" libraries. Finally, my thanks to the King of Kings, Jesus Christ, for the gift of this life. Amen.
32
+
33
+
@@ -0,0 +1,41 @@
1
+ require 'rubygems'
2
+ Gem::manage_gems
3
+ require 'rake/gempackagetask'
4
+
5
+ spec = Gem::Specification.new do |s|
6
+ s.name = "bible"
7
+ s.summary = "A library for parsing bible references and looking them up on the web."
8
+ s.version = "1.0.0"
9
+ s.author = "Justin Bailey"
10
+ s.email = "jgbailey@gmail.com"
11
+
12
+ s.description = <<EOS
13
+
14
+ This package implements a failry sophisticated Bible verse parser and iterator which will
15
+ look up the given verse on the web. Three classes are provided for looking up different translations.
16
+
17
+ EOS
18
+
19
+ s.platform = Gem::Platform::RUBY
20
+ s.files = FileList["lib/**/*", "test/*", "*.txt", "Rakefile"].to_a
21
+
22
+ s.bindir = "bin"
23
+ s.executables = ["bible.rb"]
24
+
25
+ s.require_path = "lib"
26
+ s.autorequire = "bible"
27
+
28
+ s.has_rdoc = true
29
+ s.extra_rdoc_files = ["README.txt"]
30
+ s.rdoc_options << '--title' << 'Bible -- Verse Parser and Lookup Tool' <<
31
+ '--main' << 'README.txt' <<
32
+ '--line-numbers'
33
+
34
+ s.add_dependency("highline", ">= 1.2.1")
35
+ s.add_dependency("commandline", ">= 0.7.10")
36
+
37
+ end
38
+
39
+ Rake::GemPackageTask.new(spec) do |pkg|
40
+ pkg.need_tar = true
41
+ end
@@ -0,0 +1,154 @@
1
+ require 'rubygems'
2
+ require 'commandline'
3
+ require 'win32console' rescue LoadError
4
+ require 'highline'
5
+
6
+ $:.unshift(File.dirname(__FILE__) + "/..") unless $:.include?(File.dirname(__FILE__) + "/..")
7
+ require 'lib/bible'
8
+
9
+ module Bible
10
+ class App < CommandLine::Application
11
+
12
+ def initialize
13
+ synopsis "[-h, --help] [-d, --debug] [-t, --trans (NAB|DR|RSV)] [reference]"
14
+ short_description <<-EOS
15
+ Prints the text of the bible reference given.
16
+ EOS
17
+ long_description <<-EOS
18
+ Given a wide variety of bible references, this program will print the text of that reference. If none is given, an interactive console will
19
+ be started instead. Possible references include:
20
+
21
+ Gen 1:1
22
+ Gen 1:1-10
23
+ Gen 1:1, 2:1
24
+ Gen 1:1 - Lev 1:1
25
+ Gen 1 - Lev 1
26
+ 1 John 1 - 2 John 1
27
+ Rev 1, 2, 3:10
28
+
29
+ etc.
30
+ EOS
31
+
32
+ option :names => %w(-t --trans), :arity => [1,1], :arg_description => "translation",
33
+ :opt_description => "Specify the translation to use. DR for Douey-Rheims, NAB for New American Bible, or RSV for Revised Standard Version.",
34
+ :opt_found => get_args
35
+
36
+ options :help, :debug
37
+
38
+ expected_args [0, -1]
39
+ end
40
+
41
+
42
+ # Sets paging and wrapping characteristics, if avialable.
43
+ def set_page_and_wrap
44
+ if defined?(Win32)
45
+ info = Win32::Console.new(Win32::Console::Constants::STD_OUTPUT_HANDLE).Info
46
+ # info is an unpacked CONSOLE_SCREEN_BUFFER_INFO structure. Starting at index 5 the following
47
+ # information about the display position of the window is given (in character coordinates)
48
+ #
49
+ # left
50
+ # top
51
+ # right
52
+ # bottom
53
+
54
+ left, top, right, bottom = * info.slice(5, 4)
55
+ @hl.page_at = (bottom - top) - 1
56
+ @hl.wrap_at = [72, right - left - 1].min
57
+ end
58
+ end
59
+
60
+ def main
61
+ lookup = nil
62
+
63
+ @hl = HighLine.new
64
+ set_page_and_wrap
65
+
66
+ lookup = opt["-t"].strip if opt["-t"]
67
+
68
+ if @args.nil? || @args.length == 0
69
+ while line = @hl.ask("Enter a verse (h for help): ")
70
+ begin
71
+ case line.strip
72
+ when /^:nab$/i
73
+ lookup = :nab
74
+ @hl.say "Using New American Bible"
75
+ when /^:rsv$/i
76
+ lookup = :rsv
77
+ @hl.say "Using Revised Standard Bible"
78
+ when /^:dr$/i
79
+ lookup = :dr
80
+ @hl.say "Using Douay-Rheims Bible"
81
+ when /^h$/i, /^help$/i, /^\?$/
82
+ @hl.say <<-EOS
83
+ Enter a verse to get text (Gen 1:1, James 2-5, etc)
84
+ exit to quit
85
+
86
+ :nab to use New American
87
+ :dr to use Douay-Rheims
88
+ :rsv to use Revised Standard Version
89
+
90
+ EOS
91
+ when /^q/i, /^exit/i
92
+ break
93
+ when /^$/
94
+ else
95
+ print_reference(Bible[line, lookup])
96
+ end
97
+ rescue Exception
98
+ puts "An error occurred: #{$!.message}"
99
+ end
100
+ end
101
+ else
102
+ print_reference(Bible[@args.join(" "),lookup])
103
+ end
104
+ rescue
105
+ puts "An exception occurred: #{$!.message}\n\n#{$!.backtrace.join("\n")}"
106
+ raise $!
107
+ end
108
+
109
+ def print_reference(ref)
110
+ # To access the @ansi color functions of Win32 Console, we need to
111
+ # include the instance methods in a class. Don't want to pollute Object,
112
+ # so create an anonymous class which we can stick these methods in.
113
+ @ansi ||=
114
+ Class.new do
115
+ if defined? Win32
116
+ include Win32::Console::ANSI
117
+ include Term::ANSIColor
118
+ else
119
+ # No-op for all methods if no Win32.
120
+ def method_missing(sym, *args, &blk)
121
+ ""
122
+ end
123
+ end
124
+ end.new
125
+
126
+ b, c, v = nil, nil, nil
127
+ result = ref.collect do |text, book_symbol, chapter_number, verse_number|
128
+ s = ""
129
+
130
+ # Insert headings and newlines if discontinuity detected
131
+ if book_symbol != b
132
+ s << "\n\n"
133
+ s << @ansi.bold << @ansi.white << book_symbol.to_s << ", Chapter " << chapter_number.to_s << @ansi.reset << "\n\n"
134
+ elsif chapter_number != c
135
+ s << "\n\n"
136
+ s << @ansi.bold << "Chapter " << chapter_number.to_s << @ansi.reset << "\n\n"
137
+ elsif ! v.nil? && v != verse_number - 1
138
+ s << "\n\n"
139
+ end
140
+
141
+ s << @ansi.bold << " " << verse_number.to_s << @ansi.reset << " "
142
+
143
+ b, c, v = book_symbol, chapter_number, verse_number
144
+ s << text
145
+
146
+ end.join
147
+
148
+ @hl.say result
149
+ @hl.say "\n\n"
150
+ end
151
+ end
152
+ end
153
+
154
+ Bible::App.run unless $0 == __FILE__
@@ -0,0 +1,33 @@
1
+ # Includes for bible functionality
2
+ $:.unshift File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__))
3
+ require 'bible/parser'
4
+ require 'bible/iterator'
5
+
6
+ module Bible
7
+ # Returns an iterator for the given verses, with the given lookup.
8
+ def self.[](ref, lookup = nil)
9
+ require 'iterator' unless defined? BibleIterator
10
+ if lookup.is_a?(Symbol) || lookup.is_a?(String)
11
+ case lookup.to_s.downcase.strip
12
+ when "nab"
13
+ require 'bible/lookup/nab' unless defined?(NABLookup)
14
+ lookup = NABLookup
15
+ when "dr"
16
+ require 'bible/lookup/dr' unless defined?(DRLookup)
17
+ lookup = DRLookup
18
+ when "rsv"
19
+ require 'bible/lookup/rsv' unless defined?(RSVLookup)
20
+ lookup = RSVLookup
21
+ else
22
+ raise "Unknown lookup specified: #{lookup}"
23
+ end
24
+ elsif lookup.nil?
25
+ if BibleIterator.default_lookup.nil?
26
+ require 'bible/lookup/rsv' unless defined?(RSVLookup)
27
+ BibleIterator.default_lookup = RSVLookup
28
+ end
29
+ end
30
+
31
+ return BibleIterator.new(BibleRefParser::parse(ref), lookup)
32
+ end
33
+ end
@@ -0,0 +1,1717 @@
1
+ # Book, Verse and Chapters
2
+ ---
3
+ -
4
+ - Genesis
5
+ - Gen
6
+ - 50
7
+ -
8
+ - 31
9
+ - 25
10
+ - 24
11
+ - 26
12
+ - 32
13
+ - 22
14
+ - 24
15
+ - 22
16
+ - 29
17
+ - 32
18
+ - 32
19
+ - 20
20
+ - 18
21
+ - 24
22
+ - 21
23
+ - 16
24
+ - 27
25
+ - 33
26
+ - 38
27
+ - 18
28
+ - 34
29
+ - 24
30
+ - 20
31
+ - 67
32
+ - 34
33
+ - 35
34
+ - 46
35
+ - 22
36
+ - 35
37
+ - 43
38
+ - 55
39
+ - 32
40
+ - 20
41
+ - 31
42
+ - 29
43
+ - 43
44
+ - 36
45
+ - 30
46
+ - 23
47
+ - 23
48
+ - 57
49
+ - 38
50
+ - 34
51
+ - 34
52
+ - 28
53
+ - 34
54
+ - 31
55
+ - 22
56
+ - 33
57
+ - 26
58
+ -
59
+ - Exodus
60
+ - Ex
61
+ - 40
62
+ -
63
+ - 22
64
+ - 25
65
+ - 22
66
+ - 31
67
+ - 23
68
+ - 30
69
+ - 25
70
+ - 32
71
+ - 35
72
+ - 29
73
+ - 10
74
+ - 51
75
+ - 22
76
+ - 31
77
+ - 27
78
+ - 36
79
+ - 16
80
+ - 27
81
+ - 25
82
+ - 26
83
+ - 36
84
+ - 31
85
+ - 33
86
+ - 18
87
+ - 40
88
+ - 37
89
+ - 21
90
+ - 43
91
+ - 46
92
+ - 38
93
+ - 18
94
+ - 35
95
+ - 23
96
+ - 35
97
+ - 35
98
+ - 38
99
+ - 29
100
+ - 31
101
+ - 43
102
+ - 38
103
+ -
104
+ - Leviticus
105
+ - Lev
106
+ - 27
107
+ -
108
+ - 17
109
+ - 16
110
+ - 17
111
+ - 35
112
+ - 19
113
+ - 30
114
+ - 38
115
+ - 36
116
+ - 24
117
+ - 20
118
+ - 47
119
+ - 8
120
+ - 59
121
+ - 57
122
+ - 33
123
+ - 34
124
+ - 16
125
+ - 30
126
+ - 37
127
+ - 27
128
+ - 24
129
+ - 33
130
+ - 44
131
+ - 23
132
+ - 55
133
+ - 46
134
+ - 34
135
+ -
136
+ - Numbers
137
+ - Num
138
+ - 36
139
+ -
140
+ - 54
141
+ - 34
142
+ - 51
143
+ - 49
144
+ - 31
145
+ - 27
146
+ - 89
147
+ - 26
148
+ - 23
149
+ - 36
150
+ - 35
151
+ - 16
152
+ - 33
153
+ - 45
154
+ - 41
155
+ - 50
156
+ - 13
157
+ - 32
158
+ - 22
159
+ - 29
160
+ - 35
161
+ - 41
162
+ - 30
163
+ - 25
164
+ - 18
165
+ - 65
166
+ - 23
167
+ - 31
168
+ - 40
169
+ - 16
170
+ - 54
171
+ - 42
172
+ - 56
173
+ - 29
174
+ - 34
175
+ - 13
176
+ -
177
+ - Deuteronomy
178
+ - Deut
179
+ - 34
180
+ -
181
+ - 46
182
+ - 37
183
+ - 29
184
+ - 49
185
+ - 33
186
+ - 25
187
+ - 26
188
+ - 20
189
+ - 29
190
+ - 22
191
+ - 32
192
+ - 32
193
+ - 18
194
+ - 29
195
+ - 23
196
+ - 22
197
+ - 20
198
+ - 22
199
+ - 21
200
+ - 20
201
+ - 23
202
+ - 30
203
+ - 25
204
+ - 22
205
+ - 19
206
+ - 19
207
+ - 26
208
+ - 68
209
+ - 29
210
+ - 20
211
+ - 30
212
+ - 52
213
+ - 29
214
+ - 12
215
+ -
216
+ - Joshua
217
+ - Josh
218
+ - 24
219
+ -
220
+ - 18
221
+ - 24
222
+ - 17
223
+ - 24
224
+ - 15
225
+ - 27
226
+ - 26
227
+ - 35
228
+ - 27
229
+ - 43
230
+ - 23
231
+ - 24
232
+ - 33
233
+ - 15
234
+ - 63
235
+ - 10
236
+ - 18
237
+ - 28
238
+ - 51
239
+ - 9
240
+ - 45
241
+ - 34
242
+ - 16
243
+ - 33
244
+ -
245
+ - Judges
246
+ - Judg
247
+ - 21
248
+ -
249
+ - 36
250
+ - 23
251
+ - 31
252
+ - 24
253
+ - 31
254
+ - 40
255
+ - 25
256
+ - 35
257
+ - 57
258
+ - 18
259
+ - 40
260
+ - 15
261
+ - 25
262
+ - 20
263
+ - 20
264
+ - 31
265
+ - 13
266
+ - 31
267
+ - 30
268
+ - 48
269
+ - 25
270
+ -
271
+ - Ruth
272
+ - Ruth
273
+ - 4
274
+ -
275
+ - 22
276
+ - 23
277
+ - 18
278
+ - 22
279
+ -
280
+ - 1 Samuel
281
+ -
282
+ - 1 Sm
283
+ - 1 Sam
284
+ - 31
285
+ -
286
+ - 28
287
+ - 36
288
+ - 21
289
+ - 22
290
+ - 12
291
+ - 21
292
+ - 17
293
+ - 22
294
+ - 27
295
+ - 27
296
+ - 15
297
+ - 25
298
+ - 23
299
+ - 52
300
+ - 35
301
+ - 23
302
+ - 58
303
+ - 30
304
+ - 24
305
+ - 42
306
+ - 15
307
+ - 23
308
+ - 29
309
+ - 22
310
+ - 44
311
+ - 25
312
+ - 12
313
+ - 25
314
+ - 11
315
+ - 31
316
+ - 13
317
+ -
318
+ - 2 Samuel
319
+ -
320
+ - 2 Sm
321
+ - 2 Sam
322
+ - 24
323
+ -
324
+ - 27
325
+ - 32
326
+ - 39
327
+ - 12
328
+ - 25
329
+ - 23
330
+ - 29
331
+ - 18
332
+ - 13
333
+ - 19
334
+ - 27
335
+ - 31
336
+ - 39
337
+ - 33
338
+ - 37
339
+ - 23
340
+ - 29
341
+ - 33
342
+ - 43
343
+ - 26
344
+ - 22
345
+ - 51
346
+ - 39
347
+ - 25
348
+ -
349
+ - 1 Kings
350
+ -
351
+ - 1 Kings
352
+ - 1 Kgs
353
+ - 22
354
+ -
355
+ - 53
356
+ - 46
357
+ - 28
358
+ - 34
359
+ - 18
360
+ - 38
361
+ - 51
362
+ - 66
363
+ - 28
364
+ - 29
365
+ - 43
366
+ - 33
367
+ - 34
368
+ - 31
369
+ - 34
370
+ - 34
371
+ - 24
372
+ - 46
373
+ - 21
374
+ - 43
375
+ - 29
376
+ - 53
377
+ -
378
+ - 2 Kings
379
+ -
380
+ - 2 Kings
381
+ - 2 Kgs
382
+ - 25
383
+ -
384
+ - 18
385
+ - 25
386
+ - 27
387
+ - 44
388
+ - 27
389
+ - 33
390
+ - 20
391
+ - 29
392
+ - 37
393
+ - 36
394
+ - 21
395
+ - 21
396
+ - 25
397
+ - 29
398
+ - 38
399
+ - 20
400
+ - 41
401
+ - 37
402
+ - 37
403
+ - 21
404
+ - 26
405
+ - 20
406
+ - 37
407
+ - 20
408
+ - 30
409
+ -
410
+ - 1 Chronicles
411
+ - 1 Chr
412
+ - 29
413
+ -
414
+ - 54
415
+ - 55
416
+ - 24
417
+ - 43
418
+ - 26
419
+ - 81
420
+ - 40
421
+ - 40
422
+ - 44
423
+ - 14
424
+ - 47
425
+ - 40
426
+ - 14
427
+ - 17
428
+ - 29
429
+ - 43
430
+ - 27
431
+ - 17
432
+ - 19
433
+ - 8
434
+ - 30
435
+ - 19
436
+ - 32
437
+ - 31
438
+ - 31
439
+ - 32
440
+ - 34
441
+ - 21
442
+ - 30
443
+ -
444
+ - 2 Chronicles
445
+ - 2 Chr
446
+ - 36
447
+ -
448
+ - 17
449
+ - 18
450
+ - 17
451
+ - 22
452
+ - 14
453
+ - 42
454
+ - 22
455
+ - 18
456
+ - 31
457
+ - 19
458
+ - 23
459
+ - 16
460
+ - 22
461
+ - 15
462
+ - 19
463
+ - 14
464
+ - 19
465
+ - 34
466
+ - 11
467
+ - 37
468
+ - 20
469
+ - 12
470
+ - 21
471
+ - 27
472
+ - 28
473
+ - 23
474
+ - 9
475
+ - 27
476
+ - 36
477
+ - 27
478
+ - 21
479
+ - 33
480
+ - 25
481
+ - 33
482
+ - 27
483
+ - 23
484
+ -
485
+ - Ezra
486
+ - Ezra
487
+ - 10
488
+ -
489
+ - 11
490
+ - 70
491
+ - 13
492
+ - 24
493
+ - 17
494
+ - 22
495
+ - 28
496
+ - 36
497
+ - 15
498
+ - 44
499
+ -
500
+ - Nehemiah
501
+ - Neh
502
+ - 13
503
+ -
504
+ - 11
505
+ - 20
506
+ - 32
507
+ - 23
508
+ - 19
509
+ - 19
510
+ - 73
511
+ - 18
512
+ - 38
513
+ - 39
514
+ - 36
515
+ - 47
516
+ - 31
517
+ -
518
+ - Tobit
519
+ - Tob
520
+ - 14
521
+ -
522
+ - 22
523
+ - 14
524
+ - 17
525
+ - 21
526
+ - 22
527
+ - 18
528
+ - 17
529
+ - 21
530
+ - 6
531
+ - 14
532
+ - 18
533
+ - 22
534
+ - 18
535
+ - 15
536
+ -
537
+ - Judith
538
+ - Jdt
539
+ - 16
540
+ -
541
+ - 16
542
+ - 28
543
+ - 10
544
+ - 15
545
+ - 24
546
+ - 21
547
+ - 32
548
+ - 36
549
+ - 14
550
+ - 23
551
+ - 23
552
+ - 20
553
+ - 20
554
+ - 19
555
+ - 14
556
+ - 25
557
+ -
558
+ - Esther
559
+ - Esth
560
+ - 10
561
+ -
562
+ - 22
563
+ - 23
564
+ - 15
565
+ - 17
566
+ - 14
567
+ - 14
568
+ - 10
569
+ - 17
570
+ - 32
571
+ - 3
572
+ -
573
+ - 1 Maccabees
574
+ - 1 Macc
575
+ - 16
576
+ -
577
+ - 63
578
+ - 70
579
+ - 59
580
+ - 61
581
+ - 68
582
+ - 63
583
+ - 50
584
+ - 32
585
+ - 73
586
+ - 89
587
+ - 74
588
+ - 53
589
+ - 53
590
+ - 49
591
+ - 41
592
+ - 24
593
+ -
594
+ - 2 Maccabees
595
+ - 2 Macc
596
+ - 15
597
+ -
598
+ - 36
599
+ - 32
600
+ - 40
601
+ - 50
602
+ - 27
603
+ - 31
604
+ - 42
605
+ - 36
606
+ - 29
607
+ - 38
608
+ - 38
609
+ - 46
610
+ - 26
611
+ - 46
612
+ - 39
613
+ -
614
+ - Job
615
+ - Job
616
+ - 42
617
+ -
618
+ - 22
619
+ - 13
620
+ - 26
621
+ - 21
622
+ - 27
623
+ - 30
624
+ - 21
625
+ - 22
626
+ - 35
627
+ - 22
628
+ - 20
629
+ - 25
630
+ - 28
631
+ - 22
632
+ - 35
633
+ - 22
634
+ - 16
635
+ - 21
636
+ - 29
637
+ - 29
638
+ - 34
639
+ - 30
640
+ - 17
641
+ - 25
642
+ - 6
643
+ - 14
644
+ - 23
645
+ - 28
646
+ - 25
647
+ - 31
648
+ - 40
649
+ - 22
650
+ - 33
651
+ - 37
652
+ - 16
653
+ - 33
654
+ - 24
655
+ - 41
656
+ - 30
657
+ - 24
658
+ - 34
659
+ - 17
660
+ -
661
+ - Psalms
662
+ -
663
+ - Psalm
664
+ - Ps
665
+ - 150
666
+ -
667
+ - 6
668
+ - 11
669
+ - 8
670
+ - 8
671
+ - 12
672
+ - 10
673
+ - 17
674
+ - 9
675
+ - 20
676
+ - 18
677
+ - 7
678
+ - 8
679
+ - 6
680
+ - 7
681
+ - 5
682
+ - 11
683
+ - 15
684
+ - 50
685
+ - 14
686
+ - 9
687
+ - 13
688
+ - 31
689
+ - 6
690
+ - 10
691
+ - 22
692
+ - 12
693
+ - 14
694
+ - 9
695
+ - 11
696
+ - 12
697
+ - 24
698
+ - 11
699
+ - 22
700
+ - 22
701
+ - 28
702
+ - 12
703
+ - 40
704
+ - 22
705
+ - 13
706
+ - 17
707
+ - 13
708
+ - 11
709
+ - 5
710
+ - 26
711
+ - 17
712
+ - 11
713
+ - 9
714
+ - 14
715
+ - 20
716
+ - 23
717
+ - 19
718
+ - 9
719
+ - 6
720
+ - 7
721
+ - 23
722
+ - 13
723
+ - 11
724
+ - 11
725
+ - 17
726
+ - 12
727
+ - 8
728
+ - 12
729
+ - 11
730
+ - 10
731
+ - 13
732
+ - 20
733
+ - 7
734
+ - 35
735
+ - 36
736
+ - 5
737
+ - 24
738
+ - 20
739
+ - 28
740
+ - 23
741
+ - 10
742
+ - 12
743
+ - 20
744
+ - 72
745
+ - 13
746
+ - 19
747
+ - 16
748
+ - 8
749
+ - 18
750
+ - 12
751
+ - 13
752
+ - 17
753
+ - 7
754
+ - 18
755
+ - 52
756
+ - 17
757
+ - 16
758
+ - 15
759
+ - 5
760
+ - 23
761
+ - 11
762
+ - 13
763
+ - 12
764
+ - 9
765
+ - 9
766
+ - 5
767
+ - 8
768
+ - 28
769
+ - 22
770
+ - 35
771
+ - 45
772
+ - 48
773
+ - 43
774
+ - 13
775
+ - 31
776
+ - 7
777
+ - 10
778
+ - 10
779
+ - 9
780
+ - 8
781
+ - 18
782
+ - 19
783
+ - 2
784
+ - 29
785
+ - 176
786
+ - 7
787
+ - 8
788
+ - 9
789
+ - 4
790
+ - 8
791
+ - 5
792
+ - 6
793
+ - 5
794
+ - 6
795
+ - 8
796
+ - 8
797
+ - 3
798
+ - 18
799
+ - 3
800
+ - 3
801
+ - 21
802
+ - 26
803
+ - 9
804
+ - 8
805
+ - 24
806
+ - 13
807
+ - 10
808
+ - 7
809
+ - 12
810
+ - 15
811
+ - 21
812
+ - 10
813
+ - 20
814
+ - 14
815
+ - 9
816
+ - 6
817
+ -
818
+ - Proverbs
819
+ - Prov
820
+ - 31
821
+ -
822
+ - 33
823
+ - 22
824
+ - 35
825
+ - 27
826
+ - 23
827
+ - 35
828
+ - 27
829
+ - 36
830
+ - 18
831
+ - 32
832
+ - 31
833
+ - 28
834
+ - 25
835
+ - 35
836
+ - 33
837
+ - 33
838
+ - 28
839
+ - 24
840
+ - 29
841
+ - 30
842
+ - 31
843
+ - 29
844
+ - 35
845
+ - 34
846
+ - 28
847
+ - 28
848
+ - 27
849
+ - 28
850
+ - 27
851
+ - 33
852
+ - 31
853
+ -
854
+ - Ecclesiastes
855
+ - Eccl
856
+ - 12
857
+ -
858
+ - 18
859
+ - 26
860
+ - 22
861
+ - 16
862
+ - 20
863
+ - 12
864
+ - 29
865
+ - 17
866
+ - 18
867
+ - 20
868
+ - 10
869
+ - 14
870
+ -
871
+ - Song of Solomon
872
+ -
873
+ - Song
874
+ - Cant
875
+ - Canticles
876
+ - 8
877
+ -
878
+ - 17
879
+ - 17
880
+ - 11
881
+ - 16
882
+ - 16
883
+ - 13
884
+ - 13
885
+ - 14
886
+ -
887
+ - Wisdom
888
+ - Wis
889
+ - 19
890
+ -
891
+ - 16
892
+ - 24
893
+ - 19
894
+ - 20
895
+ - 23
896
+ - 25
897
+ - 30
898
+ - 21
899
+ - 18
900
+ - 21
901
+ - 26
902
+ - 27
903
+ - 19
904
+ - 31
905
+ - 19
906
+ - 29
907
+ - 21
908
+ - 25
909
+ - 22
910
+ -
911
+ - Sirach
912
+ - Sir
913
+ - 51
914
+ -
915
+ - 29
916
+ - 18
917
+ - 30
918
+ - 31
919
+ - 17
920
+ - 37
921
+ - 36
922
+ - 19
923
+ - 18
924
+ - 30
925
+ - 34
926
+ - 18
927
+ - 25
928
+ - 27
929
+ - 20
930
+ - 28
931
+ - 27
932
+ - 33
933
+ - 26
934
+ - 30
935
+ - 28
936
+ - 27
937
+ - 27
938
+ - 31
939
+ - 25
940
+ - 20
941
+ - 30
942
+ - 26
943
+ - 28
944
+ - 25
945
+ - 31
946
+ - 24
947
+ - 33
948
+ - 26
949
+ - 24
950
+ - 27
951
+ - 30
952
+ - 34
953
+ - 35
954
+ - 30
955
+ - 24
956
+ - 25
957
+ - 35
958
+ - 23
959
+ - 26
960
+ - 20
961
+ - 25
962
+ - 25
963
+ - 16
964
+ - 29
965
+ - 30
966
+ -
967
+ - Isaiah
968
+ -
969
+ - Is
970
+ - Isa
971
+ - 66
972
+ -
973
+ - 31
974
+ - 22
975
+ - 26
976
+ - 6
977
+ - 30
978
+ - 13
979
+ - 25
980
+ - 22
981
+ - 21
982
+ - 34
983
+ - 16
984
+ - 6
985
+ - 22
986
+ - 32
987
+ - 9
988
+ - 14
989
+ - 14
990
+ - 7
991
+ - 25
992
+ - 6
993
+ - 17
994
+ - 25
995
+ - 18
996
+ - 23
997
+ - 12
998
+ - 21
999
+ - 13
1000
+ - 29
1001
+ - 24
1002
+ - 33
1003
+ - 9
1004
+ - 20
1005
+ - 24
1006
+ - 17
1007
+ - 10
1008
+ - 22
1009
+ - 38
1010
+ - 22
1011
+ - 8
1012
+ - 31
1013
+ - 29
1014
+ - 25
1015
+ - 28
1016
+ - 28
1017
+ - 25
1018
+ - 13
1019
+ - 15
1020
+ - 22
1021
+ - 26
1022
+ - 11
1023
+ - 23
1024
+ - 15
1025
+ - 12
1026
+ - 17
1027
+ - 13
1028
+ - 12
1029
+ - 21
1030
+ - 14
1031
+ - 21
1032
+ - 22
1033
+ - 11
1034
+ - 12
1035
+ - 19
1036
+ - 12
1037
+ - 25
1038
+ - 24
1039
+ -
1040
+ - Jeremiah
1041
+ - Jer
1042
+ - 52
1043
+ -
1044
+ - 19
1045
+ - 37
1046
+ - 25
1047
+ - 31
1048
+ - 31
1049
+ - 30
1050
+ - 34
1051
+ - 22
1052
+ - 26
1053
+ - 25
1054
+ - 23
1055
+ - 17
1056
+ - 27
1057
+ - 22
1058
+ - 21
1059
+ - 21
1060
+ - 27
1061
+ - 23
1062
+ - 15
1063
+ - 18
1064
+ - 14
1065
+ - 30
1066
+ - 40
1067
+ - 10
1068
+ - 38
1069
+ - 24
1070
+ - 22
1071
+ - 17
1072
+ - 32
1073
+ - 24
1074
+ - 40
1075
+ - 44
1076
+ - 26
1077
+ - 22
1078
+ - 19
1079
+ - 32
1080
+ - 21
1081
+ - 28
1082
+ - 18
1083
+ - 16
1084
+ - 18
1085
+ - 22
1086
+ - 13
1087
+ - 30
1088
+ - 5
1089
+ - 28
1090
+ - 7
1091
+ - 47
1092
+ - 39
1093
+ - 46
1094
+ - 64
1095
+ - 34
1096
+ -
1097
+ - Lamentations
1098
+ - Lam
1099
+ - 5
1100
+ -
1101
+ - 22
1102
+ - 22
1103
+ - 66
1104
+ - 22
1105
+ - 22
1106
+ -
1107
+ - Baruch
1108
+ - Bar
1109
+ - 6
1110
+ -
1111
+ - 22
1112
+ - 35
1113
+ - 38
1114
+ - 37
1115
+ - 9
1116
+ - 72
1117
+ -
1118
+ - Ezekiel
1119
+ - Ezek
1120
+ - 48
1121
+ -
1122
+ - 28
1123
+ - 10
1124
+ - 27
1125
+ - 17
1126
+ - 17
1127
+ - 14
1128
+ - 27
1129
+ - 18
1130
+ - 11
1131
+ - 22
1132
+ - 25
1133
+ - 28
1134
+ - 23
1135
+ - 23
1136
+ - 8
1137
+ - 63
1138
+ - 24
1139
+ - 32
1140
+ - 14
1141
+ - 49
1142
+ - 32
1143
+ - 31
1144
+ - 49
1145
+ - 27
1146
+ - 17
1147
+ - 21
1148
+ - 36
1149
+ - 26
1150
+ - 21
1151
+ - 26
1152
+ - 18
1153
+ - 32
1154
+ - 33
1155
+ - 31
1156
+ - 15
1157
+ - 38
1158
+ - 28
1159
+ - 23
1160
+ - 29
1161
+ - 49
1162
+ - 26
1163
+ - 20
1164
+ - 27
1165
+ - 31
1166
+ - 25
1167
+ - 24
1168
+ - 23
1169
+ - 35
1170
+ -
1171
+ - Daniel
1172
+ - Dan
1173
+ - 14
1174
+ -
1175
+ - 21
1176
+ - 49
1177
+ - 30
1178
+ - 37
1179
+ - 31
1180
+ - 28
1181
+ - 28
1182
+ - 27
1183
+ - 27
1184
+ - 21
1185
+ - 45
1186
+ - 13
1187
+ - 64
1188
+ - 42
1189
+ -
1190
+ - Hosea
1191
+ - Hos
1192
+ - 14
1193
+ -
1194
+ - 11
1195
+ - 23
1196
+ - 5
1197
+ - 19
1198
+ - 15
1199
+ - 11
1200
+ - 16
1201
+ - 14
1202
+ - 17
1203
+ - 15
1204
+ - 12
1205
+ - 14
1206
+ - 16
1207
+ - 9
1208
+ -
1209
+ - Joel
1210
+ - Joel
1211
+ - 4
1212
+ -
1213
+ - 20
1214
+ - 27
1215
+ - 5
1216
+ - 21
1217
+ -
1218
+ - Amos
1219
+ - Am
1220
+ - 9
1221
+ -
1222
+ - 15
1223
+ - 16
1224
+ - 15
1225
+ - 13
1226
+ - 27
1227
+ - 14
1228
+ - 17
1229
+ - 14
1230
+ - 15
1231
+ -
1232
+ - Obadiah
1233
+ - Ob
1234
+ - 1
1235
+ -
1236
+ - 21
1237
+ -
1238
+ - Jonah
1239
+ - Jon
1240
+ - 4
1241
+ -
1242
+ - 17
1243
+ - 10
1244
+ - 10
1245
+ - 11
1246
+ -
1247
+ - Micah
1248
+ - Mic
1249
+ - 7
1250
+ -
1251
+ - 16
1252
+ - 13
1253
+ - 12
1254
+ - 13
1255
+ - 15
1256
+ - 16
1257
+ - 20
1258
+ -
1259
+ - Nahum
1260
+ - Nah
1261
+ - 3
1262
+ -
1263
+ - 15
1264
+ - 13
1265
+ - 19
1266
+ -
1267
+ - Habakkuk
1268
+ - Hab
1269
+ - 3
1270
+ -
1271
+ - 17
1272
+ - 20
1273
+ - 19
1274
+ -
1275
+ - Zephaniah
1276
+ - Zeph
1277
+ - 3
1278
+ -
1279
+ - 18
1280
+ - 15
1281
+ - 20
1282
+ -
1283
+ - Haggai
1284
+ - Hag
1285
+ - 2
1286
+ -
1287
+ - 15
1288
+ - 23
1289
+ -
1290
+ - Zechariah
1291
+ - Zech
1292
+ - 14
1293
+ -
1294
+ - 21
1295
+ - 13
1296
+ - 10
1297
+ - 14
1298
+ - 11
1299
+ - 15
1300
+ - 14
1301
+ - 23
1302
+ - 17
1303
+ - 12
1304
+ - 17
1305
+ - 14
1306
+ - 9
1307
+ - 21
1308
+ -
1309
+ - Malachi
1310
+ - Mal
1311
+ - 4
1312
+ -
1313
+ - 14
1314
+ - 17
1315
+ - 18
1316
+ - 6
1317
+ -
1318
+ - Matthew
1319
+ -
1320
+ - Mt
1321
+ - Matt
1322
+ - 28
1323
+ -
1324
+ - 25
1325
+ - 23
1326
+ - 17
1327
+ - 25
1328
+ - 48
1329
+ - 34
1330
+ - 29
1331
+ - 34
1332
+ - 38
1333
+ - 42
1334
+ - 30
1335
+ - 50
1336
+ - 58
1337
+ - 36
1338
+ - 39
1339
+ - 28
1340
+ - 27
1341
+ - 35
1342
+ - 30
1343
+ - 34
1344
+ - 46
1345
+ - 46
1346
+ - 39
1347
+ - 51
1348
+ - 46
1349
+ - 75
1350
+ - 66
1351
+ - 20
1352
+ -
1353
+ - Mark
1354
+ - Mk
1355
+ - 16
1356
+ -
1357
+ - 45
1358
+ - 28
1359
+ - 35
1360
+ - 41
1361
+ - 43
1362
+ - 56
1363
+ - 37
1364
+ - 38
1365
+ - 50
1366
+ - 52
1367
+ - 33
1368
+ - 44
1369
+ - 37
1370
+ - 72
1371
+ - 47
1372
+ - 20
1373
+ -
1374
+ - Luke
1375
+ - Lk
1376
+ - 24
1377
+ -
1378
+ - 80
1379
+ - 52
1380
+ - 38
1381
+ - 44
1382
+ - 39
1383
+ - 49
1384
+ - 50
1385
+ - 56
1386
+ - 62
1387
+ - 42
1388
+ - 54
1389
+ - 59
1390
+ - 35
1391
+ - 35
1392
+ - 32
1393
+ - 31
1394
+ - 37
1395
+ - 43
1396
+ - 48
1397
+ - 47
1398
+ - 38
1399
+ - 71
1400
+ - 56
1401
+ - 53
1402
+ -
1403
+ - John
1404
+ - Jn
1405
+ - 21
1406
+ -
1407
+ - 51
1408
+ - 25
1409
+ - 36
1410
+ - 54
1411
+ - 47
1412
+ - 71
1413
+ - 53
1414
+ - 59
1415
+ - 41
1416
+ - 42
1417
+ - 57
1418
+ - 50
1419
+ - 38
1420
+ - 31
1421
+ - 27
1422
+ - 33
1423
+ - 26
1424
+ - 40
1425
+ - 42
1426
+ - 31
1427
+ - 25
1428
+ -
1429
+ - Acts
1430
+ -
1431
+ - 28
1432
+ -
1433
+ - 26
1434
+ - 47
1435
+ - 26
1436
+ - 37
1437
+ - 42
1438
+ - 15
1439
+ - 60
1440
+ - 40
1441
+ - 43
1442
+ - 48
1443
+ - 30
1444
+ - 25
1445
+ - 52
1446
+ - 28
1447
+ - 41
1448
+ - 40
1449
+ - 34
1450
+ - 28
1451
+ - 41
1452
+ - 38
1453
+ - 40
1454
+ - 30
1455
+ - 35
1456
+ - 27
1457
+ - 27
1458
+ - 32
1459
+ - 44
1460
+ - 31
1461
+ -
1462
+ - Romans
1463
+ - Rom
1464
+ - 16
1465
+ -
1466
+ - 32
1467
+ - 29
1468
+ - 31
1469
+ - 25
1470
+ - 21
1471
+ - 23
1472
+ - 25
1473
+ - 39
1474
+ - 33
1475
+ - 21
1476
+ - 36
1477
+ - 21
1478
+ - 14
1479
+ - 26
1480
+ - 33
1481
+ - 25
1482
+ -
1483
+ - 1 Corinthians
1484
+ - 1 Cor
1485
+ - 16
1486
+ -
1487
+ - 31
1488
+ - 16
1489
+ - 23
1490
+ - 21
1491
+ - 13
1492
+ - 20
1493
+ - 40
1494
+ - 13
1495
+ - 27
1496
+ - 33
1497
+ - 34
1498
+ - 31
1499
+ - 13
1500
+ - 40
1501
+ - 58
1502
+ - 24
1503
+ -
1504
+ - 2 Corinthians
1505
+ - 2 Cor
1506
+ - 13
1507
+ -
1508
+ - 24
1509
+ - 17
1510
+ - 18
1511
+ - 18
1512
+ - 21
1513
+ - 18
1514
+ - 16
1515
+ - 24
1516
+ - 15
1517
+ - 18
1518
+ - 33
1519
+ - 21
1520
+ - 14
1521
+ -
1522
+ - Galatians
1523
+ - Gal
1524
+ - 6
1525
+ -
1526
+ - 24
1527
+ - 21
1528
+ - 29
1529
+ - 31
1530
+ - 26
1531
+ - 18
1532
+ -
1533
+ - Ephesians
1534
+ - Eph
1535
+ - 6
1536
+ -
1537
+ - 23
1538
+ - 22
1539
+ - 21
1540
+ - 32
1541
+ - 33
1542
+ - 24
1543
+ -
1544
+ - Philippians
1545
+ - Phil
1546
+ - 4
1547
+ -
1548
+ - 30
1549
+ - 30
1550
+ - 21
1551
+ - 23
1552
+ -
1553
+ - Colossians
1554
+ - Col
1555
+ - 4
1556
+ -
1557
+ - 29
1558
+ - 23
1559
+ - 25
1560
+ - 18
1561
+ -
1562
+ - 1 Thessalonians
1563
+ - 1 Thess
1564
+ - 5
1565
+ -
1566
+ - 10
1567
+ - 20
1568
+ - 13
1569
+ - 18
1570
+ - 28
1571
+ -
1572
+ - 2 Thessalonians
1573
+ - 2 Thess
1574
+ - 3
1575
+ -
1576
+ - 12
1577
+ - 17
1578
+ - 18
1579
+ -
1580
+ - 1 Timothy
1581
+ - 1 Tim
1582
+ - 6
1583
+ -
1584
+ - 20
1585
+ - 15
1586
+ - 16
1587
+ - 16
1588
+ - 25
1589
+ - 21
1590
+ -
1591
+ - 2 Timothy
1592
+ - 2 Tim
1593
+ - 4
1594
+ -
1595
+ - 18
1596
+ - 26
1597
+ - 17
1598
+ - 22
1599
+ -
1600
+ - Titus
1601
+ -
1602
+ - 3
1603
+ -
1604
+ - 16
1605
+ - 15
1606
+ - 15
1607
+ -
1608
+ - Philemon
1609
+ - Phil
1610
+ - 1
1611
+ -
1612
+ - 25
1613
+ -
1614
+ - Hebrews
1615
+ - Heb
1616
+ - 13
1617
+ -
1618
+ - 14
1619
+ - 18
1620
+ - 19
1621
+ - 16
1622
+ - 14
1623
+ - 20
1624
+ - 28
1625
+ - 13
1626
+ - 28
1627
+ - 39
1628
+ - 40
1629
+ - 29
1630
+ - 25
1631
+ -
1632
+ - James
1633
+ - Jas
1634
+ - 5
1635
+ -
1636
+ - 27
1637
+ - 26
1638
+ - 18
1639
+ - 17
1640
+ - 20
1641
+ -
1642
+ - 1 Peter
1643
+ -
1644
+ - 1 Pet
1645
+ - 1 Pt
1646
+ - 5
1647
+ -
1648
+ - 25
1649
+ - 25
1650
+ - 22
1651
+ - 19
1652
+ - 14
1653
+ -
1654
+ - 2 Peter
1655
+ -
1656
+ - 2 Pet
1657
+ - 2 Pt
1658
+ - 3
1659
+ -
1660
+ - 21
1661
+ - 22
1662
+ - 18
1663
+ -
1664
+ - 1 John
1665
+ -
1666
+ - 5
1667
+ -
1668
+ - 10
1669
+ - 29
1670
+ - 24
1671
+ - 21
1672
+ - 21
1673
+ -
1674
+ - 2 John
1675
+ -
1676
+ - 1
1677
+ -
1678
+ - 13
1679
+ -
1680
+ - 3 John
1681
+ -
1682
+ - 1
1683
+ -
1684
+ - 14
1685
+ -
1686
+ - Jude
1687
+ -
1688
+ - 1
1689
+ -
1690
+ - 25
1691
+ -
1692
+ - Revelation
1693
+ - Rev
1694
+ - 22
1695
+ -
1696
+ - 20
1697
+ - 29
1698
+ - 22
1699
+ - 11
1700
+ - 14
1701
+ - 17
1702
+ - 17
1703
+ - 13
1704
+ - 21
1705
+ - 11
1706
+ - 19
1707
+ - 17
1708
+ - 18
1709
+ - 20
1710
+ - 8
1711
+ - 21
1712
+ - 18
1713
+ - 24
1714
+ - 21
1715
+ - 15
1716
+ - 27
1717
+ - 21