-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbmdb-synopsis.json
2297 lines (2257 loc) · 115 KB
/
bmdb-synopsis.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"1": { "Quote":"A fight between grasshoppers is a joy to the crow", "Origin":1, "Origin - Name":"Africa"},
"2": { "Quote":"One who causes others misfortune also teaches them wisdom", "Origin":1, "Origin - Name":"Africa"},
"3": { "Quote":"The beauty of a woman becomes useless if there is no one to admire her", "Origin":1, "Origin - Name":"Africa"},
"4": { "Quote":"What one won't eat by itself, one will eat when mixed with other food", "Origin":1, "Origin - Name":"Africa"},
"5": { "Quote":"Coffee and love taste best when hot", "Origin":1, "Origin - Name":"Africa"},
"6": { "Quote":"Traveling is learning", "Origin":1, "Origin - Name":"Africa"},
"7": { "Quote":"If you are looking for a fly in your food it means that you are full", "Origin":1, "Origin - Name":"Africa"},
"8": { "Quote":"Blessings are better than possessions", "Origin":1, "Origin - Name":"Africa"},
"9": { "Quote":"Home affairs are not talked about on the public square", "Origin":1, "Origin - Name":"Africa"},
"10": { "Quote":"He who learns, teaches", "Origin":1, "Origin - Name":"Africa"},
"11": { "Quote":"Show me your friend and I will show you your character", "Origin":1, "Origin - Name":"Africa"},
"12": { "Quote":"If you are ugly you must either learn to dance or make love", "Origin":1, "Origin - Name":"Africa"},
"13": { "Quote":"Without a leader, black ants are confused", "Origin":1, "Origin - Name":"Africa"},
"14": { "Quote":"She is like a road - pretty, but crooked", "Origin":1, "Origin - Name":"Africa"},
"15": { "Quote":"One who eats alone cannot discuss the taste of food with others", "Origin":1, "Origin - Name":"Africa"},
"16": { "Quote":"Two small antelopes can beat a big one", "Origin":1, "Origin - Name":"Africa"},
"17": { "Quote":"At the bottom of patience one finds heaven", "Origin":1, "Origin - Name":"Africa"},
"18": { "Quote":"Two lions cannot rule in one valley", "Origin":1, "Origin - Name":"Africa"},
"19": { "Quote":"The curse of the fowl does not bother the eagle", "Origin":1, "Origin - Name":"Africa"},
"20": { "Quote":"Anyone who sees beauty and does not look at it will soon be poor", "Origin":1, "Origin - Name":"Africa"},
"21": { "Quote":"It is the calm and silent water that drowns a man", "Origin":1, "Origin - Name":"Africa"},
"22": { "Quote":"A stream cannot rise about its source", "Origin":1, "Origin - Name":"Africa"},
"23": { "Quote":"Ashes fly back into the face of him who throws them", "Origin":1, "Origin - Name":"Africa"},
"24": { "Quote":"Do not forget what it is to be a sailor because of being a captain yourself", "Origin":1, "Origin - Name":"Africa"},
"25": { "Quote":"You should not hoard your money and die of hunger", "Origin":1, "Origin - Name":"Africa"},
"26": { "Quote":"When you know who your friend is, you know WHO he is", "Origin":1, "Origin - Name":"Africa"},
"27": { "Quote":"The man who has bread to eat does not appreciate the severity of a famine", "Origin":1, "Origin - Name":"Africa"},
"28": { "Quote":"Return to old watering holes for more than water; friends and dreams are there to meet you", "Origin":1, "Origin - Name":"Africa"},
"29": { "Quote":"The cook does not need to be a beautiful woman", "Origin":1, "Origin - Name":"Africa"},
"30": { "Quote":"Why they like an ugly person takes long for a beautiful person to know", "Origin":1, "Origin - Name":"Africa"},
"31": { "Quote":"However long the night, the dawn will break", "Origin":1, "Origin - Name":"Africa"},
"32": { "Quote":"He who is destined for power does not have to fight for it", "Origin":1, "Origin - Name":"Africa"},
"33": { "Quote":" A fool's walking stick helps the wise man to stand", "Origin":1, "Origin - Name":"Africa"},
"34": { "Quote":"You cannot tell a hungry child that you gave him food yesterday", "Origin":1, "Origin - Name":"Africa"},
"35": { "Quote":"Fine words do not produce food", "Origin":1, "Origin - Name":"Africa"},
"36": { "Quote":"One who causes others misfortune also teaches him wisdom", "Origin":1, "Origin - Name":"Africa"},
"37": { "Quote":"Do not call to a dog with a whip in your hand", "Origin":1, "Origin - Name":"Africa"},
"38": { "Quote":"You do not teach the paths of the forest to an old gorilla", "Origin":1, "Origin - Name":"Africa"},
"39": { "Quote":"Good things sell, bad things advertise", "Origin":1, "Origin - Name":"Africa"},
"40": { "Quote":"Feet cannot stop one from going into danger", "Origin":1, "Origin - Name":"Africa"},
"41": { "Quote":"See foes as friends; see demons as angels;", "Origin":2, "Origin - Name":"Asia"},
"42": { "Quote":"To be without a friend is to be poor indeed", "Origin":1, "Origin - Name":"Africa"},
"43": { "Quote":"A fully grown up tree cannot be bent into a walking stick", "Origin":1, "Origin - Name":"Africa"},
"44": { "Quote":"If you are hiding, don't light a fire", "Origin":1, "Origin - Name":"Africa"},
"45": { "Quote":"When you follow in the path of your father, you learn to walk like him", "Origin":1, "Origin - Name":"Africa"},
"46": { "Quote":"Pretend you are dead and you will see who really loves you", "Origin":1, "Origin - Name":"Africa"},
"47": { "Quote":"And slacken not in following up the enemy;", "Origin":2, "Origin - Name":"Asia"},
"48": { "Quote":"It may be that some of the events which ye wish to hasten on may be (close) in your pursuit!", "Origin":2, "Origin - Name":"Asia"},
"49": { "Quote":"When purity approaches, impurity arises and takes its departure", "Origin":2, "Origin - Name":"Asia"},
"50": { "Quote":"The work is done but how no one can see, tis this that makes the power not cease to be", "Origin":2, "Origin - Name":"Asia"},
"51": { "Quote":"It would not be reasonable\nIn me if I did not
Serve Him Who created me,
And to Whom ye shall
(All) be brought", "Origin":2, "Origin - Name":"Asia"},
"52": { "Quote":"What is the matter\nWith you that ye
Help not each other?", "Origin":2, "Origin - Name":"Asia"},
"53": { "Quote":"Truly thou canst not cause the\n dead to listen, nor canst thou
cause the deaf to hear the call", "Origin":2, "Origin - Name":"Asia"},
"55": { "Quote":"It is We Who created Them, and We\n have made Their joints strong;
But, when We will, We can
substitute The like of them by a
complete change", "Origin":2, "Origin - Name":"Asia"},
"56": { "Quote":"No reward do I ask of you for it but this:\n
That each one who will may take a
(straight) Path to his Lord.", "Origin":2, "Origin - Name":"Asia"},
"57": { "Quote":"Only this has been revealed\nTo me: that I am
To give warning
Plainly and publicly.", "Origin":2, "Origin - Name":"Asia"},
"59": { "Quote":"Truly many are the Partners\n (in business) who wrong
each other", "Origin":2, "Origin - Name":"Asia"},
"60": { "Quote":"A man belonging to many partners\n at variance with each other, and a
man belonging entirely to one
master: are those two equal in
comparison?", "Origin":2, "Origin - Name":"Asia"},
"61": { "Quote":"Who, then, doth more wrong than\n one who utters a lie concerning
God, and rejects the Truth", "Origin":2, "Origin - Name":"Asia"},
"62": { "Quote":"He that works evil\nWill not be requited
But by the like thereof", "Origin":2, "Origin - Name":"Asia"},
"63": { "Quote":"Assuredly the creation\nOf the heavens
And the earth
Is a greater (matter)
Than the creation of men:
Yet most men understand not", "Origin":2, "Origin - Name":"Asia"},
"64": { "Quote":"Man does not weary\nOf asking for good (things),
But if ill touches him,
He gives up all hope
(And) is lost in despair.", "Origin":2, "Origin - Name":"Asia"},
"65": { "Quote":"No reward do I\nAsk of you for this
Except the love
Of those near of kin", "Origin":2, "Origin - Name":"Asia"},
"66": { "Quote":"But indeed if any do help\nAnd defend themselves
After a wrong (done)
To them, against such
There is no cause
Of blame.", "Origin":2, "Origin - Name":"Asia"},
"67": { "Quote":"If anyone withdraws himself\nFrom remembrance
Of (God) Most Gracious,
We appoint for him
An evil one, to be
An intimate companion to him", "Origin":2, "Origin - Name":"Asia"},
"68": { "Quote":"Through death he might cause to\n cease the having the power of
death, that is, the devil", "Origin":2, "Origin - Name":"Asia"},
"69": { "Quote":"If ye believe me not,\nAt least keep yourselves
Away from me", "Origin":2, "Origin - Name":"Asia"},
"70": { "Quote":"If any one does\nA righteous deed,
It enures to the benefit
Of his own soul;
If he does evil,
It works against", "Origin":2, "Origin - Name":"Asia"},
"71": { "Quote":"I follow\nBut that which is revealed
To me by inspiration;
I am but a Warner
Open and clear", "Origin":2, "Origin - Name":"Asia"},
"72": { "Quote":"The mutual rivalry\nFor piling up (the good things
Of this world) diverts you
(From the more serious things)", "Origin":2, "Origin - Name":"Asia"},
"73": { "Quote":"But he who is\nA greedy miser
And thinks himself
Self-sufficient,
And gives the lie
To the Best,—
We will indeed
Make smooth for him
The Path to Misery;", "Origin":2, "Origin - Name":"Asia"},
"74": { "Quote":"Woe to those\nThat deal in fraud,—
Those who, when they
Have to receive by measure
From men, exact full measure,
But when they have
To give by measure
Or weight to men,
Give less than due.
Do they not think
That they will be called
To account?—", "Origin":2, "Origin - Name":"Asia"},
"75": { "Quote":"Have We not made\nThe earth (as a place)
To draw together
The living and the dead?", "Origin":2, "Origin - Name":"Asia"},
"76": { "Quote":"We feed you\nFor the sake of God alone:
No reward do we desire
From you, nor thanks", "Origin":2, "Origin - Name":"Asia"},
"77": { "Quote":"Truly the rising by night\nIs most potent for governing
(The soul), and most suitable
For (framing) the Word
(Of Prayer and Praise)", "Origin":2, "Origin - Name":"Asia"},
"78": { "Quote":"But we think that we\nCan by no means frustrate
God throughout the earth,
Nor can we frustrate Him
By flight", "Origin":2, "Origin - Name":"Asia"},
"79": { "Quote":"Their desire is that\nThou shouldst be pliant:
So would they be pliant", "Origin":2, "Origin - Name":"Asia"},
"80": { "Quote":"Is then one who\nWalks headlong, with his face
Grovelling, better guided,—
Or one who walks
Evenly on a Straight Way?", "Origin":2, "Origin - Name":"Asia"},
"81": { "Quote":"God puts no burden\nOn any person beyond
What He has given him.
After a difficulty, God
Will soon grant relief", "Origin":2, "Origin - Name":"Asia"},
"82": { "Quote":"O ye who believe!\nTruly, among your wives
And your children are (some
That are) enemies to
Yourselves: so beware
Of them! But if ye
Forgive and overlook,
And cover up (their faults),
Verily God is
Oft-Forgiving, Most Merciful", "Origin":2, "Origin - Name":"Asia"},
"83": { "Quote":"Your riches and your children\nMay be but a trial:
But in the Presence of God,
Is the highest Reward.
So fear God
As much as ye can;
Listen and obey;
And spend in charity
For the benefit of
Your own souls.
And those saved from
The covetousness of their own
Souls,—they are the ones
That achieve prosperity.", "Origin":2, "Origin - Name":"Asia"},
"84": { "Quote":"O ye who believe!\nLet not your riches
Or your children divert you
From the remembrance of God.
If any act thus,
The loss is their own", "Origin":2, "Origin - Name":"Asia"},
"85": { "Quote":"When thou lookest\nAt them, their exteriors
Please thee; and when
They speak, thou listenest
To their words. They are
As (worthless as hollow)
Pieces of timber propped up,
(Unable to stand on their own).
They think that every
Cry is against them.
They are the enemies;
So beware of them.
The curse of God be
On them! How are they
Deluded (away from the Truth)!", "Origin":2, "Origin - Name":"Asia"},
"86": { "Quote":"The Death from which\nYe flee will truly
Overtake you: then will
Ye be sent back
To the Knower of things
Secret and open: and He
Will tell you (the truth
Of) the things that ye did!", "Origin":2, "Origin - Name":"Asia"},
"87": { "Quote":"Grievously odious is it\nIn the sight of God
That ye say that
Which ye do not", "Origin":2, "Origin - Name":"Asia"},
"88": { "Quote":"O ye who believe!\nTurn not (for friendship)
To people on whom
Is the Wrath of God", "Origin":2, "Origin - Name":"Asia"},
"89": { "Quote":"They will not fight you\n(Even) together, except
In fortified townships,
Or from behind walls.
Strong is their fighting (spirit)
Amongst themselves:
Thou wouldst think
They were united,
But their hearts are divided:
That is because they
Are a people devoid
Of wisdom.", "Origin":2, "Origin - Name":"Asia"},
"90": { "Quote":"(Their allies deceived them),\nLike the Evil One,
When he says to man,
"Deny God": but when
(Man) denies God,
(The Evil One) says,
"I am free of thee:
I do fear God,
The Lord of the Worlds!"", "Origin":2, "Origin - Name":"Asia"},
"91": { "Quote":"Out of the mouth of babes and sucklings,\nYou have established might", "Origin":2, "Origin - Name":"Asia"},
"92": { "Quote":"And it was, because the midwives feared God, \nHe made houses for them.", "Origin":2, "Origin - Name":"Asia"},
"93": { "Quote":"Your wickedness for a man like yourself;\nand your righteousness a son of man", "Origin":2, "Origin - Name":"Asia"},
"94": { "Quote":"Abstain from anger and cease from fury;\nalso do not inflame yourself to do evil", "Origin":2, "Origin - Name":"Asia"},
"95": { "Quote":"The wicked borrows and never returns, \nbut the righteous is gracious and giving.", "Origin":2, "Origin - Name":"Asia"},
"96": { "Quote":"And whoever will exalt himself shall be humbled,\nAnd whoever will humble himself shall be exalted", "Origin":2, "Origin - Name":"Asia"},
"97": { "Quote":"With what measure you measure,\nIt will be measured to you", "Origin":2, "Origin - Name":"Asia"},
"98": { "Quote":"A disciple is not above his teacher,\nbut everyone who has been perfected
will be like his teacher", "Origin":2, "Origin - Name":"Asia"},
"99": { "Quote":"If a grain of wheat does not fall to the ground,\n it remains alone; but if it falls,
it bears much fruit", "Origin":2, "Origin - Name":"Asia"},
"100": { "Quote":"And Moses was instructed in all wisdom of Egyptians \nand was powerful in words
and in works.", "Origin":2, "Origin - Name":"Asia"},
"101": { "Quote":"Be still and know that I God!", "Origin":2, "Origin - Name":"Asia"},
"102": { "Quote":"Trust not in oppression, and do not be vain in robbery;\nif riches increase to you, do not set your heart them", "Origin":2, "Origin - Name":"Asia"},
"103": { "Quote":"My soul is cleaved after You; \nYour right hand upholds me.", "Origin":2, "Origin - Name":"Asia"},
"104": { "Quote":"To You silence is praise,\nO God, in Zion; and to
You is a vow paid.", "Origin":2, "Origin - Name":"Asia"},
"105": { "Quote":"I have rested on You from the belly;\nYou are He who took me out of my mother's womb;
my praise always of You", "Origin":2, "Origin - Name":"Asia"},
"106": { "Quote":"Who has shown me great and evil distresses; \nYou will me,
You will make me live;
and you will bring me up from
the depths of the earth", "Origin":2, "Origin - Name":"Asia"},
"107": { "Quote":"He shall have pity on the poor\nand needy; and He saves the souls
of the needy ones.", "Origin":2, "Origin - Name":"Asia"},
"108": { "Quote":"He shall redeem their souls from\noppression and violence; and their
blood shall be precious in His eyes", "Origin":2, "Origin - Name":"Asia"},
"109": { "Quote":"For, lo, those who are far from You\nshall be lost; You have cut off all
who go whoring away from You", "Origin":2, "Origin - Name":"Asia"},
"110": { "Quote":"All men shall fear and shall declare \nthe work of God; yea, they shall in
wisdom consider His work", "Origin":2, "Origin - Name":"Asia"},
"111": { "Quote":"Ya can't drink oil", "Origin":7, "Origin - Name":"North America"},
"112": { "Quote":"I will also thank you with a harp,\nO my God; I will sing to You with the lyre,
O Holy One of Israel", "Origin":2, "Origin - Name":"Asia"},
"113": { "Quote":"His name shall be forever;\nHis name shall continue before the sun;
and they shall bless themselves by Him;
all nations shall call Him blessed.", "Origin":2, "Origin - Name":"Asia"},
"114": { "Quote":"Because He has set His love on Me,\ntherefore I will deliver Him;
I will set Him on high because
He has known My name.", "Origin":2, "Origin - Name":"Asia"},
"115": { "Quote":"I know that I am intelligent, because I know\nthat I know nothing.", "Origin":4, "Origin - Name":"Europe"},
"116": { "Quote":"I will set no wicked thing before my eyes;\nI have hated the work of those who
turn aside;
it shall not fasten upon me", "Origin":2, "Origin - Name":"Asia"},
"117": { "Quote":"He has not done to us according\nto our sins, nor rewarded us
according to our iniquities", "Origin":2, "Origin - Name":"Asia"},
"118": { "Quote":"All of them wait for You to\ngive their food in due season;
You give to them; they gather;
You open Your hand, they are
filled with good", "Origin":2, "Origin - Name":"Asia"},
"119": { "Quote":"And they went about from nation\nto nation; from one kingdom to
another people.
He allowed no man to oppress them;
yea, He reproved kings for their
sakes;", "Origin":2, "Origin - Name":"Asia"},
"120": { "Quote":"He pours scorn on nobles, and\ncauses them to wander in a desert;
there is no path;
But He raises the poor up from
affliction, and He sets families
like a flock
The upright will see and be glad;
all iniquity shuts its mouth", "Origin":2, "Origin - Name":"Asia"},
"121": { "Quote":"Good a man showing favor and\nlending; he will measure his
matters with equity", "Origin":2, "Origin - Name":"Asia"},
"122": { "Quote":"Light rises in the darkness to the upright;\ngracious and full of pity
and of righteousness", "Origin":2, "Origin - Name":"Asia"},
"123": { "Quote":"He raises up the poor from the dust;\nHe lifts the needy out of the dunghill,
in order to make him sit with nobles,
with the nobles of his people.", "Origin":2, "Origin - Name":"Asia"},
"124": { "Quote":"And I will answer a word to one\nwho reproves me; for I trust in
Your Word", "Origin":2, "Origin - Name":"Asia"},
"125": { "Quote":"When spiders unite, they can tie\ndown a lion.", "Origin":1, "Origin - Name":"Africa"},
"126": { "Quote":"You make me wiser than my\nenemies by Your commands;
for they forever mine", "Origin":2, "Origin - Name":"Asia"},
"127": { "Quote":"Hot zeal has seized me because of\nthe wicked forsaking Your Law.", "Origin":2, "Origin - Name":"Asia"},
"128": { "Quote":"I go before the dawn of day and cry;\nI hope in Your Word", "Origin":2, "Origin - Name":"Asia"},
"129": { "Quote":"My eyes go before the watches, to\nmeditate on Your Word.", "Origin":2, "Origin - Name":"Asia"},
"130": { "Quote":"I praise You seven a day because of\nYour righteous judgements", "Origin":2, "Origin - Name":"Asia"},
"131": { "Quote":"Jerusalem is built like a city that is\njoined to itself, together.", "Origin":2, "Origin - Name":"Asia"},
"132": { "Quote":"Our soul is exceedingly filled for\nitself the contempt of those who
are at ease, the scorn of the proud", "Origin":2, "Origin - Name":"Asia"},
"133": { "Quote":"For the scepter of wickedness shall\nnot rest on the lot of the righteous;
that the righteous not put forth their
hands to evil", "Origin":2, "Origin - Name":"Asia"},
"134": { "Quote":"Surely I have set and have quieted\nmy soul, like one weaned by its
mother; my soul on me like one
weaned", "Origin":2, "Origin - Name":"Asia"},
"135": { "Quote":"The idols of the nations are gold\nand silver, the work of men's hands.", "Origin":2, "Origin - Name":"Asia"},
"136": { "Quote":"O, daughter of Babylon, O\ndestroyed one! Blessed he
who shall repay your
recompense which you dealt
to us", "Origin":2, "Origin - Name":"Asia"},
"137": { "Quote":"If I walk in the midst of distress,\nYou give me life; You send out
Your hand against the wrath of
my enemies, and Your right hand
delivers me.", "Origin":2, "Origin - Name":"Asia"},
"138": { "Quote":"Surely You will slay the wicked,\nO God; and men of blood turn
away from me", "Origin":2, "Origin - Name":"Asia"},
"139": { "Quote":"Do not let a man of tongue be \nestablished in the earth; evil shall
hunt the violent man; thrust upon
thrust", "Origin":2, "Origin - Name":"Asia"},
"140": { "Quote":"Do not let my heart turn aside to\nevil thing, to practice deeds in
wickedness with men who
practice iniquity; and do not let
me eat of their delicacies", "Origin":2, "Origin - Name":"Asia"},
"141": { "Quote":"Let the righteous strike me; mercy;\nand he rebuking me, oil of the head,
let not my head refuse; for yet my
prayer shall also against their evils", "Origin":2, "Origin - Name":"Asia"},
"142": { "Quote":"Let my prayer be established before\nYou incense; the lifting of my
palms the evening sacrifice.", "Origin":2, "Origin - Name":"Asia"},
"143": { "Quote":"Keep me from the hands of the\ntrap they laid for me, and from
snares of the workers of evil.", "Origin":2, "Origin - Name":"Asia"},
"144": { "Quote":"Let the wicked fall into their own\nnet at the same time; I even shall
pass by", "Origin":2, "Origin - Name":"Asia"},
"145": { "Quote":"Bring my soul out from prison to\ngive thanks to Your name; the
righteous shall gather around
me; for You shall deal bountifully
with me.", "Origin":2, "Origin - Name":"Asia"},
"146": { "Quote":"I remember the days of old. I\nmeditate on all Your works;
I muse on the work of Your hands", "Origin":2, "Origin - Name":"Asia"},
"147": { "Quote":"Teach me to do Your will; for You\nmy God; Your Spirit good; lead me
into the land of uprightness", "Origin":2, "Origin - Name":"Asia"},
"148": { "Quote":"And in Your mercy cut off my\nenemies and make perish all
those who distress my soul;
for I Your servant.", "Origin":2, "Origin - Name":"Asia"},
"149": { "Quote":"Rescue me and deliver me from the\nforeigners' sons, those whose mouths
have spoken vanity; and their right
hand a right hand of lies;", "Origin":2, "Origin - Name":"Asia"},
"150": { "Quote":"Generation to generation shall praise\nYour works; and shall declare
Your mighty acts", "Origin":2, "Origin - Name":"Asia"},
"151": { "Quote":"Put not your trust in nobles, in a son\nof man, for there is no salvation
in him.", "Origin":2, "Origin - Name":"Asia"},
"152": { "Quote":"Our Lord great and of great might;\nno limit to His understanding", "Origin":2, "Origin - Name":"Asia"},
"153": { "Quote":"fire and hail, snow and smoke, stormy\nwind fulfilling His Word", "Origin":2, "Origin - Name":"Asia"},
"154": { "Quote":"The exaltation of God in their throat,\nand the two-edged sword in
their hand", "Origin":2, "Origin - Name":"Asia"},
"155": { "Quote":"A poor and a wise child is better\nthan the old and stupid king who
does not know to be warned any
more", "Origin":2, "Origin - Name":"Asia"},
"156": { "Quote":"And I found more bitter than death\nthe woman whose heart snares and
nets; her hands bonds. He who is
good before God shall escape from
her; but the sinner shall be captured
by her", "Origin":2, "Origin - Name":"Asia"},
"157": { "Quote":"Better to hear the rebuke of the wise,\nthan for a man to hear the song
of fools.", "Origin":2, "Origin - Name":"Asia"},
"158": { "Quote":"Wisdom makes the wise stronger\nthan ten rulers who are in the city", "Origin":2, "Origin - Name":"Asia"},
"159": { "Quote":"In a good day, be in good, but also\nsee in the evil day, God has made
one along with the other, so that man
should not find anything after him", "Origin":2, "Origin - Name":"Asia"},
"160": { "Quote":"For one who is chosen to be among\nthe living there is hope; for a
living dog is better than a lion
that died.", "Origin":2, "Origin - Name":"Asia"},
"161": { "Quote":"Who is as the wise? And who knows\nthe meaning of a thing? A man's
Wisdom makes his face shine,
and by strength his face is changed", "Origin":2, "Origin - Name":"Asia"},
"162": { "Quote":"And there was found in it a poor\nwise man, and he by his wisdom
saved the city. Yet no man remembered
that poor man!", "Origin":2, "Origin - Name":"Asia"},
"163": { "Quote":"Yet the stupid one makes many\nwords; a man knows not what shall
be; and what shall be after him
who can tell him?", "Origin":2, "Origin - Name":"Asia"},
"164": { "Quote":"The framework tumbles through\nlaziness; and through lowering of
hands, the house leaks", "Origin":2, "Origin - Name":"Asia"},
"165": { "Quote":"But if the man lives many years,\nlet him rejoice in them all, and
remember the days of darkness,
for they shall be many. All that may
come is vanity.", "Origin":2, "Origin - Name":"Asia"},
"166": { "Quote":"And more than that, the Preacher\nwas wise; he still taught the people
knowledge. Yes, he listened, and
looked, and set in order many
proverbs.
The Preacher sought to find out
pleasing words, and words of
truth written on uprightness", "Origin":2, "Origin - Name":"Asia"},
"167": { "Quote":"What is highly esteemed among\nmen is an abomination to God", "Origin":2, "Origin - Name":"Asia"},
"168": { "Quote":"Who is she who looks down like\nthe dawn, beautiful as the moon,
awesome as bannered armies?", "Origin":2, "Origin - Name":"Asia"},
"169": { "Quote":"It is not the great that are wise,\nnor the aged who perceive justice;", "Origin":2, "Origin - Name":"Asia"},
"170": { "Quote":"Then we spoke to them in this way,\nWhat are they, the names of the
men building this building?", "Origin":2, "Origin - Name":"Asia"},
"171": { "Quote":"Then my heart ruled within myself,\nand I contended with the nobles
and the magistrates. And I said to
them, You are each man lending at
interest, from his brother. And I
held a great assembly against them.", "Origin":2, "Origin - Name":"Asia"},
"172": { "Quote":"And this day the princesses of\nPersia and Media who have heard
the queen's word shall say the same
to all the king's rulers and there
shall be contempt and strife", "Origin":2, "Origin - Name":"Asia"},
"173": { "Quote":"Buy the truth, and do not sell it", "Origin":2, "Origin - Name":"Asia"},
"174": { "Quote":"And it shall be, when he lies down,\nyou shall know the place where he
lies down. And he will tell you that
which you are to do.", "Origin":2, "Origin - Name":"Asia"},
"175": { "Quote":"And the near kinsman said, I am not\nable to redeem for myself, that I
not mar my own inheritance. You
redeem for yourself my right of
redemption, for I am not able to
redeem.", "Origin":2, "Origin - Name":"Asia"},
"176": { "Quote":" Or what king going to attack\nanother king in war does not
first sit down and take counsel
whether he is able with ten
thousand to meet those
coming upon him with twenty
thousand", "Origin":2, "Origin - Name":"Asia"},
"177": { "Quote":"When brothers fight to the death,\na stranger inherits their father's
estate.", "Origin":1, "Origin - Name":"Africa"},
"178": { "Quote":"How gently glides the married life\naway, when she who rules seems
but to obey", "Origin":1, "Origin - Name":"Africa"},
"179": { "Quote":"What you learn is what you die with", "Origin":1, "Origin - Name":"Africa"},
"180": { "Quote":"Whoever seeks to save his life,\nwill lose it. And whoever will lose
it, he will preserve it.", "Origin":2, "Origin - Name":"Asia"},
"181": { "Quote":"No servant is able to serve two\nlords; for he will hate the one,
and he will love the other; or he
will cling to one, and He will
despise the other. You are
unable to serve God and wealth.", "Origin":2, "Origin - Name":"Asia"},
"182": { "Quote":"But the hireling, not even being a\nshepherd, who does not own the
sheep, sees the wolf coming and
forsakes the sheep and flees. And
the wolf seizes them, and scatters
the sheep.", "Origin":2, "Origin - Name":"Asia"},
"183": { "Quote":"For what shall it profit a man if he\ngain the world, but forfeit his soul.
Or what shall a man
give as an exchange for his soul?", "Origin":2, "Origin - Name":"Asia"},
"184": { "Quote":"Make a friend when you don't need one.", "Origin":7, "Origin - Name":"North America"},
"185": { "Quote":"Better be despised for too anxious apprehensions, \nthan ruined by too confident security.", "Origin":4, "Origin - Name":"Europe"},
"186": { "Quote":"To generalize is to be an idiot", "Origin":4, "Origin - Name":"Europe"},
"187": { "Quote":"You have succeeded in life when all you really want \nis only what you really need.", "Origin":2, "Origin - Name":"Asia"},
"188": { "Quote":"He who does not desire power is fit to hold it.", "Origin":2, "Origin - Name":"Asia"},
"189": { "Quote":"As I see it, every day you do one of two things: build \nhealth or produce disease in yourself.", "Origin":2, "Origin - Name":"Asia"},
"190": { "Quote":"Do not give to the dogs what is\nholy; do not cast your pearls
before swine, or they will trample
them under their feet, and turn
and tear you to pieces", "Origin":2, "Origin - Name":"Asia"},
"191": { "Quote":"Salt is good, but if the salt\nbecomes saltless, by what will
you season? Have salt in yourselves
and be at peace with one another", "Origin":2, "Origin - Name":"Asia"},
"192": { "Quote":"There is nothing from outside the\nman, having entered into him, which
is able to defile. But the things
going out from him, those are the
things defiling the man.", "Origin":2, "Origin - Name":"Asia"},
"193": { "Quote":"For of itself the earth bears fruit:\nfirst greenery, then an ear, then
full grain in the ear.", "Origin":2, "Origin - Name":"Asia"},
"194": { "Quote":""When I broke the five loaves for the 5000, \nafter they were filled,
how many baskets
of fragments did you take up?"
They said to him, "Twelve."
He said to them, "And when the
seven to the 4000, after they were
filled, how many baskets of fragments
did you take up?" They said, "Seven."", "Origin":2, "Origin - Name":"Asia"},
"195": { "Quote":"For this reason My Father loves me, because I lay \ndown my life,
that I may take it again.
No one takes it from Me, but I lay
it down from Myself. I have authority
to lay it down, and I have authority
to take it again. I received this commandment from
My Father.
", "Origin":2, "Origin - Name":"Asia"},
"196": { "Quote":"But God turned and gave them over\nto serve the host of the heaven, as
it has been written in the book of
the Prophets: "Did you bring slain
beasts and sacrifices to Me forty
years in the wilderness, O house
of Israel?"", "Origin":2, "Origin - Name":"Asia"},
"197": { "Quote":"He faithful in the least is also\nfaithful in much. And he unrighteous
in the least is also unrighteous in much.
Then if you were not faithful with
the unrighteous wealth, who will
entrust the true to you?
And if you were not faithful in that
of another, who will give to you your own?", "Origin":2, "Origin - Name":"Asia"},
"198": { "Quote":"Be mindful of the prisoners, as having\nbeen bound with them;
of those ill-treated, as also being
in the body yourselves.", "Origin":2, "Origin - Name":"Asia"},
"199": { "Quote":"Do not forget hospitality, for by this\nsome unknowingly took in angels as guests.", "Origin":2, "Origin - Name":"Asia"},
"200": { "Quote":"If you endure discipline, God is\ndealing with you as with sons;
for who is the son whom a father
does not discipline?", "Origin":2, "Origin - Name":"Asia"},
"201": { "Quote":"Can ye (O ye men of Faith)\nEntertain the hope that they
Will believe in you?—
Seeing that a party of them
Heard the Word of God,
And perverted it knowingly
After they understood it.", "Origin":2, "Origin - Name":"Asia"},
"202": { "Quote":"God hath set a seal\nOn their hearts and on their hearing,
And on their eyes is a veil;
Great is the penalty they (incur).", "Origin":2, "Origin - Name":"Asia"},
"203": { "Quote":"How can ye reject\nThe faith in God?—
Seeing that ye were without life,
And He gave you life
Then will He cause you to die,
And will again bring you to life;
And again to Him will ye return.", "Origin":2, "Origin - Name":"Asia"},
"204": { "Quote":"None of our revelations do we\nabrogate", "Origin":2, "Origin - Name":"Asia"},
"205": { "Quote":"Nay - whoever submits his whole self", "Origin":2, "Origin - Name":"Asia"},
"206": { "Quote":"Or do ye say that Abraham", "Origin":2, "Origin - Name":"Asia"},
"207": { "Quote":"Even if thou wert to bring to the\nPeople of the Book", "Origin":2, "Origin - Name":"Asia"},
"208": { "Quote":"It is not righteousness that ye turn\nyour faces towards East ot West", "Origin":2, "Origin - Name":"Asia"},
"209": { "Quote":"Oh ye who believe! Seek help with\npatient Perseverance and prayer:
for God is with those who patiently persevere.
And say not of those
who are slain in the way of God,
"They are dead." Nay, they are living,
though ye perceive it not.", "Origin":2, "Origin - Name":"Asia"},
"210": { "Quote":"And spend of your substance in the\ncause of God.", "Origin":2, "Origin - Name":"Asia"},
"211": { "Quote":"There is a type of man whose speech\nabout this world's life may dazzle thee", "Origin":2, "Origin - Name":"Asia"},
"212": { "Quote":"Conceal not evidence; for whosoever", "Origin":2, "Origin - Name":"Asia"},
"213": { "Quote":"As God has taught him, so let him write", "Origin":2, "Origin - Name":"Asia"},
"214": { "Quote":"But if ye remit it by way of charity,\nthat is best for you,
if ye only knew", "Origin":2, "Origin - Name":"Asia"},
"215": { "Quote":"Deal not unjustly, and ye shall not\nbe dealt with unjustly", "Origin":2, "Origin - Name":"Asia"},
"216": { "Quote":"On no soul doth God\nPlace a burden greater
Than it can bear.
It gets every good that it earns,
And it suffers every ill that if earns", "Origin":2, "Origin - Name":"Asia"},
"217": { "Quote":"Fear God, and give up\nWhat remains of your demand
For usury, if ye are
Indeed believers.", "Origin":2, "Origin - Name":"Asia"},
"218": { "Quote":"God will deprive\nUsury of all blessing,
But will give increase
For deeds of charity:
For He loveth not
Creatures ungrateful
And wicked.", "Origin":2, "Origin - Name":"Asia"},
"219": { "Quote":"If ye disclose (acts\nOf) charity, even so
It is well,
But if ye conceal them,
And make them reach
Those (really) in need,
That is best for you:
It will remove from you
Some of your (stains
Of) evil.", "Origin":2, "Origin - Name":"Asia"},
"220": { "Quote":"Our fathers have sinned, and are not;\nwe have borne their iniquities.
Slaves rule over us; there is no
rescuer from their hand.
We bring in our bread with our souls,
from the face of the sword of the
wilderness.
Our skin is burned black like an oven,
because of the fever heat of famine ", "Origin":2, "Origin - Name":"Asia"},
"221": { "Quote":"And now know certainly that you\nshall die by the sword, famine, and
plague in the place where you desire
to go live.", "Origin":2, "Origin - Name":"Asia"},
"222": { "Quote":"And I gave time to her that she might\nrepent of her fornication. And she
did not repent.
Behold, I am throwing her into a
bed, and into great affliction those
committing adultery with her,
unless they repent of their works.
And I will kill her children with
death; and all the assemblies will
know that I am the Woman searching
the inner parts and hearts.
And I will give to each of you
according to your works.", "Origin":2, "Origin - Name":"Asia"},
"223": { "Quote":"And they had no strength to stand\nagainst the wisdom and the Spirit
by which he spoke.
The they induced men saying,
We have heard him speaking
blasphemous words against
Moses and God!", "Origin":2, "Origin - Name":"Asia"},
"224": { "Quote":"This One is the Stone counted worthless\nby you the builders, the
One come to be into the Head of the Corner", "Origin":2, "Origin - Name":"Asia"},
"225": { "Quote":"And they were astounded in Him,\nas He was teaching as One having
authority, and not as the scribes.", "Origin":2, "Origin - Name":"Asia"},
"226": { "Quote":"Then I told them of the hand of my\nGod which was good on me, and also
the king's words that he had spoken
to me. And they said, Let us rise up and
build. So they made their hands strong
for good.", "Origin":2, "Origin - Name":"Asia"},
"227": { "Quote":"My Beloved is bright and ruddy,\nstanding out among ten thousand.
His head is like refined gold; His
locks are bushy and black as a
raven. His eyes as eyes of
doves on the rivers of waters,
washed with milk, sitting on a
setting. His cheeks like a bed of
spices, a raised bed of aromatic
herbs. His lips like liliies
dropping flowing myrrh. His hands
rings of gold filled with
jewels; His body an ivory plate
overlaid with sapphires. His legs
pillars of marble on bases of fine
gold; His appearance Lebanon,
excellent as the cedars.", "Origin":2, "Origin - Name":"Asia"},
"228": { "Quote":"Behold, you are beautiful, My love.\nBehold, you beautiful; your eyes as
doves' from behind your veil. Your
hair like a flock of goats which lie
down from Mount Gilead. Your
teeth like a flock of shorn which
come up from the washing place;
of which they all bearing twins;
and a bereaved one is not among
them. Your lips like a cord of scarlet,
and your speech becoming; your
temples like a piece of pomegranate
behind your veil. Your neck like the
tower of David, built for an armory;
a thousand bucklers hang on it, all
the shields of the mighty men. Your
two breasts like two fawns, twins
of a gazelle, feeding among the
lilies. Until when the day blows, and
the shadows flee away, I myself
will go to the mountaitn of myrrh,
and to the hills of frankincense.
You all beautiful, My love. There no
blemish on you. Come with Me
from Lebanon, spouse; with Me
from Lebanon.", "Origin":2, "Origin - Name":"Asia"},
"229": { "Quote":"because they had not observed My ordinances,\nbut had rejected My statutes and had profaned
My sabbaths, and their eyes were on
the idols of their fathers. "I also gave
them statutes that were not good
and ordinances by which they could not live;", "Origin":2, "Origin - Name":"Asia"},
"230": { "Quote":"I will bring you out from the peoples\nand gather you from the lands where
you are scattered, with a mighty hand
and with an outstretched arm and with
wrath poured out; and I will bring
you into the wilderness of the peoples,
and there I will enter into judgment with
you face to face.", "Origin":2, "Origin - Name":"Asia"},
"231": { "Quote":"Build houses and live, and plant gardens,\nand eat their fruit. Take wives, and
father sons and daughters. And take
wives for your sons; and give your
daughters to husbands, that they
may bear sons and daughters, and
multiply there, and do not become few.
And seek the peace of the city, there
where I have caused you to be exiled.
And pray to Jehovah for it; for in its
peace you shall have peace.", "Origin":2, "Origin - Name":"Asia"},
"232": { "Quote":"Disdain not to reduce to writing", "Origin":2, "Origin - Name":"Asia"},
"233": { "Quote":"Let there be no compulsion in\nreligion.", "Origin":2, "Origin - Name":"Asia"},
"234": { "Quote":"For tumult and oppression are worse\nthan slaughter", "Origin":2, "Origin - Name":"Asia"},
"235": { "Quote":"Are you not like the sons of the\nEthiopians to Me, O sons of Israel?", "Origin":2, "Origin - Name":"Asia"},
"236": { "Quote":"Forgive us our sins, blot out from us\nour iniquities", "Origin":2, "Origin - Name":"Asia"},
"237": { "Quote":"But if ye persevere patiently and guard\nagainst Evil, - then that will
be a determining factor in all affairs", "Origin":2, "Origin - Name":"Asia"},
"238": { "Quote":"If God helps you, none can overcome\nyou: if He forsakes you, who is there,
after that, that can help you?", "Origin":2, "Origin - Name":"Asia"},
"239": { "Quote":"Oh ye who believe, take not into\nyour intimacy those outside your ranks.
They will not fail to corrupt you.", "Origin":2, "Origin - Name":"Asia"},
"240": { "Quote":"See you do not despise one of these\nlittle, for I tell you that their angels
in Heaven continually look on the
face of My Father in Heaven.", "Origin":2, "Origin - Name":"Asia"},
"241": { "Quote":"And they came to Jerusalem. And entering\ninto the temple, Jesus began to throw out
those selling and buying in the temple;
also He overturned the tables of the
money changers and the seats of those selling doves.", "Origin":2, "Origin - Name":"Asia"},
"242": { "Quote":"But what things they do not know,\nthey speak evil of these", "Origin":2, "Origin - Name":"Asia"},
"243": { "Quote":"She was being brought out, and she\nsent to her father-in-law, saying,
I am pregnant by a man to whom
these. Now note whose these, the
signet ring, the bracelet, and the staff?", "Origin":2, "Origin - Name":"Asia"},
"244": { "Quote":"He performed mightily with His arm;\nHe scattered proud ones in the thought of their heart", "Origin":2, "Origin - Name":"Asia"},
"245": { "Quote":"I came to hurl fire into the earth, and\nwhat will I if it has already been lit?
Do you think that I came to give
peace in the earth? No, I say to you,
But rather division.", "Origin":2, "Origin - Name":"Asia"},
"246": { "Quote":"By faith the walls of Jericho fell down,\nhaving been circled during seven days.
By faith Rahab the harlot did not
perish with those disobeying, having
received the spies with peace.", "Origin":2, "Origin - Name":"Asia"},
"247": { "Quote":"And you, you shall cut no covenant\nwith the living in this land. You shall
break down their altars.", "Origin":2, "Origin - Name":"Asia"},
"248": { "Quote":"And you shall go around the city, all\nthe men of battle", "Origin":2, "Origin - Name":"Asia"},
"249": { "Quote":"And I declare to him that I am judging his house forever, for the\niniquity which he has known; for his
sons have been making themselves vile, and he has not
restrained them.", "Origin":2, "Origin - Name":"Asia"},
"250": { "Quote":"And she rose up in the middle of the\nnight and took my son from beside me
and laid it in her bosom; and your
handmaid was asleep. And she laid
her dead son in my bosom.", "Origin":2, "Origin - Name":"Asia"},
"251": { "Quote":"And David gave his son Solomon the\npattern of the porch, and of his houses,
and of its treasuries, and of its upper
rooms, and of its innermost rooms,
and of the house of the mercy-seat", "Origin":2, "Origin - Name":"Asia"},
"252": { "Quote":"But they also did not listen to their judges,\nbut went whoring after other gods,
and bowed themselves to them.", "Origin":2, "Origin - Name":"Asia"},
"253": { "Quote":"And the temple of God in Heaven\nwas opened, and the ark of His
covenant was seen in His temple,
and lightnings, and voices, and thunders,
and an earthquake, and a great hail occurred.", "Origin":2, "Origin - Name":"Asia"},
"254": { "Quote":"Go forth, O daughters of Zion, and\nsee King Solomon with the crown
which his mother crowned him on
his wedding day, even on the day
of the gladness of his heart.", "Origin":2, "Origin - Name":"Asia"},
"255": { "Quote":"Who has no need, as do the high\npriests, to offer sacrifices day by day,
first for His own sins, then for those
of His people. For He did this once
for all, offering up Himself.", "Origin":2, "Origin - Name":"Asia"},
"256": { "Quote":"And they lived around the house of\nGod, for the watch duty was on them;
and they were to open it morning
by morning", "Origin":2, "Origin - Name":"Asia"},
"257": { "Quote":"If there is character, ugliness becomes beauty", "Origin":2, "Origin - Name":"Asia"},
"258": { "Quote":"She is beautiful; she has love, understands;\nshe has respect for herself and others;", "Origin":2, "Origin - Name":"Asia"},
"259": { "Quote":"A patient person never misses a thing.", "Origin":1, "Origin - Name":"Africa"},
"260": { "Quote":"A man who respects the great paves\nthe way for his own greatness", "Origin":1, "Origin - Name":"Africa"},
"261": { "Quote":"Wealth, if you use it, comes to an end;\nLearning, if you use it, increases", "Origin":1, "Origin - Name":"Africa"},
"262": { "Quote":"As porridge benefits those who heat\nand eat it, a child benefits those who
rear it", "Origin":1, "Origin - Name":"Africa"},
"263": { "Quote":"A good person once you shelter with\nhim under the bush you will know him", "Origin":1, "Origin - Name":"Africa"},
"264": { "Quote":"Marriage is like a groundnut; you\nhave to crack it to see what is inside", "Origin":1, "Origin - Name":"Africa"},
"265": { "Quote":"But each one is tempted by own\nlusts, being drawn out and being seduced.
Then having conceived lust brings forth sin.
And sin being fully formed brings forth death.", "Origin":2, "Origin - Name":"Asia"},
"266": { "Quote":"For do not let any of you suffer as a\nmurderer, or a thief, or an evildoer, or
as a meddler in the affairs of others.
But if as a Christian, do not let him
be ashamed, but to glorify God in this respect.", "Origin":2, "Origin - Name":"Asia"},
"267": { "Quote":"But false prophets were also among\nthe people, as also false teachers
will be among you, who will secretly
bring in destructive heresies, and
denying the Master who has bought them,
bringing swift destruction
on themselves.", "Origin":2, "Origin - Name":"Asia"},
"268": { "Quote":"The precious sons of Zion are weighed\nagainst pure gold. How they are counted
as earthen vessels, the work of a
potter's hand!", "Origin":2, "Origin - Name":"Asia"},
"269": { "Quote":"Fix my steps in Your Word; and let\nno evil rule over me.
Redeem me from the oppression of man;
and I will keep Your precepts.
Make Your face shine on Your servant,
and teach me Your statutes.
Channels of water go down my eyes,
for they do not keep Your Law.", "Origin":2, "Origin - Name":"Asia"},
"270": { "Quote":"And even I, My eye does not spare, and\nI will not have pity. I will put their way
on their head.", "Origin":2, "Origin - Name":"Asia"},
"271": { "Quote":"Yet, behold, there shall be left in it\nescaping ones that shall be brought
out, sons and daughters. Behold, they
shall come to you, and you shall see
their way and their doings.", "Origin":2, "Origin - Name":"Asia"},
"272": { "Quote":"Love is a despot who spares no one.", "Origin":2, "Origin - Name":"Asia"},
"273": { "Quote":"And Samson caught three hundred\nfoxes", "Origin":2, "Origin - Name":"Asia"},
"274": { "Quote":"Therefore, I will gather all your lovers\nwith whom you have been pleased,
even all whom you have loved, with
all whom you have hated, I will even
gather them against you from all
around, and will uncover your nakedness
to them. Yea, they will see all your
nakedness.", "Origin":2, "Origin - Name":"Asia"},
"275": { "Quote":"Behold, this was the iniquity of your\nsister Sodom: pride, fullness of
bread, and abundace of idleness
was in her and her daughters. ", "Origin":2, "Origin - Name":"Asia"},
"276": { "Quote":"Now, behold! He fathers a son who\nsees all his father's sins which he has
done, and sees, and does not do like
them; has not eaten on the mountains,
and has not lifted up his eyes to the
idols of the house of Israel; has not
defiled his neighbor's wife, and has not
oppressed a man, has not withheld
the pledge, and has not robbed by
robbery; he has given his bread to
the hungry, and he has covered the
naked with clothing, has turned back
his hand off the poor, and has not received
interest and increase.
", "Origin":2, "Origin - Name":"Asia"},
"277": { "Quote":"And the man said to me, Son of man,\nlook with your eyes, and hear with your
ears, and set your heart on all that I shall
make you see.", "Origin":2, "Origin - Name":"Asia"},
"278": { "Quote":"By the multitude of your trade, they\nfilled your midst with violence, and you
sinned. So I cast you defiled from the
height of God, and I destroyed you,
O covering cherub, from among the stones
of fire.
Your heart was lifted up because of
your beauty; you corrupted your wisdom
because of your splendor. I have cast
you to the ground. I will put you before
kings, that they may see you.", "Origin":2, "Origin - Name":"Asia"},
"279": { "Quote":"Your mother is like a vine in your blood,\nplanted by the waters. She was fruitful
and full of branches because of many
waters.
And there were rods to her, strong
for the scepters of rulers, and her stature
was exalted among the thick branches.
And it was seen in her height, with the
multitude of her branches", "Origin":2, "Origin - Name":"Asia"},
"280": { "Quote":"Strive! Strive with your mother, for\nshe is not my wife, and I am not her
husband. Therefore, let her put away
her harlotries from her face, and her
adulteries from between her breasts.", "Origin":2, "Origin - Name":"Asia"},
"281": { "Quote":"And I will not have pity for her sons,\nfor they are the sons of harlotries.
For their mother has prostituted
herself; she who conceived them has
acted shamefully. For she said, I will
go after my lovers who give my bread
and my water, my wool and my flax,
my oil and my drink.", "Origin":2, "Origin - Name":"Asia"},
"282": { "Quote":"Yet let not a man strive with nor reprove\na man. For your people are as a priest
striven with.", "Origin":2, "Origin - Name":"Asia"},
"283": { "Quote":"For this reason, you return to your\nGod; keep kindness and judgement,
and call on your God continually.
A merchant; the scales of deceit in
his hand; he loves to oppress", "Origin":2, "Origin - Name":"Asia"},
"284": { "Quote":"And God planted a garden", "Origin":0, "Origin - Name":""},
"285": { "Quote":"Repent, then, from this wickedness of\nyours, and petition God if perhaps you
will be forgiven the thought of your
heart.
For I see you being in the gall of
bitterness and a bundle of unrighteousness.", "Origin":2, "Origin - Name":"Asia"},
"286": { "Quote":"Fornication and wine and new wine\ntake away the heart.", "Origin":2, "Origin - Name":"Asia"},
"287": { "Quote":"I will not punish your daughters when\nthey fornicate, nor your brides when
they commit adultery. For the men
themselves go aside with harlots,
and they sacrifice with temple
prostitutes. The people who do not
understand are thrust down.", "Origin":2, "Origin - Name":"Asia"},
"288": { "Quote":"My people seek advice by their wood,\nand their rod declares to them.
For the spirit of harlotry has
led
them astray, and they fornicate", "Origin":2, "Origin - Name":"Asia"},
"289": { "Quote":"And they do not say within their hearts\nthat I remember all their evil. Now their
own doings have hemmed them in.
They are before My face.
They make the king glad with their evil,
and the rulers with their lies.
They are all adulterers, like an oven heated
by the baker; he ceases from stirring,
from kneading the dough until it is
leavened.", "Origin":2, "Origin - Name":"Asia"},
"290": { "Quote":"An empty pot makes the loudest noise", "Origin":1, "Origin - Name":"Africa"},
"291": { "Quote":"I will go; I will return to My place until\nthey confess their guilt and seek
My face. In their affliction they will
seek Me diligently.", "Origin":2, "Origin - Name":"Asia"},
"292": { "Quote":"Can a virgin forget her finery, a bride\nher attire? Yet My people have forgotten
Me days without number.
What? Do you trim your ways to seek
love? For this reason you have even
taught the evil your ways.
Also on your skirts is found the blood
of the souls of the poor innocents;
I have not found them breaking in,
but on all these.", "Origin":2, "Origin - Name":"Asia"},
"293": { "Quote":"Though they multiply their sons, yet\nI will make them childless, without
a man. Yea, woe also to them when
I turn away from them!", "Origin":2, "Origin - Name":"Asia"},
"294": { "Quote":"After two days He will bring us to life.\nIn the third day He will raise us up,
and we shall live before Him.", "Origin":2, "Origin - Name":"Asia"},
"295": { "Quote":"When they go, I will spread My net\nover them; I will bring them down
like the birds of the heavens; I will
chastise them, as a report to their
congregation.
Woe to them! For they have fled from
Me. Ruin to them! For they have
transgressed against Me. Though
I would redeem them, yet they have
spoken lies against Me.
And they have not cried to Me with
their heart, when they howled on their
beds. They gather themselves for grain
and wine; they turn against Me.", "Origin":2, "Origin - Name":"Asia"},
"296": { "Quote":"Yet now as our flesh is like the flesh\nof our brothers; as their sons, our sons;
and behold, we are bringing our sons
and our daughters into bondage, to be
slaves; yea, there are of our daughters
brought into bondage. And there is no
power for our hand, and our fields and
our vineyards are of other men.", "Origin":2, "Origin - Name":"Asia"},
"297": { "Quote":"Now let it be known to the king that\nif this city is rebuilt, and the walls
completed, they will not give tax, tribute,
and forced labor, and it will
cause the king's revenue to suffer", "Origin":2, "Origin - Name":"Asia"},
"298": { "Quote":"And whoever will not do the Law of\nyour God, and the law of the king, let
judgement be executed diligently on
him, whether to death, or to exile, or
to confiscation of goods, or imprisonment.", "Origin":2, "Origin - Name":"Asia"},
"299": { "Quote":"If it pleases the king, let it be written to\ndestroy them; and I will pay ten thousand
talents of silver to the hands of those
who do the work, to bring it into the
king's treasuries.", "Origin":2, "Origin - Name":"Asia"},
"300": { "Quote":"My God shall reject them because\nthey did not listen to Him; and they
shall be wanderers among the nations", "Origin":2, "Origin - Name":"Asia"},
"301": { "Quote":"They have spoken words, swearing\nvanity to cut a covenant. So judgement
springs up like hemlock in the furrows of the field.", "Origin":2, "Origin - Name":"Asia"},
"302": { "Quote":"I will ransom them from the hand of\nSheol; I will redeem them from death.", "Origin":2, "Origin - Name":"Asia"},
"303": { "Quote":"We shall no longer say to the work\nof our hands, Our gods! For in
You the fatherless finds mercy.", "Origin":2, "Origin - Name":"Asia"},
"304": { "Quote":"And Jehovah said to Satan,\nJehovah rebuke you, Satan!
And, Jehovah who has chosen
Jerusalem rebuke you!
Is this not a brand plucked out of the fire?", "Origin":2, "Origin - Name":"Asia"},
"305": { "Quote":"And he said to me, This is the curse\nthat goes forth over the face of the whole
Earth. For from now on everyone who
steals shall be cut off according to it;
and everyone who swears from now on
shall be cut off according to it.", "Origin":2, "Origin - Name":"Asia"},
"306": { "Quote":"And he said, This is wickedness.\nAnd he threw her into the midst of
the ephah; and he threw a lead stone
over its opening.
And I lifted up my eyes and looked.
And, behold, two women came out.
And the wind was in their wings; for
they had wings like the wings of a stork.
And they lifted up the ephah between
the earth and the heavens.", "Origin":2, "Origin - Name":"Asia"},
"307": { "Quote":"The black horses in it go into the north\ncountry, and the white go after them;
and the dappled ones go toward the
south country.", "Origin":2, "Origin - Name":"Asia"},
"308": { "Quote":"But I stormed them away on all the\nnations
whom they did not know. And the land
is desolated behind them,
from passing and from returning;
for they made the land of desire a
waste.", "Origin":2, "Origin - Name":"Asia"},
"309": { "Quote":"And Tyre shall build a fortress for\nherself,
and shall pile up silver like the dust,
and gold like the mud in the streets.
Behold! The Lord will dispossess her, and
He will strike her wealth in the sea,
and she shall be consumed with fire.", "Origin":2, "Origin - Name":"Asia"},
"310": { "Quote":"From Him came the cornerstone, from\nHim the nail, from Him the battle bow, from
Him every ruler together.", "Origin":2, "Origin - Name":"Asia"},
"311": { "Quote":"For the family idols speak iniquity,\nand the divining ones have seen a lie
and have told false dreams. They
comfort in vain. On account of this,
they wandered like a flock. They were
troubled because there was no shepherd", "Origin":2, "Origin - Name":"Asia"},
"312": { "Quote":"And it shall be in that day, the prophets\nshall be ashamed, each one in his
vision when he prophesies, and they
shall not wear a hairy garment to
deceive.
But he shall say, I am not a prophet;
I am a man, a tiller of the ground, for
a man has caused me to buy from my youth", "Origin":2, "Origin - Name":"Asia"},
"313": { "Quote":"My covenant with him was life and peace, and\nI gave them to him for fear;
and he feared Me, and he is put in awe
before My name.
The Law of truth was in his mouth,
and iniquity was not found in his lips.
In peace and uprightness he walked
with Me, and he turned many from iniquity", "Origin":2, "Origin - Name":"Asia"},
"314": { "Quote":"And has He not made one? Yet the vestige\nof the Spirit him. And what the one?
He was seeking a seed of God.
Then guard your spirit, and do not
deal treacherously with the wife of
your youth.", "Origin":2, "Origin - Name":"Asia"},
"315": { "Quote":"Panting for the dust of the earth on\nthe head of the helpless, and turning
aside the way of the humble. And a
man and his father will go in to the same
girl, in order to profane the name of
My holiness.", "Origin":2, "Origin - Name":"Asia"},
"316": { "Quote":"Will two walk together except they are agreed?", "Origin":2, "Origin - Name":"Asia"},
"317": { "Quote":"Will a lion roar in the forest when there\nis no prey for him? Will a young lion
cry out of his den except he has caught prey?", "Origin":2, "Origin - Name":"Asia"},
"318": { "Quote":"Will a bird fall into a trap on the ground,\nand there is no bait for it? Will a trap
spring up from the ground, and nothing
at all be caught?", "Origin":2, "Origin - Name":"Asia"},
"319": { "Quote":"If a ram's horn is blowing in a city,\nwill the people not also tremble?
If there is a calamity in a city, has
Jehovah not even done it?", "Origin":2, "Origin - Name":"Asia"},
"320": { "Quote":"For the Lord Jehovah will do nothing\nunless He reveals His secret to His
servants the prophets.", "Origin":2, "Origin - Name":"Asia"},
"321": { "Quote":"For I know your many transgressions,\nand your many sins: distressing the
just, taking of a bribe, and turning aside
the poor in the gate.
So the understanding ones shall keep
silent in that time, for it is an evil time.", "Origin":2, "Origin - Name":"Asia"},
"322": { "Quote":"Hear this , you who swallow up the poor,\neven to make the humble of the land
to cease, saying, When will the new