diff --git a/api/location.go b/api/location.go
index 70d9f3286..c8aa2faca 100644
--- a/api/location.go
+++ b/api/location.go
@@ -24,10 +24,13 @@ const (
LayoutStreetCity = "Street, City"
)
-// Special layout flags for e-QIP integration for Country elements with CountriesNoUS type
+// Special layout flags for e-QIP integration for...
const (
+ // Country elements with CountriesNoUS type
LayoutBirthPlaceWithoutCountyNoUS = "Birthplace without County CountriesNoUS"
LayoutBirthPlaceNoUS = "Birthplace CountriesNoUS"
+ // APOFPO elements
+ LayoutMilitaryAddress = "Military Address"
)
// Location is a basic input.
diff --git a/api/templates/drug-used.xml b/api/templates/drug-used.xml
new file mode 100644
index 000000000..f1243ff7f
--- /dev/null
+++ b/api/templates/drug-used.xml
@@ -0,0 +1,11 @@
+
+{{with $dt := radio .}}
+{{if $dt | ne ""}}
+
+{{if $dt | drugType | eq "Other"}}
+{{$dt}}
+{{end}}
+{{$dt | drugType}}
+
+{{end}}
+{{end}}
diff --git a/api/templates/drug.xml b/api/templates/drug.xml
new file mode 100644
index 000000000..639a08c3c
--- /dev/null
+++ b/api/templates/drug.xml
@@ -0,0 +1,10 @@
+{{with $dt := radio .}}
+{{if $dt | ne ""}}
+
+{{if $dt | drugType | eq "Other"}}
+{{$dt}}
+{{end}}
+{{$dt | drugType}}
+
+{{end}}
+{{end}}
diff --git a/api/templates/foreign-contacts.xml b/api/templates/foreign-contacts.xml
index 47f52838e..0a193d10d 100644
--- a/api/templates/foreign-contacts.xml
+++ b/api/templates/foreign-contacts.xml
@@ -9,7 +9,7 @@
{{if locationIsPostOffice $Item.Address}}
- {{location $Item.Address}}
+ {{militaryAddress $Item.Address}}
{{else}}
diff --git a/api/templates/foreign-travel.xml b/api/templates/foreign-travel.xml
index dd5d7bc02..cf3516a16 100644
--- a/api/templates/foreign-travel.xml
+++ b/api/templates/foreign-travel.xml
@@ -65,7 +65,7 @@
VisitFamilyOrFriends="True"
{{end}}
{{if (checkboxHas $Item.Purpose "Other") | eq "True"}}
- Other="Other"
+ Other="True"
{{end}}
/>
diff --git a/api/templates/history-employment.xml b/api/templates/history-employment.xml
index 413c20055..a9e64d031 100644
--- a/api/templates/history-employment.xml
+++ b/api/templates/history-employment.xml
@@ -11,7 +11,7 @@
{{radio $Item.Status}}
{{- if locationIsPostOffice $Item.Address}}
- {{location $Item.Address}}
+ {{militaryAddress $Item.Address}}
{{end}}
@@ -168,7 +168,7 @@
{{text $supervisor.Title}}
{{if locationIsPostOffice $supervisor.Address}}
- {{location $supervisor.Address}}
+ {{militaryAddress $supervisor.Address}}
{{else}}
@@ -186,7 +186,7 @@
{{nameLastFirst $Item.ReferenceName}}
{{if locationIsPostOffice $Item.ReferenceAddress}}
- {{location $Item.ReferenceAddress}}
+ {{militaryAddress $Item.ReferenceAddress}}
{{else}}
diff --git a/api/templates/history-residence.xml b/api/templates/history-residence.xml
index b4e14670d..c10f6b78c 100644
--- a/api/templates/history-residence.xml
+++ b/api/templates/history-residence.xml
@@ -5,7 +5,7 @@
{{if locationIsPostOffice $Item.Address}}
- {{location $Item.Address}}
+ {{militaryAddress $Item.Address}}
{{textarea $Item.Comments}}
{{else}}
@@ -20,7 +20,7 @@
{{if locationIsPostOffice $Item.ReferenceAddress}}
- {{location $Item.ReferenceAddress}}
+ {{militaryAddress $Item.ReferenceAddress}}
{{textarea $Item.Comments}}
{{else}}
diff --git a/api/templates/identification-haircolor.xml b/api/templates/identification-haircolor.xml
index 875cfe027..4efa92272 100644
--- a/api/templates/identification-haircolor.xml
+++ b/api/templates/identification-haircolor.xml
@@ -1 +1 @@
-{{ radio . }}
+{{radio . | hairType}}
diff --git a/api/templates/location-address-apofpo-state-zipcode.xml b/api/templates/location-address-apofpo-state-zipcode.xml
new file mode 100644
index 000000000..8ed4da924
--- /dev/null
+++ b/api/templates/location-address-apofpo-state-zipcode.xml
@@ -0,0 +1,4 @@
+{{.props.street}}
+{{.props.city}}
+{{toUpper .props.state}}
+{{.props.zipcode}}
diff --git a/api/templates/relatives-and-associates.xml b/api/templates/relatives-and-associates.xml
index be8ebee8d..a74d68e59 100644
--- a/api/templates/relatives-and-associates.xml
+++ b/api/templates/relatives-and-associates.xml
@@ -59,7 +59,7 @@
{{if not $deceased }}
{{if locationIsPostOffice $Item.Address}}
- {{location $Item.Address}}
+ {{militaryAddress $Item.Address}}
diff --git a/api/templates/spouse-present-marriage.xml b/api/templates/spouse-present-marriage.xml
index fcca79cd6..0a3618ec9 100644
--- a/api/templates/spouse-present-marriage.xml
+++ b/api/templates/spouse-present-marriage.xml
@@ -4,7 +4,7 @@
{{if locationIsPostOffice $Item.Address}}
- {{location $Item.Address}}
+ {{militaryAddress $Item.Address}}
diff --git a/api/templates/substance-drug-ordered.xml b/api/templates/substance-drug-ordered.xml
index adf95f4e9..945f237a9 100644
--- a/api/templates/substance-drug-ordered.xml
+++ b/api/templates/substance-drug-ordered.xml
@@ -33,10 +33,7 @@
{{textarea $Item.Explanation}}
-
-
- {{radio $Item.DrugType}}
-
+ {{tmpl "drug.xml" $Item.DrugType}}
{{if branch $Item.ActionTaken | eq "Yes"}}
diff --git a/api/templates/substance-drug-purchase.xml b/api/templates/substance-drug-purchase.xml
index e15f546a4..f44f78cec 100644
--- a/api/templates/substance-drug-purchase.xml
+++ b/api/templates/substance-drug-purchase.xml
@@ -5,10 +5,7 @@
{{range $index, $item := .props.List.props.items}}
{{with $Item := $item.Item}}
-
-
- {{radio $Item.DrugType}}
-
+ {{tmpl "drug.xml" $Item.DrugType}}
{{monthYear $Item.FirstInvolvement}}{{monthYear $Item.RecentInvolvement}}{{textarea $Item.NatureOfInvolvement}}
diff --git a/api/templates/substance-drug-usage.xml b/api/templates/substance-drug-usage.xml
index 17f9e6725..ee30ed3c1 100644
--- a/api/templates/substance-drug-usage.xml
+++ b/api/templates/substance-drug-usage.xml
@@ -5,10 +5,7 @@
{{range $index, $item := .props.List.props.items}}
{{with $Item := $item.Item}}
-
-
- {{radio $Item.DrugType}}
-
+ {{tmpl "drug-used.xml" $Item.DrugType}}
{{monthYear $Item.FirstUse}}{{monthYear $Item.RecentUse}}{{textarea $Item.NatureOfUse}}
diff --git a/api/templates/substance-drug-voluntary.xml b/api/templates/substance-drug-voluntary.xml
index 15ed95826..69c25ade6 100644
--- a/api/templates/substance-drug-voluntary.xml
+++ b/api/templates/substance-drug-voluntary.xml
@@ -5,10 +5,7 @@
{{range $index, $item := .props.List.props.items}}
{{with $Item := $item.Item}}
-
- {{radio $Item.DrugType}}
-
-
+ {{tmpl "drug.xml" $Item.DrugType}}
{{doctorLastName $Item.TreatmentProvider}}
diff --git a/api/testdata/complete-scenarios/test5.xml b/api/testdata/complete-scenarios/test5.xml
index 6109fe360..1ac7277ac 100644
--- a/api/testdata/complete-scenarios/test5.xml
+++ b/api/testdata/complete-scenarios/test5.xml
@@ -4274,10 +4274,6 @@
Doctor said I needed to go
-
-
-
-
diff --git a/api/testdata/complete-scenarios/test7.json b/api/testdata/complete-scenarios/test7.json
new file mode 100644
index 000000000..0ef44c890
--- /dev/null
+++ b/api/testdata/complete-scenarios/test7.json
@@ -0,0 +1,17636 @@
+{
+ "Citizenship": {
+ "Comments": {
+ "type": "citizenship.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ }
+ }
+ },
+ "Multiple": {
+ "type": "citizenship.multiple",
+ "props": {
+ "HasMultiple": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Russia"
+ ]
+ }
+ },
+ "Current": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "CurrentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "How": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Renounced": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "RenouncedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Dominica"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Current": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "CurrentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "How": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Renounced": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "RenouncedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Passports": {
+ "type": "citizenship.passports",
+ "props": {
+ "Passports": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Countries": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Falkland Islands Islas Malvinas"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2006",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Djibouti"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2006",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2007",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Zimbabwe"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2006",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Romania"
+ ]
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2020",
+ "estimated": true
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "City, Country",
+ "city": "PASSPORT CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Oman",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "PASSPORT NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "PASSPORT NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "PASSPORT NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "Number": {
+ "type": "text",
+ "props": {
+ "value": "PASSPORT CARD NUMBER 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100"
+ }
+ },
+ "Used": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Countries": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Bahamas, The"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "City, Country",
+ "city": "PASSPORT 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Portugal",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "PASSPORT TWO NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "PASSPORT TWO NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "PASSPORT TWO NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VI",
+ "suffixOther": ""
+ }
+ },
+ "Number": {
+ "type": "text",
+ "props": {
+ "value": "PASSPORT 2 NUMBER XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Used": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Countries": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Number": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Used": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Status": {
+ "type": "citizenship.status",
+ "props": {
+ "CitizenshipStatus": {
+ "type": "radio",
+ "props": {
+ "value": "Derived",
+ "checked": true
+ }
+ },
+ "AbroadDocumentation": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentIssued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "DocumentName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "DocumentExpiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "DocumentType": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "PlaceIssued": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CertificateNumber": {
+ "type": "text",
+ "props": {
+ "value": "999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999911"
+ }
+ },
+ "CertificateIssued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CertificateName": {
+ "type": "name",
+ "props": {
+ "first": "CIT DOC NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "CIT DOC NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "COT DOC NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "CertificateCourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "CertificateCourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "BornOnMilitaryInstallation": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "MilitaryBase": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "EntryDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "EntryLocation": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "PriorCitizenship": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "HasAlienRegistration": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "AlienRegistrationNumber": {
+ "type": "text",
+ "props": {
+ "value": "777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777700"
+ }
+ },
+ "AlienRegistrationExpiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Basis": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "PermanentResidentCardNumber": {
+ "type": "text",
+ "props": {
+ "value": "888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888811"
+ }
+ },
+ "ResidenceStatus": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ },
+ "Financial": {
+ "Bankruptcy": {
+ "type": "financial.bankruptcy",
+ "props": {
+ "HasBankruptcy": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20011",
+ "country": "United States"
+ }
+ },
+ "CourtInvolved": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "DateDischarged": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "DateDischargedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "DateFiled": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "DischargeExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "HasDischargeExplanation": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "NameDebt": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "I",
+ "suffixOther": ""
+ }
+ },
+ "PetitionType": {
+ "type": "radio",
+ "props": {
+ "value": "Chapter7",
+ "checked": true
+ }
+ },
+ "TotalAmount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "Trustee": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "TrusteeAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "Monterey",
+ "state": "CA",
+ "zipcode": "93940",
+ "country": "United States"
+ }
+ },
+ "CourtInvolved": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "DateDischarged": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "DateDischargedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "DateFiled": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "DischargeExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "HasDischargeExplanation": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "NameDebt": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "PetitionType": {
+ "type": "radio",
+ "props": {
+ "value": "Chapter11",
+ "checked": true
+ }
+ },
+ "TotalAmount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "Trustee": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "TrusteeAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Card": {
+ "type": "financial.card",
+ "props": {
+ "HasCardAbuse": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "WI",
+ "zipcode": "53533",
+ "country": "United States"
+ }
+ },
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "Pacific Grove",
+ "state": "CA",
+ "zipcode": "93950",
+ "country": "United States"
+ }
+ },
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Comments": {
+ "type": "financial.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Credit": {
+ "type": "financial.credit",
+ "props": {
+ "HasCreditCounseling": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "City, State",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DE"
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "5555555555",
+ "extension": "555555555",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "City, State",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "SC"
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Delinquent": {
+ "type": "financial.delinquent",
+ "props": {
+ "HasDelinquent": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "AccountNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "PA",
+ "zipcode": "15411",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Infractions": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Alimony",
+ "Judgement",
+ "Lien",
+ "Federal"
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "PropertyType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Resolved": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "ResolvedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Status": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "AccountNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DE",
+ "zipcode": "19811",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Infractions": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Alimony",
+ "Judgement",
+ "Lien",
+ "Federal"
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "PropertyType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Resolved": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "ResolvedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "Status": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Gambling": {
+ "type": "financial.gambling",
+ "props": {
+ "HasGamblingDebt": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Actions": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Losses": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Actions": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Losses": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Nonpayment": {
+ "type": "financial.nonpayment",
+ "props": {
+ "HasNonpayment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "AccountNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2012",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Infractions": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Repossession",
+ "Defaulted",
+ "Collections",
+ "Cancelled",
+ "Evicted",
+ "Garnished",
+ "Delinquent",
+ "Any"
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "PropertyType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Resolved": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "ResolvedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Status": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "AccountNumber": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Infractions": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Repossession",
+ "Defaulted",
+ "Collections",
+ "Cancelled",
+ "Evicted",
+ "Garnished",
+ "Delinquent",
+ "Any"
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "PropertyType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Resolved": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "ResolvedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Status": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Taxes": {
+ "type": "financial.taxes",
+ "props": {
+ "HasTaxes": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "DateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Failure": {
+ "type": "radio",
+ "props": {
+ "value": "Both"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TaxType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Year": {
+ "type": "number",
+ "props": {
+ "value": "2015"
+ }
+ },
+ "YearEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "Foreign": {
+ "Advice": {
+ "type": "foreign.business.advice",
+ "props": {
+ "HasForeignAdvice": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Compensation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Description": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "I",
+ "suffixOther": ""
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Compensation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Dhekelia Sovereign Base Area"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Description": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "BenefitActivity": {
+ "type": "foreign.activities.benefits",
+ "props": {
+ "HasBenefits": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "BenefitFrequency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "BenefitType": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "ContinuingBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "FutureBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Yourself"
+ ]
+ }
+ },
+ "OneTimeBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "OtherBenefit": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OtherBenefitType": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "BenefitFrequency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "BenefitType": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "ContinuingBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "FutureBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "DependentChildren"
+ ]
+ }
+ },
+ "OneTimeBenefit": {
+ "type": "benefit",
+ "props": {
+ "Began": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "End": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherFrequency": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Received": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Obligated": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ObligatedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "OtherBenefit": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OtherBenefitType": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Comments": {
+ "type": "foreign.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Conferences": {
+ "type": "foreign.business.conferences",
+ "props": {
+ "HasForeignConferences": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "City": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Contacts": {
+ "type": "contacts",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Cambodia"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Purpose": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Sponsor": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "City": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Contacts": {
+ "type": "contacts",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Cambodia"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Purpose": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Sponsor": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Contact": {
+ "type": "foreign.business.contact",
+ "props": {
+ "HasForeignContact": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Establishment": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Governments": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Falkland Islands Islas Malvinas",
+ "Gabon",
+ "Haiti",
+ "Taiwan",
+ "Reunion",
+ "East Timor"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20422",
+ "country": "United States"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "II",
+ "suffixOther": ""
+ }
+ },
+ "Purpose": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Representatives": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "SubsequentContacts": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Establishment": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Governments": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark",
+ "Saint Barthelemy",
+ "Bahrain"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Gabon",
+ "countryComments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "VIII",
+ "suffixOther": ""
+ }
+ },
+ "Purpose": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Representatives": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "SubsequentContacts": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": "0No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Future": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Recent": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Subsequent": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Contacts": {
+ "type": "foreign.contacts",
+ "props": {
+ "HasForeignContacts": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FC STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FC APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FC CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "PA",
+ "zipcode": "15509",
+ "country": "United States"
+ }
+ },
+ "AddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Affiliations": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Aliases": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Alias": {
+ "type": "name",
+ "props": {
+ "first": "FOREIGN CONTACT FIRST NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FOREIGN CONTACT MIDDLE NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FOREIGN CONTACT LAST NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Alias": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1900",
+ "estimated": true
+ }
+ },
+ "BirthdateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "City, Country",
+ "city": "FOREIGN CONTACT CIB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Romania",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "BirthplaceNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Papua New Guinea",
+ "Reunion",
+ "Gabon",
+ "Vatican City",
+ "Ecuador"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Employer": {
+ "type": "text",
+ "props": {
+ "value": "FC EMPLOYER NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "EmployerAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FC EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FC EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FC EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "JQ",
+ "zipcode": "88888",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "EmployerAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "FirstContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "FrequencyExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "HasAffiliations": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "LastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Methods": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "MethodsExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Foreign Contact FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FOREIGN CONTACT MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FOREIGN CONTACT LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "V",
+ "suffixOther": ""
+ }
+ },
+ "NameExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NameNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Relationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "RelationshipExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FC STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FC APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FC CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "PA",
+ "zipcode": "15222",
+ "country": "United States"
+ }
+ },
+ "AddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Affiliations": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Aliases": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Alias": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1850",
+ "estimated": true
+ }
+ },
+ "BirthdateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "City, Country",
+ "city": "FC TWO COB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Djibouti",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "BirthplaceNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Faroe Islands",
+ "Heard Island and McDonald Islands",
+ "Kenya"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Employer": {
+ "type": "text",
+ "props": {
+ "value": "FC TWO EMPL NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "EmployerAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FC EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FC EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FC EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "JQ",
+ "zipcode": "88888",
+ "country": "United States"
+ }
+ },
+ "EmployerAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "FirstContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "FrequencyExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "HasAffiliations": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "LastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2008",
+ "estimated": true
+ }
+ },
+ "Methods": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "MethodsExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FC TWO FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FC TWO MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FC TWO LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "NameExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NameNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Relationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "RelationshipExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "DirectActivity": {
+ "type": "foreign.activities.direct",
+ "props": {
+ "HasInterests": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Acquired": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CoOwners": {
+ "type": "coowners",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "COOWNER FOREIGN INTEREST STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "COOWNER FOREIGN INTEREST APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "COOWNER FOREIGN INTEREST CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "TN",
+ "zipcode": "37400",
+ "country": "United States"
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Gambia, The",
+ "Tajikistan",
+ "Ukraine",
+ "Kenya",
+ "Nauru",
+ "Bahrain",
+ "Faroe Islands",
+ "Romania",
+ "Ecuador",
+ "Jan Mayen",
+ "Laos",
+ "Palau",
+ "Oman",
+ "India",
+ "Yemen",
+ "Taiwan",
+ "Reunion",
+ "East Timor",
+ "Wallis and Futuna",
+ "Qatar",
+ "Afghanistan",
+ "Saint Barthelemy",
+ "Denmark",
+ "Falkland Islands Islas Malvinas",
+ "Gabon",
+ "Haiti",
+ "Jamaica",
+ "Kazakhstan",
+ "Macau",
+ "Namibia",
+ "Bahamas, The",
+ "Vanuatu",
+ "Cambodia",
+ "Zambia"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "COOWNER FOREIGN INTEREST FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "COOWNER FOREIGN INTEREST MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "COOWNER FOREIGN INTEREST LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Other",
+ "suffixOther": "No American can study the character and career of Abraham Lincoln without being carried away by sent"
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Cost": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "CostEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "HowAcquired": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InterestType": {
+ "type": "text",
+ "props": {
+ "value": "TYPE OF FINANCIAL INTEREST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Yourself"
+ ]
+ }
+ },
+ "Relinquished": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "RelinquishedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Acquired": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CoOwners": {
+ "type": "coowners",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Cost": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "CostEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "HowAcquired": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InterestType": {
+ "type": "text",
+ "props": {
+ "value": "TYPE OF FOREIGN INTEREST TWO No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of"
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Cohabitant"
+ ]
+ }
+ },
+ "Relinquished": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "RelinquishedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Employment": {
+ "type": "foreign.business.employment",
+ "props": {
+ "HasForeignEmployment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Accepted": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "PR",
+ "zipcode": "00633",
+ "country": "United States"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Accepted": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Dhekelia Sovereign Base Area",
+ "countryComments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Family": {
+ "type": "foreign.business.family",
+ "props": {
+ "HasForeignFamily": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Dominica"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Pakistan"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "IndirectActivity": {
+ "type": "foreign.activities.indirect",
+ "props": {
+ "HasInterests": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Acquired": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "CoOwners": {
+ "type": "coowners",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "INDIRECT COOWNER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "INDIRECT COOWNER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "INDIRECT COOWNER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "RI",
+ "zipcode": "02922",
+ "country": "United States"
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Qatar",
+ "Wallis and Futuna",
+ "East Timor",
+ "Reunion",
+ "Taiwan",
+ "Yemen",
+ "Uganda",
+ "Iceland",
+ "Oman",
+ "Pakistan",
+ "Afghanistan",
+ "Saint Barthelemy",
+ "Denmark",
+ "Falkland Islands Islas Malvinas",
+ "Gabon",
+ "Haiti",
+ "Jamaica",
+ "Kazakhstan",
+ "Laos",
+ "Macau",
+ "Namibia",
+ "Bahamas, The",
+ "Vanuatu",
+ "Cambodia",
+ "Zambia"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "INDIRECT COOWNER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "INDIRECT COOWNER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "INDIRECT COOWNER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "IX",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Cost": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "CostEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Firstname": {
+ "type": "text",
+ "props": {
+ "value": "INDIRECT FINANCIAL FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "HowAcquired": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InterestType": {
+ "type": "text",
+ "props": {
+ "value": "INDIRECT FINANCIAL INTEREST No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of s"
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Yourself"
+ ]
+ }
+ },
+ "Lastname": {
+ "type": "text",
+ "props": {
+ "value": "INDIRECT FINANCIAL LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Sold": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "SoldNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Passport": {
+ "type": "foreign.passport",
+ "props": {
+ "HasPassports": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Other....FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFmm",
+ "firstInitialOnly": false,
+ "middle": "Other Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "Other Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "Card": {
+ "type": "radio",
+ "props": {
+ "value": "Book",
+ "checked": true
+ }
+ },
+ "Number": {
+ "type": "text",
+ "props": {
+ "value": "C11111111"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1991",
+ "estimated": true
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Political": {
+ "type": "foreign.business.political",
+ "props": {
+ "HasForeignPolitical": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Eligibility": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Dhekelia Sovereign Base Area"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Eligibility": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "RealEstateActivity": {
+ "type": "foreign.activities.realestate",
+ "props": {
+ "HasInterests": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Acquired": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Street, City, Country",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Falkland Islands Islas Malvinas",
+ "countryComments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "CoOwners": {
+ "type": "coowners",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "PA",
+ "zipcode": "15202",
+ "country": "United States"
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Romania"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34033",
+ "country": "POSTOFFICE"
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Cost": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "CostEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "HowAcquired": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Yourself"
+ ]
+ }
+ },
+ "RealEstateType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Sold": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "SoldNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Acquired": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Street, City, Country",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Denmark",
+ "countryComments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "CoOwners": {
+ "type": "coowners",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Countries": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "RelationshipNature": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Cost": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "CostEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": "",
+ "checked": true
+ }
+ },
+ "HowAcquired": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InterestTypes": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "DependentChildren"
+ ]
+ }
+ },
+ "RealEstateType": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Sold": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "SoldNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Value": {
+ "type": "number",
+ "props": {
+ "value": ""
+ }
+ },
+ "ValueEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Sponsorship": {
+ "type": "foreign.business.sponsorship",
+ "props": {
+ "HasForeignSponsorship": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34003",
+ "country": "POSTOFFICE"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "BirthdateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20488",
+ "country": "United States"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark",
+ "Falkland Islands Islas Malvinas",
+ "Gabon"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "OrganizationAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Denmark"
+ }
+ },
+ "OrganizationAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "OrganizationNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Residence": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20001",
+ "country": "United States"
+ }
+ },
+ "Sponsorship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Stay": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "SC",
+ "zipcode": "29544",
+ "country": "United States"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "BirthdateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "VA",
+ "zipcode": "22402",
+ "country": "United States"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark",
+ "Saint Barthelemy",
+ "East Timor"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "I",
+ "suffixOther": ""
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "OrganizationAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DQ",
+ "zipcode": "55555",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "OrganizationAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "OrganizationNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Residence": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "33233",
+ "country": "United States"
+ }
+ },
+ "Sponsorship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Stay": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DE",
+ "zipcode": "19988",
+ "country": "United States"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "BirthdateNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DE",
+ "zipcode": "19933",
+ "country": "United States"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Afghanistan",
+ "Vanuatu",
+ "East Timor"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "OrganizationAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "AK",
+ "zipcode": "99677",
+ "country": "United States"
+ }
+ },
+ "OrganizationAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "OrganizationNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Residence": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "PR",
+ "zipcode": "00688",
+ "country": "United States"
+ }
+ },
+ "Sponsorship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Stay": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Support": {
+ "type": "foreign.activities.support",
+ "props": {
+ "HasForeignSupport": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "PA",
+ "zipcode": "15433",
+ "country": "United States"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "2147483647"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Cambodia"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Frequency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Other",
+ "suffixOther": "No American can study the character and career of Abraham Lincoln without being carried away by sent"
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "VA",
+ "zipcode": "22102",
+ "country": "United States"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Frequency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34033",
+ "country": "POSTOFFICE"
+ }
+ },
+ "Amount": {
+ "type": "number",
+ "props": {
+ "value": "1"
+ }
+ },
+ "AmountEstimated": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Frequency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Travel": {
+ "type": "foreign.travel",
+ "props": {
+ "HasForeignTravelOutside": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "HasForeignTravelOfficial": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Contacted": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "ContactedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Counter": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "CounterExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Days": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "More than 30",
+ "Many short trips",
+ "1-5",
+ "6-10",
+ "11-20",
+ "21-30"
+ ]
+ }
+ },
+ "Encounter": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "EncounterExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Interest": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InterestExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Purpose": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Business",
+ "Volunteer",
+ "Education",
+ "Tourism",
+ "Conference",
+ "Family",
+ "Other"
+ ]
+ }
+ },
+ "Questioned": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "QuestionedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Sensitive": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "SensitiveExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Threatened": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "ThreatenedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Contacted": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "ContactedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Counter": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "CounterExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "East Timor"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "28",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Days": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "1-5",
+ "6-10",
+ "11-20",
+ "Many short trips",
+ "More than 30",
+ "21-30"
+ ]
+ }
+ },
+ "Encounter": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "EncounterExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Interest": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InterestExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Purpose": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Business",
+ "Volunteer",
+ "Education",
+ "Family",
+ "Conference",
+ "Tourism",
+ "Other"
+ ]
+ }
+ },
+ "Questioned": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "QuestionedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Sensitive": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "SensitiveExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Threatened": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "ThreatenedExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Ventures": {
+ "type": "foreign.business.ventures",
+ "props": {
+ "HasForeignVentures": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20422",
+ "country": "United States"
+ }
+ },
+ "Association": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Gabon",
+ "Denmark",
+ "East Timor",
+ "Reunion",
+ "Yemen",
+ "Uganda",
+ "Iceland",
+ "Oman",
+ "Pakistan"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Compensation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "I",
+ "suffixOther": ""
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Service": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Support": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34033",
+ "country": "POSTOFFICE"
+ }
+ },
+ "Association": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Denmark",
+ "Falkland Islands Islas Malvinas",
+ "Gabon",
+ "Haiti",
+ "Jamaica"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Compensation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "firstInitialOnly": false,
+ "middle": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "lastInitialOnly": false,
+ "suffix": "VIII",
+ "suffixOther": ""
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Relationship": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Service": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Support": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Voting": {
+ "type": "foreign.business.voting",
+ "props": {
+ "HasForeignVoting": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Wallis and Futuna"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Eligibility": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Saint Barthelemy"
+ ],
+ "comments": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Eligibility": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "History": {
+ "Comments": {
+ "type": "history.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ }
+ }
+ },
+ "Education": {
+ "type": "history.education",
+ "props": {
+ "HasAttended": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "HasDegree10": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "EDUC 1 ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "EDUC 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "EDUC 1 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "NJ",
+ "zipcode": "08111",
+ "country": "United States"
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Diplomas": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Diploma": {
+ "type": "radio",
+ "props": {
+ "value": "Master",
+ "checked": true
+ }
+ },
+ "DiplomaOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Diploma": {
+ "type": "radio",
+ "props": {
+ "value": "Doctorate",
+ "checked": true
+ }
+ },
+ "DiplomaOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Diploma": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "DiplomaOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "EDUC 1 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "EDUC 1 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "EDUC 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "EDUC 1 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "GA",
+ "zipcode": "30922",
+ "country": "United States"
+ }
+ },
+ "ReferenceEmail": {
+ "type": "email",
+ "props": {
+ "value": "e@e.millllllllllllllllllllllllllllllllllllllll"
+ }
+ },
+ "ReferenceEmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "EDUC ONE REFE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "EDUC ONE REFE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "EDUC ONE REFE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "I",
+ "suffixOther": ""
+ }
+ },
+ "ReferenceNameNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "0000000000",
+ "extension": "0000000000",
+ "noNumber": false
+ }
+ },
+ "Type": {
+ "type": "radio",
+ "props": {
+ "value": "High School",
+ "checked": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "EDUC 2 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "EDUC 2 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "EDUC 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "HI",
+ "zipcode": "96833",
+ "country": "United States"
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Diplomas": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Diploma": {
+ "type": "radio",
+ "props": {
+ "value": "High School Diploma",
+ "checked": true
+ }
+ },
+ "DiplomaOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Diploma": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "DiplomaOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "EDUC 2 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "ReferenceEmail": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "ReferenceEmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "ReferenceNameNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "Type": {
+ "type": "radio",
+ "props": {
+ "value": "College",
+ "checked": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Employment": {
+ "type": "history.employment",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Additional": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "STREETXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "APTXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "CITYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "FL",
+ "zipcode": "32101",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DutyStation": {
+ "type": "text",
+ "props": {
+ "value": "duty stationxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxoo"
+ }
+ },
+ "Employment": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmploymentActivity": {
+ "type": "employmentactivity",
+ "props": {
+ "value": "ActiveMilitary"
+ }
+ },
+ "PhysicalAddress": {
+ "type": "physicaladdress",
+ "props": {
+ "HasDifferentAddress": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "ReasonLeft": {
+ "type": "reasonleft",
+ "props": {
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reasons": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Charges"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "This section only takes a very limited number of characters XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Quit"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "Another section with very limited characters... strange... and formats weirdly on the screen XXXXXXX"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "ReasonDescription": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "Reprimand": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "FullTime"
+ }
+ },
+ "Supervisor": {
+ "type": "supervisor",
+ "props": {
+ "SupervisorName": {
+ "type": "text",
+ "props": {
+ "value": "SUPER NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "SUPER RANK XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": "e@e.just"
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "SUPER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "SUPER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "SUPER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "MA",
+ "zipcode": "01701",
+ "country": "United States"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Other",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "rankxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxoo"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Additional": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DutyStation": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Employment": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmploymentActivity": {
+ "type": "employmentactivity",
+ "props": {
+ "value": "Unemployment"
+ }
+ },
+ "PhysicalAddress": {
+ "type": "physicaladdress",
+ "props": {
+ "HasDifferentAddress": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "ReasonLeft": {
+ "type": "reasonleft",
+ "props": {
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reasons": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Fired"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "Funny... this allows for fired from unemployment XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "ReasonDescription": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "UNEMPL REFE STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "UNEMPL REFE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "UNEMPL REFE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "RI",
+ "zipcode": "02911",
+ "country": "United States"
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "UNEMPL REFE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "UNEMPL REFE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "UNEMPL REFE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VIII",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Work",
+ "number": "8888888888",
+ "extension": "8888888888",
+ "noNumber": false
+ }
+ },
+ "Reprimand": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "Reprimand for unemployment... and very short character acceptance XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "Supervisor": {
+ "type": "supervisor",
+ "props": {
+ "SupervisorName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Additional": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "SELF EMPL STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "SELF EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "SELF EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Croatia"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DutyStation": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Employment": {
+ "type": "text",
+ "props": {
+ "value": "SELF XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "EmploymentActivity": {
+ "type": "employmentactivity",
+ "props": {
+ "value": "SelfEmployment"
+ }
+ },
+ "PhysicalAddress": {
+ "type": "physicaladdress",
+ "props": {
+ "HasDifferentAddress": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "SELF EMPL XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "SELF EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "SELF EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "NC",
+ "zipcode": "27301",
+ "country": "United States"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "9999999999",
+ "extension": "9999999999",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "ReasonLeft": {
+ "type": "reasonleft",
+ "props": {
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reasons": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Fired"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "SELF EMPLP FIRED XXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXX"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "ReasonDescription": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "SELF VERI ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34001",
+ "country": "POSTOFFICE"
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "SELF EMPL VERI FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "SELF EMPL VERY MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "SELF EMPL VERI LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "V",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "9999999999",
+ "extension": "9999999999",
+ "noNumber": false
+ }
+ },
+ "Reprimand": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": "SELF EMPL REPRIMAND MYSELF I WAS born in the year 1632, in the city of York, of a good family, \nthou"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "FullTime"
+ }
+ },
+ "Supervisor": {
+ "type": "supervisor",
+ "props": {
+ "SupervisorName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Other",
+ "number": "3333333333",
+ "extension": "3333333333",
+ "noNumber": false
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "SELF POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Additional": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "DatesEmployed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "vmvbmbvmbvmvbm"
+ }
+ },
+ "Supervisor": {
+ "type": "text",
+ "props": {
+ "value": "bvnmvbmvbmvbmbvmvbnm"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesEmployed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "xcvbxcvxcvb"
+ }
+ },
+ "Supervisor": {
+ "type": "text",
+ "props": {
+ "value": "xcvxcbcvbxcbxc"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesEmployed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Supervisor": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "ddd",
+ "street2": "dd",
+ "city": "ddd",
+ "state": "DC",
+ "zipcode": "20399",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DutyStation": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Employment": {
+ "type": "text",
+ "props": {
+ "value": "zsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfsdhhhhhhhhhhhhhhffffffffffffffffffffffffffffffffffffffzdhssdfhsdfgh"
+ }
+ },
+ "EmploymentActivity": {
+ "type": "employmentactivity",
+ "props": {
+ "value": "NonGovernment"
+ }
+ },
+ "PhysicalAddress": {
+ "type": "physicaladdress",
+ "props": {
+ "HasDifferentAddress": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "ReasonLeft": {
+ "type": "reasonleft",
+ "props": {
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Reasons": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "ReasonDescription": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "Reprimand": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Text": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "FullTime"
+ }
+ },
+ "Supervisor": {
+ "type": "supervisor",
+ "props": {
+ "SupervisorName": {
+ "type": "text",
+ "props": {
+ "value": "dfgdfgdfgdfgzgf dzsg dfg dfg zdg "
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "dfgdfgdfg"
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "ddd",
+ "street2": "dd",
+ "city": "ddd",
+ "state": "DC",
+ "zipcode": "20412",
+ "country": "United States"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "5555555555",
+ "extension": "5555",
+ "noNumber": false
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "ghfghdfhghdfghdghdfghdfghghghdghdfghghghdfghdfghdghdghdfgghjgjgfjgfhjgfhjgfhjgfhjhjghjghjghjghjghjgfhjghjghjghjhjgfhjjgfhjhjgfjgjghjghjgjgjgfhjgfhjfghjgfj"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "EmploymentRecord": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ },
+ "Federal": {
+ "type": "history.federal",
+ "props": {
+ "HasFederalService": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FED SERVICE STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FED SERVICE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FED SERVICE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "United Arab Emirates"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "FED AGENCY NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "FED POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FED SERVICE 2 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FED SERVICE 2 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FED SERVICE 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "SC",
+ "zipcode": "29611",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "FED SERVICE 2 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Position": {
+ "type": "text",
+ "props": {
+ "value": "FED SERVICE 2 POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Residence": {
+ "type": "history.residence",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "RESI 1 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "RESI 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "RESI 1 City XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "PA",
+ "zipcode": "15007",
+ "country": "United States"
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "1991",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "ReferenceEmail": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "ReferenceEmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferenceLastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhoneDay": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneEvening": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneMobile": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferenceRelationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "ReferenceRelationshipComments": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "ReferenceRelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Role": {
+ "type": "radio",
+ "props": {
+ "value": "Own",
+ "checked": true
+ }
+ },
+ "RoleOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "RESI 2 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34033",
+ "country": "POSTOFFICE"
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "ReferenceEmail": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "ReferenceEmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferenceLastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhoneDay": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneEvening": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneMobile": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ },
+ "ReferenceRelationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "ReferenceRelationshipComments": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "ReferenceRelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Role": {
+ "type": "radio",
+ "props": {
+ "value": "Rent",
+ "checked": true
+ }
+ },
+ "RoleOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "RESI 3 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "RESI 3 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "RESI 3 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Gabon"
+ }
+ },
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "ReferenceAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "StreetXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "APTXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "CITYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "GA",
+ "zipcode": "30422",
+ "country": "United States"
+ }
+ },
+ "ReferenceEmail": {
+ "type": "email",
+ "props": {
+ "value": "ed@ed.com"
+ }
+ },
+ "ReferenceEmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ReferenceLastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "ReferenceName": {
+ "type": "name",
+ "props": {
+ "first": "RESI FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "RESI MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "RESI LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "ReferencePhoneDay": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneEvening": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ },
+ "ReferencePhoneMobile": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Work",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ },
+ "ReferenceRelationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Friend"
+ ]
+ }
+ },
+ "ReferenceRelationshipComments": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "ReferenceRelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Role": {
+ "type": "radio",
+ "props": {
+ "value": "MilitaryHousing",
+ "checked": true
+ }
+ },
+ "RoleOther": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "Identification": {
+ "ApplicantBirthDate": {
+ "type": "identification.birthdate",
+ "props": {
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1980",
+ "estimated": false
+ }
+ },
+ "Confirmed": {
+ "type": "checkbox",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "ApplicantBirthPlace": {
+ "type": "identification.birthplace",
+ "props": {
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace",
+ "city": "BoyersXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "PA",
+ "county": "ButlerXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "United States"
+ }
+ }
+ }
+ },
+ "ApplicantName": {
+ "type": "identification.name",
+ "props": {
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Giant......fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffoo",
+ "firstInitialOnly": false,
+ "middle": "Blowout......mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmaa",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "Case.....aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabb",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ }
+ }
+ },
+ "ApplicantSSN": {
+ "type": "identification.ssn",
+ "props": {
+ "ssn": {
+ "type": "ssn",
+ "props": {
+ "first": "321",
+ "middle": "71",
+ "last": "7812",
+ "notApplicable": false
+ }
+ },
+ "verified": true
+ }
+ },
+ "Comments": {
+ "type": "identification.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "a comment to clarify any of your responses in the information about you section. of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ }
+ }
+ },
+ "Contacts": {
+ "type": "identification.contacts",
+ "props": {
+ "HomeEmail": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "WorkEmail": {
+ "type": "email",
+ "props": {
+ "value": ""
+ }
+ },
+ "PhoneNumbers": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Work",
+ "number": "5555555555",
+ "extension": "1111111111",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "5555555555",
+ "extension": "2222222222",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "5555555555",
+ "extension": "3333333333",
+ "noNumber": false
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "OtherNames": {
+ "type": "identification.othernames",
+ "props": {
+ "HasOtherNames": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "09",
+ "day": "09",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "MaidenName": {
+ "type": "radio",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Other....FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFmm",
+ "firstInitialOnly": false,
+ "middle": "Other Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "Other Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "MaidenName": {
+ "type": "radio",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Second Other Name Used....CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCXX",
+ "firstInitialOnly": false,
+ "middle": "Second Other Name Used Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "Second Other Name Used Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Second other name used comment XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "02",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "MaidenName": {
+ "type": "radio",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "Third other name used first....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "Third Other Name Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "Third Other Name Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "Third Other Name CommentXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Physical": {
+ "type": "identification.physical",
+ "props": {
+ "Comments": {
+ "type": "textarea",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "EyeColor": {
+ "type": "text",
+ "props": {
+ "value": "Unknown"
+ }
+ },
+ "HairColor": {
+ "type": "text",
+ "props": {
+ "value": "Unknown"
+ }
+ },
+ "Height": {
+ "type": "height",
+ "props": {
+ "feet": 9,
+ "inches": 11
+ }
+ },
+ "Sex": {
+ "type": "text",
+ "props": {
+ "value": "Male"
+ }
+ },
+ "Weight": {
+ "type": "number",
+ "props": {
+ "value": "999"
+ }
+ }
+ }
+ }
+ },
+ "Legal": {
+ "ActivitiesToOverthrow": {
+ "type": "legal.associations.activities-to-overthrow",
+ "props": {
+ "HasActivities": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Advocating": {
+ "type": "legal.associations.advocating",
+ "props": {
+ "HasAdvocated": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Comments": {
+ "type": "legal.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ }
+ }
+ },
+ "Debarred": {
+ "type": "legal.investigations.debarred",
+ "props": {
+ "HasDebarment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "EngagedInTerrorism": {
+ "type": "legal.associations.engaged-in-terrorism",
+ "props": {
+ "HasEngaged": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "History": {
+ "type": "legal.investigations.history",
+ "props": {
+ "HasHistory": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Agency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "AgencyExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "AgencyNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "ClearanceLevel": {
+ "type": "clearancelevel",
+ "props": {
+ "Level": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ "ClearanceLevelNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Completed": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CompletedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Granted": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "GrantedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Issued": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Agency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "AgencyExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "AgencyNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "ClearanceLevel": {
+ "type": "clearancelevel",
+ "props": {
+ "Level": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ "ClearanceLevelNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Completed": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CompletedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Granted": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "GrantedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Issued": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Manipulating": {
+ "type": "legal.technology.manipulating",
+ "props": {
+ "HasManipulating": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DE",
+ "zipcode": "19822",
+ "country": "United States"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "APO",
+ "state": "AE",
+ "zipcode": "09132",
+ "country": "POSTOFFICE"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "MembershipOverthrow": {
+ "type": "legal.associations.membership-overthrow",
+ "props": {
+ "HasOverthrow": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20011",
+ "country": "United States"
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "1"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20012",
+ "country": "United States"
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "54"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "MembershipViolence": {
+ "type": "legal.associations.membership-violence-or-force",
+ "props": {
+ "HasViolence": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20013",
+ "country": "United States"
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "654"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20034",
+ "country": "United States"
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "5"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "NonCriminalCourtActions": {
+ "type": "legal.court",
+ "props": {
+ "HasCourtActions": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "CivilActionDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20009",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "NatureOfAction": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "PrincipalPartyNames": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "ResultsOfAction": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CivilActionDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20009",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "NatureOfAction": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "PrincipalPartyNames": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "ResultsOfAction": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "PoliceDomesticViolence": {
+ "type": "legal.police.domesticviolence",
+ "props": {
+ "HasDomesticViolence": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "33901",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "33901",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Issued": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "PoliceOffenses": {
+ "type": "legal.police.offenses",
+ "props": {
+ "HasOffenses": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "33902",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "AgencyAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "RI",
+ "zipcode": "02922",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "AwaitingTrial": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "AwaitingTrialExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "ChargeType": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "CitedBy": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "32232",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "CourtCharge": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtOutcome": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "InvolvedFirearms": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedSubstances": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedViolence": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Sentence": {
+ "type": "sentence",
+ "props": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "ExceedsYear": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Incarcerated": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "IncarcerationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "IncarcerationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "ProbationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "ProbationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ }
+ }
+ },
+ "WasCharged": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "WasCited": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "WasSentenced": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Djibouti"
+ }
+ },
+ "AgencyAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AE",
+ "zipcode": "09022",
+ "country": "POSTOFFICE",
+ "validated": true
+ }
+ },
+ "AwaitingTrial": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "AwaitingTrialExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "ChargeType": {
+ "type": "radio",
+ "props": {
+ "value": "Felony",
+ "checked": true
+ }
+ },
+ "CitedBy": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "AK",
+ "zipcode": "99522",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "CourtCharge": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtOutcome": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "InvolvedFirearms": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedSubstances": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedViolence": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Sentence": {
+ "type": "sentence",
+ "props": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "ExceedsYear": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Incarcerated": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "IncarcerationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "IncarcerationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "ProbationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "ProbationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ }
+ }
+ },
+ "WasCharged": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "WasCited": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "WasSentenced": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "PoliceOtherOffenses": {
+ "type": "legal.police.additionaloffenses",
+ "props": {
+ "HasOtherOffenses": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "AwaitingTrial": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "AwaitingTrialExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "ChargeType": {
+ "type": "radio",
+ "props": {
+ "value": "Felony",
+ "checked": true
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "32311",
+ "country": "United States"
+ }
+ },
+ "CourtCharge": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CourtOutcome": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "InvolvedFirearms": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedSubstances": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvedViolence": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Sentence": {
+ "type": "sentence",
+ "props": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "ExceedsYear": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Incarcerated": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "IncarcerationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "IncarcerationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "ProbationDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "ProbationDatesNA": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ }
+ }
+ },
+ "WasSentenced": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Revoked": {
+ "type": "legal.investigations.revoked",
+ "props": {
+ "HasRevocations": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Agency": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "TerrorismAssociation": {
+ "type": "legal.associations.terrorism-association",
+ "props": {
+ "HasTerrorism": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ "TerroristOrganization": {
+ "type": "legal.associations.terrorist-organization",
+ "props": {
+ "HasTerrorist": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20412",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20400",
+ "country": "United States"
+ }
+ },
+ "Contributions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "ContributionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Organization": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Positions": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "PositionsNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Unauthorized": {
+ "type": "legal.technology.unauthorized",
+ "props": {
+ "HasUnauthorized": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DE",
+ "zipcode": "19711",
+ "country": "United States",
+ "validated": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "APO",
+ "state": "AE",
+ "zipcode": "09011",
+ "country": "POSTOFFICE",
+ "validated": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Unlawful": {
+ "type": "legal.technology.unlawful",
+ "props": {
+ "HasUnlawful": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DE",
+ "zipcode": "19711",
+ "country": "United States"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Action": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Incident": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "APO",
+ "state": "AE",
+ "zipcode": "09011",
+ "country": "POSTOFFICE"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "Military": {
+ "Comments": {
+ "type": "military.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Disciplinary": {
+ "type": "military.disciplinary",
+ "props": {
+ "HasDisciplinary": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Court": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Date": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1995",
+ "estimated": true
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its pe"
+ }
+ },
+ "Offenses": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Outcome": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its pe"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Foreign": {
+ "type": "military.foreign",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its pe"
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Canada"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2001",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Division": {
+ "type": "text",
+ "props": {
+ "value": "DIVISION FOREIGN MILITARY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FOREIGN MILITARY ACQ STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FOREIGN MILITARY ACQ APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FOREIGN MILITARY ACQ CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "DE",
+ "zipcode": "19811",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Frequency": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its pe"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FOREIGN MILITARY ACQ FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FOREIGN MILITARY ACQ MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FOREIGN MILITARY ACQ LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VII",
+ "suffixOther": ""
+ }
+ },
+ "Title": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its pe"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "MaintainsContact": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "FOREIGN ORGANIZATION MILITARY"
+ }
+ },
+ "Organization": {
+ "type": "radio",
+ "props": {
+ "value": "Intelligence",
+ "checked": true
+ }
+ },
+ "Rank": {
+ "type": "text",
+ "props": {
+ "value": "PROVIDE HIGHEST RANK FOREIGN MILITARY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "ReasonLeft": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its pe"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Country": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Division": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "items": []
+ }
+ },
+ "MaintainsContact": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Organization": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "Rank": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "ReasonLeft": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "History": {
+ "type": "military.history",
+ "props": {
+ "HasServed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DischargeDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "DischargeReason": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "DischargeType": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "DischargeTypeOther": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its pe"
+ }
+ },
+ "HasBeenDischarged": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Officer": {
+ "type": "radio",
+ "props": {
+ "value": "Officer",
+ "checked": true
+ }
+ },
+ "Service": {
+ "type": "radio",
+ "props": {
+ "value": "AirNationalGuard",
+ "checked": true
+ }
+ },
+ "ServiceNumber": {
+ "type": "text",
+ "props": {
+ "value": "555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555500"
+ }
+ },
+ "ServiceState": {
+ "type": "location",
+ "props": {
+ "layout": "State",
+ "state": "GA"
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "ActiveDuty",
+ "checked": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "27",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "DischargeDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "1995",
+ "estimated": true
+ }
+ },
+ "DischargeReason": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "DischargeType": {
+ "type": "radio",
+ "props": {
+ "value": "BadConduct",
+ "checked": true
+ }
+ },
+ "DischargeTypeOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "HasBeenDischarged": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Officer": {
+ "type": "radio",
+ "props": {
+ "value": "Officer",
+ "checked": true
+ }
+ },
+ "Service": {
+ "type": "radio",
+ "props": {
+ "value": "MarineCorps",
+ "checked": true
+ }
+ },
+ "ServiceNumber": {
+ "type": "text",
+ "props": {
+ "value": "555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555500"
+ }
+ },
+ "ServiceState": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "ActiveDuty",
+ "checked": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Selective": {
+ "type": "military.selective",
+ "props": {
+ "WasBornAfter": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "HasRegistered": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "RegistrationNumber": {
+ "type": "text",
+ "props": {
+ "value": "444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444400"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ },
+ "Psychological": {
+ "Comments": {
+ "type": "psychological.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Competence": {
+ "type": "psychological.competence",
+ "props": {
+ "IsIncompetent": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Appeals": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20411",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20400",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20411",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20409",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Appeals": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Consultations": {
+ "type": "psychological.consultations",
+ "props": {
+ "Consulted": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Appeals": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Appeals": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DC",
+ "zipcode": "20288",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Disposition": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Diagnoses": {
+ "type": "psychological.diagnoses",
+ "props": {
+ "Diagnosed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "DidNotConsult": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "DiagnosisList": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Condition": {
+ "type": "radio",
+ "props": {
+ "value": "Psychotic disorder",
+ "checked": true
+ }
+ },
+ "Diagnosed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Effective": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Treatment": {
+ "type": "psychological.treatment",
+ "props": {
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States",
+ "validated": true
+ }
+ }
+ }
+ },
+ "TreatmentFacility": {
+ "type": "psychological.treatment",
+ "props": {
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States"
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Condition": {
+ "type": "radio",
+ "props": {
+ "value": "Psychotic disorder",
+ "checked": true
+ }
+ },
+ "Diagnosed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Effective": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Treatment": {
+ "type": "psychological.treatment",
+ "props": {
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States"
+ }
+ }
+ }
+ },
+ "TreatmentFacility": {
+ "type": "psychological.treatment",
+ "props": {
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ },
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States"
+ }
+ }
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "InTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "TreatmentList": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States"
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Work",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "FM",
+ "zipcode": "96955",
+ "country": "United States"
+ }
+ },
+ "Name": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Phone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "ExistingConditions": {
+ "type": "psychological.conditions",
+ "props": {
+ "HasCondition": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "ReceivedTreatment": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "TreatmentList": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "items": []
+ }
+ },
+ "DidNotFollow": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "DidNotFollowExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ "Hospitalizations": {
+ "type": "psychological.hospitalizations",
+ "props": {
+ "Hospitalized": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Admission": {
+ "type": "radio",
+ "props": {
+ "value": "Voluntary",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Facility": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "FacilityAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "DE",
+ "zipcode": "19833",
+ "country": "United States"
+ }
+ },
+ "TreatmentDate": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Admission": {
+ "type": "radio",
+ "props": {
+ "value": "Involuntary",
+ "checked": true
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Facility": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "FacilityAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "PR",
+ "zipcode": "00600",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "TreatmentDate": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "Relationships": {
+ "Cohabitants": {
+ "type": "relationships.status.cohabitant",
+ "props": {
+ "HasCohabitant": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "CohabitantList": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "BirthPlace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace without County",
+ "city": "COHAB POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "CO",
+ "country": "United States"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Saint Barthelemy",
+ "Cambodia",
+ "Taiwan",
+ "Iceland",
+ "Pakistan"
+ ]
+ }
+ },
+ "CohabitationBegan": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "ForeignBornDocument": {
+ "type": "foreignborndocument",
+ "props": {
+ "DocumentType": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentExpiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "DocumentExpirationNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ }
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "COHAB FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "COHAB MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "COHAB LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Other",
+ "suffixOther": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my"
+ }
+ },
+ "OtherNames": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "OtherName": {
+ "type": "name",
+ "props": {
+ "first": "COHAB AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "COHAB AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "COHAB AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "V",
+ "suffixOther": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "OtherName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "SSN": {
+ "type": "ssn",
+ "props": {
+ "first": "888",
+ "middle": "88",
+ "last": "8888",
+ "notApplicable": false
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Comments": {
+ "type": "relationships.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ }
+ }
+ },
+ "Marital": {
+ "type": "relationships.status.marital",
+ "props": {
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "Married",
+ "checked": true
+ }
+ },
+ "CivilUnion": {
+ "type": "civilunion",
+ "props": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "SPOUSE STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "SPOUSE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "SPOUSE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "LA",
+ "zipcode": "70600",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "AddressSeparated": {
+ "type": "location",
+ "props": {
+ "layout": "US City, State, Zipcode International city",
+ "city": "SEPARATED CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "WA",
+ "zipcode": "98822",
+ "country": "United States"
+ }
+ },
+ "AddressSeparatedNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "BirthPlace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace",
+ "city": "SPOUSE FOREIGN CITY POB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Vatican City",
+ "countryComments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": false
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "East Timor",
+ "Denmark",
+ "Venezuela",
+ "Gaza Strip",
+ "Saint Kitts and Nevis",
+ "Afghanistan"
+ ],
+ "comments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "DateSeparated": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1991",
+ "estimated": true
+ }
+ },
+ "Divorced": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": "e@e.orggggggggggggggggggggggggggggggggggggg"
+ }
+ },
+ "EnteredCivilUnion": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "ForeignBornDocument": {
+ "type": "foreignborndocument",
+ "props": {
+ "DocumentType": {
+ "type": "radio",
+ "props": {
+ "value": "FS240",
+ "checked": true
+ }
+ },
+ "OtherExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "DocumentExpiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "DocumentExpirationNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ }
+ }
+ },
+ "Location": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace",
+ "city": "CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Kazakhstan",
+ "countryComments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "SPOUSE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "SPOUSE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "SPOUSE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "OtherNames": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "SPOUSE AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "SPOUSE AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "SPOUSE AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Jr",
+ "suffixOther": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DatesUsed": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "SSN": {
+ "type": "ssn",
+ "props": {
+ "first": "123",
+ "middle": "99",
+ "last": "9999",
+ "notApplicable": false
+ }
+ },
+ "Separated": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "0000000000",
+ "extension": "0000000000",
+ "noNumber": false
+ }
+ },
+ "UseCurrentAddress": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ }
+ }
+ },
+ "DivorcedList": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "DC",
+ "zipcode": "20000",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "BirthPlace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace",
+ "city": "POB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "PR",
+ "county": "COUNTY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "United States"
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Ukraine",
+ "Oman",
+ "Qatar",
+ "Reunion",
+ "Falkland Islands Islas Malvinas",
+ "Vanuatu",
+ "Cambodia",
+ "Zambia"
+ ],
+ "comments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "DateDivorced": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1999",
+ "estimated": true
+ }
+ },
+ "Deceased": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "DeceasedAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "DeceasedAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "DivorceLocation": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "Recognized": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": "Widowed",
+ "checked": true
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Other",
+ "number": "0000000000",
+ "extension": "0000000000",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "BirthPlace": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": null
+ }
+ },
+ "DateDivorced": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Deceased": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "DeceasedAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "DeceasedAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "DivorceLocation": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Recognized": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Status": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "Telephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": false
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "People": {
+ "type": "relationships.people",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "REFE ONE Street XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "REFE ONE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "REFE ONE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "dE",
+ "zipcode": "19911",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": "e@e.dog"
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "MobileTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Other",
+ "number": "4444444444",
+ "extension": "4444444444",
+ "noNumber": false
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "REFE ONE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "REFE ONE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "REFE ONE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "IV",
+ "suffixOther": ""
+ }
+ },
+ "OtherTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "International",
+ "numberType": "Home",
+ "number": "3333333333333",
+ "extension": "3333333333",
+ "noNumber": false
+ }
+ },
+ "Rank": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ },
+ "RankNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Relationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "RelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "REFE TWO STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "REFE TWO APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "REFE TWO CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "IA",
+ "zipcode": "51099",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1991",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": "e@e.commmmmmmmmmmm"
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "MobileTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Home",
+ "number": "3333333333",
+ "extension": "3333333333",
+ "noNumber": false
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "REFE TWO FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "REFE TWO MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "REFE TWO LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "IX",
+ "suffixOther": ""
+ }
+ },
+ "OtherTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "3333333333",
+ "extension": "3333333333",
+ "noNumber": false
+ }
+ },
+ "Rank": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ },
+ "RankNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Relationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Neighbor"
+ ]
+ }
+ },
+ "RelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "REFE 3 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "REFE THREE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "REFE THREE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "AL",
+ "zipcode": "35733",
+ "country": "United States"
+ }
+ },
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Email": {
+ "type": "email",
+ "props": {
+ "value": "r@r.catttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt"
+ }
+ },
+ "EmailNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "MobileTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Other",
+ "number": "8888888888",
+ "extension": "8888888888",
+ "noNumber": false
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "REFE THREE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "REFE THREE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "REFE THREE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Sr",
+ "suffixOther": ""
+ }
+ },
+ "OtherTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "Cell",
+ "number": "5555555555",
+ "extension": "5555555555",
+ "noNumber": false
+ }
+ },
+ "Rank": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ },
+ "RankNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Relationship": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "RelationshipOther": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "Relatives": {
+ "type": "relationships.relatives",
+ "props": {
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "MOTHER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "MOTHER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "MOTHER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "zipcode": "44444",
+ "country": "Dominica"
+ }
+ },
+ "Aliases": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1985",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "24",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "MOTHER AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "MOTHERS AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "MOTHERS AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "II",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "02",
+ "day": "02",
+ "year": "1970",
+ "estimated": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace without County",
+ "city": "MOTHER POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "KS",
+ "country": "Fiji",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Uganda",
+ "Denmark",
+ "Gabon",
+ "Afghanistan",
+ "Cambodia",
+ "Vanuatu"
+ ]
+ }
+ },
+ "CitizenshipDocumentation": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Document": {
+ "type": "radio",
+ "props": {
+ "value": "Visa",
+ "checked": true
+ }
+ },
+ "DocumentComments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Employer": {
+ "type": "text",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,"
+ }
+ },
+ "EmployerAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "MOTHER EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "MOTHER EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "MOTHER EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "LQ",
+ "zipcode": "88888",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "EmployerAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerRelationship": {
+ "type": "textarea",
+ "props": {
+ "value": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "EmployerRelationshipNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1989",
+ "estimated": true
+ }
+ },
+ "FirstContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "FrequencyComments": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "HasAffiliation": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "IsDeceased": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "LastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2005",
+ "estimated": true
+ }
+ },
+ "MaidenName": {
+ "type": "name",
+ "props": {
+ "first": "MOTHERS MAIDEN FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "MOTHERS MAIDEN MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "MOTHERS MAIDEN LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "IV",
+ "suffixOther": ""
+ }
+ },
+ "MaidenSameAsListed": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Methods": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Other"
+ ]
+ }
+ },
+ "MethodsComments": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "MOTHER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "MOTHER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "MOTHER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "Other",
+ "suffixOther": "I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my"
+ }
+ },
+ "Relation": {
+ "type": "radio",
+ "props": {
+ "value": "Mother",
+ "checked": true
+ }
+ },
+ "ResidenceDocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FATHER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FATHER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FATHER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "HQ",
+ "zipcode": "55555",
+ "country": "United States",
+ "validated": true
+ }
+ },
+ "Aliases": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": [
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1990",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1991",
+ "estimated": true
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FATHER AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FATHER AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FATHER AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Dates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "present": false
+ }
+ },
+ "Has": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "MaidenName": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1970",
+ "estimated": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace without County",
+ "city": "FATHER POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "country": "Ukraine",
+ "countryComments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "United States"
+ ],
+ "comments": "I WAS born in the year 1632, in the city of York, of a good family, \nthough not of that country, my father being a foreigner of Bremen, \nwho settled first at Hull. He got a good estate by merchandise, \nand leaving off his trade, lived afterwards at York, from whence he \nhad married my mother, whose relations were named Robinson, a very \ngood family in that country, and from whom I was called Robinson \nKreutznaer; but, by the usual corruption of words in England, we \nare now called - nay we call ourselves and write our name - Crusoe; \nand so my companions always called me.\n\nI had two elder brothers, one of whom was lieutenant-colonel to an \nEnglish regiment of foot in Flanders, formerly commanded by the \nfamous Colonel Lockhart, and was killed at the battle near Dunkirk \nagainst the Spaniards. What became of my second brother I never \nknew, any more than my father or mother knew what became of me.\n\nBeing the third son of the family and not bred to any trade, my \nhead began to be filled very early with rambling thoughts. My \nfather, who was very ancient, had given me a competent share of \nlearning, as far as house-education and a country free school \ngenerally go, and designed me for the law; but I would be satisfied \nwith nothing but going to sea; and my inclination to this led me so \nstrongly against the will, nay, the commands of my father, and \nagainst all the entreaties and persuasions of my mother and other \nfriends, that there seemed to be something fatal in that propensity \nof nature, tending directly to the life of misery which was to \nbefall me.\n\nMy father, a wise and grave man, gave me serious and excellent \ncounsel against what he foresaw was my design. He called me one \nmorning into his chamber, where he was confined by the gout, and \nexpostulated very warmly with me upon this subject. He asked me \nwhat reasons, more than a mere wandering inclination, I had for \nleaving father's house and my native country, where I might be well \nintroduced, and had a prospect of raising my fortune by application \nand industry, with a life of ease and pleasure. He told me it was \nmen of desperate fortunes on one hand, or of aspiring, superior \nfortunes on the other, who went abroad upon adventures, to rise by \nenterprise, and make themselves famous in undertakings of a nature \nout of the common road; that these things were all either too far \nabove me or too far below me; that mine was the middle state, or \nwhat might be called the upper station of low life, which he had \nfound, by long experience, was the best state in the world, the \nmost suited to human happiness, not exposed to the miseries and \nhardships, the labour and sufferings of the mechanic part of \nmankind, and not embarrassed with the pride, luxury, ambition, and \nenvy of the upper part of mankind. He told me I might judge of the \nhappiness of this state by this one thing - viz. that this was the \nstate of life which all other people envied; that kings have \nfrequently lamented the miserable consequence of being born to \ngreat things, and wished they had been placed in the middle of the \ntwo extremes, between the mean and the great; that the wise man \ngave his testimony to this, as the standard of felicity, when he \nprayed to have neither poverty nor riches.\n\nHe bade me observe it, and I should always find that the calamities \nof life were shared among the upper and lower part of mankind, but \nthat the middle station had the fewest disasters, and was not \nexposed to so many vicissitudes as the higher or lower part of \nmankind; nay, they were not subjected to so many distempers and \nuneasinesses, either of body or mind, as those were who, by vicious \nliving, luxury, and extravagances on the one hand, or by hard \nlabour, want of necessaries, and mean or insufficient diet on the \nother hand, bring distemper upon themselves by the natural \nconsequences of their way of living; that the middle station of \nlife was calculated for all kind of virtue and all kind of \nenjoyments;"
+ }
+ },
+ "CitizenshipDocumentation": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": "US Address",
+ "street": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "street2": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t",
+ "city": "\"It has long been a grave question whether any government not too strong for the liberties of its pe",
+ "state": "LA",
+ "zipcode": "70633",
+ "country": "United States"
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Document": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentComments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ },
+ "Employer": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmployerAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "EmployerAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": false
+ }
+ },
+ "EmployerRelationship": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "EmployerRelationshipNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "FirstContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "FrequencyComments": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "HasAffiliation": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "IsDeceased": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "LastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "",
+ "day": "",
+ "year": "",
+ "estimated": false
+ }
+ },
+ "MaidenName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "MaidenSameAsListed": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Methods": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": null
+ }
+ },
+ "MethodsComments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FATHER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FATHER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FATHER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "II",
+ "suffixOther": ""
+ }
+ },
+ "Relation": {
+ "type": "radio",
+ "props": {
+ "value": "Father",
+ "checked": true
+ }
+ },
+ "ResidenceDocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Address": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FIL ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FIL ADDRESS APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FIL ADDRESS CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "CA",
+ "zipcode": "93940",
+ "country": "United States"
+ }
+ },
+ "Aliases": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": ""
+ },
+ "items": []
+ }
+ },
+ "Birthdate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "1970",
+ "estimated": true
+ }
+ },
+ "Birthplace": {
+ "type": "location",
+ "props": {
+ "layout": "Birthplace without County",
+ "city": "FIL POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "HQ",
+ "country": "Denmark",
+ "countryComments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "Citizenship": {
+ "type": "country",
+ "props": {
+ "value": [
+ "Tajikistan",
+ "Bangladesh",
+ "Jersey",
+ "Liberia"
+ ],
+ "comments": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "CitizenshipDocumentation": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "CourtAddress": {
+ "type": "location",
+ "props": {
+ "layout": ""
+ }
+ },
+ "CourtName": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Document": {
+ "type": "radio",
+ "props": {
+ "value": "Other",
+ "checked": true
+ }
+ },
+ "DocumentComments": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "DocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": ""
+ }
+ },
+ "Employer": {
+ "type": "text",
+ "props": {
+ "value": "FIL EMPL XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO"
+ }
+ },
+ "EmployerAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "FIL EMPL STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "street2": "FIL EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "city": "FIL EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "state": "GA",
+ "zipcode": "30533",
+ "country": "United States"
+ }
+ },
+ "EmployerAddressNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "EmployerRelationship": {
+ "type": "textarea",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too\nstrong for the liberties of its people can be strong enough to\nmaintain its existence in great emergencies. On this point, the\npresent rebellion brought our republic to a severe test, and the\nPresidential election, occurring in regular course during the\nrebellion, added not a little to the strain.... The strife of\nthe election is but human nature practically applied to the facts\nin the case. What has occurred in this case must ever occur in\nsimilar cases. Human nature will not change. In any future\ngreat national trial, compared with the men of this, we shall\nhave as weak and as strong, as silly and as wise, as bad and as\ngood. Let us therefore study the incidents in this as philosophy\nto learn wisdom from and none of them as wrongs to be avenged....\nNow that the election is over, may not all having a common\ninterest reunite in a common fort to save our common country?\nFor my own part, I have striven and shall strive to avoid placing\nany obstacle in the way. So long as I have been here, I have not\nwillingly planted a thorn in any man's bosom. While I am deeply\nsensible to the high compliment of a re-election and duly\ngrateful, as I trust, to Almighty God for having directed my\ncountrymen to a right conclusion, as I think for their own good,\nit adds nothing to my satisfaction that any other man may be\ndisappointed or pained by the result.\"\n\nThis speech has not attracted much general attention, yet it is\nin a peculiar degree both illustrative and typical of the great\nstatesman who made it, alike in its strong common-sense and in\nits lofty standard of morality. Lincoln's life, Lincoln's deeds\nand words, are not only of consuming interest to the historian,\nbut should be intimately known to every man engaged in the hard\npractical work of American political life. It is difficult to\noverstate how much it means to a nation to have as the two\nforemost figures in its history men like Washington and Lincoln.\nIt is good for every man in any way concerned in public life to\nfeel that the highest ambition any American can possibly have\nwill be gratified just in proportion as he raises himself toward\nthe standards set by these two men.\n\nIt is a very poor thing, whether for nations or individuals, to\nadvance the history of great deeds done in the past as an excuse\nfor doing poorly in the present; but it is an excellent thing to\nstudy the history of the great deeds of the past, and of the\ngreat men who did them, with an earnest desire to profit thereby\nso as to render better service in the present. In their\nessentials, the men of the present day are much like the men of\nthe past, and the live issues of the present can be faced to\nbetter advantage by men who have in good faith studied how the\nleaders of the nation faced the dead issues of the past. Such a\nstudy of Lincoln's life will enable us to avoid the twin gulfs of\nimmorality and inefficiency--the gulfs which always lie one on\neach side of the careers alike of man and of nation. It helps\nnothing to have avoided one if shipwreck is encountered in the\nother. The fanatic, the well-meaning moralist of unbalanced\nmind, the parlor critic who condemns others but has no power\nhimself to do good and but little power to do ill--all these were\nas alien to Lincoln as the vicious and unpatriotic themselves.\nHis life teaches our people that they must act with wisdom,\nbecause otherwise adherence to right will be mere sound and fury\nwithout substance; and that they must also act high-mindedly, or\nelse what seems to be wisdom will in the end turn out to be the\nmost destructive kind of folly.\n\nThroughout his entire life, and especially after he rose to\nleadership in his party, Lincoln was stirred to his depths by the\nsense of fealty to a lofty ideal; but throughout his entire life,\nhe also accepted human nature as it is, and worked with keen,\npractical good sense to achieve results with the instruments at\nhand. It is impossible to conceive of "
+ }
+ },
+ "EmployerRelationshipNotApplicable": {
+ "type": "notapplicable",
+ "props": {
+ "applicable": true
+ }
+ },
+ "Expiration": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2020",
+ "estimated": false
+ }
+ },
+ "FirstContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "03",
+ "year": "2010",
+ "estimated": false
+ }
+ },
+ "Frequency": {
+ "type": "radio",
+ "props": {
+ "value": "Quarterly",
+ "checked": true
+ }
+ },
+ "FrequencyComments": {
+ "type": "radio",
+ "props": {
+ "value": ""
+ }
+ },
+ "HasAffiliation": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "IsDeceased": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "LastContact": {
+ "type": "datecontrol",
+ "props": {
+ "month": "02",
+ "day": "03",
+ "year": "2018",
+ "estimated": true
+ }
+ },
+ "MaidenName": {
+ "type": "name",
+ "props": {
+ "first": "",
+ "firstInitialOnly": false,
+ "middle": "",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "",
+ "lastInitialOnly": false,
+ "suffix": "",
+ "suffixOther": ""
+ }
+ },
+ "MaidenSameAsListed": {
+ "type": "branch",
+ "props": {
+ "value": ""
+ }
+ },
+ "Methods": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Telephone",
+ "In person",
+ "Other"
+ ]
+ }
+ },
+ "MethodsComments": {
+ "type": "textarea",
+ "props": {
+ "value": "FIL Other method of contact"
+ }
+ },
+ "Name": {
+ "type": "name",
+ "props": {
+ "first": "FIL FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "firstInitialOnly": false,
+ "middle": "FIL MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "middleInitialOnly": false,
+ "noMiddleName": false,
+ "last": "FIL LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO",
+ "lastInitialOnly": false,
+ "suffix": "VIII",
+ "suffixOther": ""
+ }
+ },
+ "Relation": {
+ "type": "radio",
+ "props": {
+ "value": "Father-in-law",
+ "checked": true
+ }
+ },
+ "ResidenceDocumentNumber": {
+ "type": "text",
+ "props": {
+ "value": "\"It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "Substance": {
+ "Comments": {
+ "type": "substance.comments",
+ "props": {
+ "Comments": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ }
+ }
+ },
+ "DrugClearanceUses": {
+ "type": "substance.drugs.clearance",
+ "props": {
+ "UsedDrugs": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "EstimatedUse": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "EstimatedUse": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "DrugInvolvements": {
+ "type": "substance.drugs.purchase",
+ "props": {
+ "Involved": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "FirstInvolvement": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2001",
+ "estimated": false
+ }
+ },
+ "InvolvementInFuture": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvementWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "InvolvementWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "NatureOfInvolvement": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Reasons": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "RecentInvolvement": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": false
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "DrugPublicSafetyUses": {
+ "type": "substance.drugs.publicsafety",
+ "props": {
+ "UsedDrugs": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "EstimatedUse": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Description": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "EstimatedUse": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "DrugUses": {
+ "type": "substance.drugs.usage",
+ "props": {
+ "UsedDrugs": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "Ketamine"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "00xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1 22xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx33"
+ }
+ },
+ "FirstUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2008",
+ "estimated": false
+ }
+ },
+ "NatureOfUse": {
+ "type": "textarea",
+ "props": {
+ "value": "I smoked it several times a day. I most likely used it over 100,000,000,000 X"
+ }
+ },
+ "RecentUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "07",
+ "day": "1",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "UseInFuture": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "Stimulants"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "FirstUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "NatureOfUse": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "RecentUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "UseInFuture": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "FirstUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "NatureOfUse": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "RecentUse": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "UseInFuture": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "NegativeImpacts": {
+ "type": "substance.alcohol.negative",
+ "props": {
+ "HasImpacts": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "NegativeImpact": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Used": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "Circumstances": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "NegativeImpact": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Occurred": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "1",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "Used": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "OrderedCounselings": {
+ "type": "substance.alcohol.ordered",
+ "props": {
+ "HasBeenOrdered": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "ActionTaken": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "CounselingDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "NoActionTakenExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OtherSeeker": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Seekers": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Employer",
+ "MedicalProfessional",
+ "MentalHealthProfessional",
+ "CourtOfficial",
+ "Other"
+ ]
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "vNo American can study the character and career of Abraham Lincoln without being carried away by sen",
+ "state": "LA",
+ "zipcode": "70622",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "ActionTaken": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "CounselingDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "NoActionTakenExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OtherSeeker": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Seekers": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Employer",
+ "MedicalProfessional",
+ "CourtOfficial",
+ "MentalHealthProfessional",
+ "Other"
+ ]
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20066",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "OrderedTreatments": {
+ "type": "substance.drugs.ordered",
+ "props": {
+ "TreatmentOrdered": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "ActionTaken": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "NoActionTakenExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NoTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OrderedBy": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "None",
+ "MentalHealthProfessional",
+ "Judge",
+ "MedicalProfessional",
+ "Employer"
+ ]
+ }
+ },
+ "TreatmentCompleted": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "TreatmentDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "TreatmentProvider": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20322",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "Both",
+ "type": "Domestic",
+ "numberType": "NA",
+ "number": "5555555555",
+ "extension": "555555555",
+ "noNumber": false
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "ActionTaken": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "Explanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "NoActionTakenExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": ""
+ }
+ },
+ "NoTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "OrderedBy": {
+ "type": "checkboxgroup",
+ "props": {
+ "values": [
+ "Employer",
+ "MedicalProfessional",
+ "Judge",
+ "MentalHealthProfessional",
+ "None"
+ ]
+ }
+ },
+ "TreatmentCompleted": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "TreatmentDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "TreatmentProvider": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "country": "Dhekelia Sovereign Base Area"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "PrescriptionUses": {
+ "type": "substance.drugs.misuse",
+ "props": {
+ "MisusedDrugs": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "PrescriptionName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "UseWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "InvolvementDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": false
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "PrescriptionName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "Reason": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "UseWhileEmployed": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "UseWithClearance": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "ReceivedCounselings": {
+ "type": "substance.alcohol.additional",
+ "props": {
+ "ReceivedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "AgencyAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "VT",
+ "zipcode": "05155",
+ "country": "United States"
+ }
+ },
+ "AgencyName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentBeganDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "TreatmentEndDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "7",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "AZ",
+ "zipcode": "85312",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "UseSameAddress": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "AgencyAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FM",
+ "zipcode": "96944",
+ "country": "United States"
+ }
+ },
+ "AgencyName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentBeganDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "TreatmentEndDate": {
+ "type": "datecontrol",
+ "props": {
+ "month": "7",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "SD",
+ "zipcode": "57111",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "UseSameAddress": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "VoluntaryCounselings": {
+ "type": "substance.alcohol.voluntary",
+ "props": {
+ "SoughtTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "CounselingDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20066",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "CompletedTreatment": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "CounselingDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "NoCompletedTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "FL",
+ "zipcode": "32122",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderName": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "VoluntaryTreatments": {
+ "type": "substance.drugs.voluntary",
+ "props": {
+ "TreatmentVoluntary": {
+ "type": "branch",
+ "props": {
+ "value": "Yes"
+ }
+ },
+ "List": {
+ "type": "collection",
+ "props": {
+ "branch": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "items": [
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "NoTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentCompleted": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "TreatmentDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "TreatmentProvider": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "street2": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "No American can study the character and career of Abraham Lincoln without being carried away by sent",
+ "state": "DC",
+ "zipcode": "20322",
+ "country": "United States"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ },
+ {
+ "Item": {
+ "DrugType": {
+ "type": "radio",
+ "props": {
+ "value": "Inhalants"
+ }
+ },
+ "NoTreatmentExplanation": {
+ "type": "textarea",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln\nwithout being carried away by sentimental emotions. We are\nalways inclined to idealize that which we love,--a state of mind\nvery unfavorable to the exercise of sober critical judgment. It\nis therefore not surprising that most of those who have written\nor spoken on that extraordinary man, even while conscientiously\nendeavoring to draw a lifelike portraiture of his being, and to\nform a just estimate of his public conduct, should have drifted\ninto more or less indiscriminating eulogy, painting his great\nfeatures in the most glowing colors, and covering with tender\nshadings whatever might look like a blemish.\n\nBut his standing before posterity will not be exalted by mere\npraise of his virtues and abilities, nor by any concealment of\nhis limitations and faults. The stature of the great man, one of\nwhose peculiar charms consisted in his being so unlike all other\ngreat men, will rather lose than gain by the idealization which\nso easily runs into the commonplace. For it was distinctly the\nweird mixture of qualities and forces in him, of the lofty with\nthe common, the ideal with the uncouth, of that which he had\nbecome with that which he had not ceased to be, that made him so\nfascinating a character among his fellow-men, gave him his\nsingular power over their minds and hearts, and fitted him to be\nthe greatest leader in the greatest crisis of our national life.\n\nHis was indeed a marvellous growth. The statesman or the\nmilitary hero born and reared in a log cabin is a familiar figure\nin American history; but we may search in vain among our\ncelebrities for one whose origin and early life equalled Abraham\nLincoln's in wretchedness. He first saw the light in a miserable\nhovel in Kentucky, on a farm consisting of a few barren acres in\na dreary neighborhood; his father a typical \"poor Southern\nwhite,\" shiftless and without ambition for himself or his\nchildren, constantly looking for a new piece of land on which he\nmight make a living without much work; his mother, in her youth\nhandsome and bright, grown prematurely coarse in feature and\nsoured in mind by daily toil and care; the whole household\nsqualid, cheerless, and utterly void of elevating inspirations...\nOnly when the family had \"moved\" into the malarious backwoods of\nIndiana, the mother had died, and a stepmother, a woman of thrift\nand energy, had taken charge of the children, the shaggy-headed,\nragged, barefooted, forlorn boy, then seven years old, \"began to\nfeel like a human being.\" Hard work was his early lot. When a\nmere boy he had to help in supporting the family, either on his\nfather's clearing, or hired out to other farmers to plough, or\ndig ditches, or chop wood, or drive ox teams; occasionally also\nto \"tend the baby,\" when the farmer's wife was otherwise engaged.\nHe could regard it as an advancement to a higher sphere of\nactivity when he obtained work in a \"crossroads store,\" where he\namused the customers by his talk over the counter; for he soon\ndistinguished himself among the backwoods folk as one who had\nsomething to say worth listening to. To win that distinction, he\nhad to draw mainly upon his wits; for, while his thirst for\nknowledge was great, his opportunities for satisfying that thirst\nwere wofully slender.\n\nIn the log schoolhouse, which he could visit but little, he was\ntaught only reading, writing, and elementary arithmetic. Among\nthe people of the settlement, bush farmers and small tradesmen,\nhe found none of uncommon intelligence or education; but some of\nthem had a few books, which he borrowed eagerly. Thus he read\nand reread, AEsop's Fables, learning to tell stories with a point\nand to argue by parables; he read Robinson Crusoe, The Pilgrim's\nProgress, a short history of the United States, and Weems's Life\nof Washington. To the town constable's he went to read the\nRevised Statutes of Indiana. Every printed page that fell into\nhis hands he would greedily devour, and his family and friends\nwatched h"
+ }
+ },
+ "TreatmentCompleted": {
+ "type": "branch",
+ "props": {
+ "value": "No"
+ }
+ },
+ "TreatmentDates": {
+ "type": "daterange",
+ "props": {
+ "from": {
+ "type": "datecontrol",
+ "props": {
+ "month": "01",
+ "day": "01",
+ "year": "2000",
+ "estimated": true
+ }
+ },
+ "to": {
+ "type": "datecontrol",
+ "props": {
+ "month": "8",
+ "day": "29",
+ "year": "2018",
+ "estimated": false
+ }
+ },
+ "present": true
+ }
+ },
+ "TreatmentProvider": {
+ "type": "text",
+ "props": {
+ "value": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i"
+ }
+ },
+ "TreatmentProviderAddress": {
+ "type": "location",
+ "props": {
+ "layout": "Address",
+ "street": "No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i",
+ "city": "APO",
+ "state": "AA",
+ "zipcode": "34011",
+ "country": "POSTOFFICE"
+ }
+ },
+ "TreatmentProviderTelephone": {
+ "type": "telephone",
+ "props": {
+ "timeOfDay": "",
+ "type": "Domestic",
+ "numberType": "",
+ "number": "",
+ "extension": "",
+ "noNumber": true
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/api/testdata/complete-scenarios/test7.xml b/api/testdata/complete-scenarios/test7.xml
new file mode 100644
index 000000000..b48d59777
--- /dev/null
+++ b/api/testdata/complete-scenarios/test7.xml
@@ -0,0 +1,20140 @@
+
+
+
+
+
+
+
+ 321717812
+
+
+
+
+
+
+
+ Yes
+
+
+ Yes
+
+
+
+
+
+
+
+
+
+
+
+ 01
+ 01
+ 1980
+
+
+ BoyersXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PA
+ ButlerXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ United States
+
+
+ Unknown
+
+
+ Case.....aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabb
+ Giant......fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffoo
+ Blowout......mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmaa
+ Jr
+
+
+ Unspecified or unknown
+
+ 9
+ 11
+
+
+ Yes
+
+
+
+ Other Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD
+ Other....FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFmm
+ Other Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD
+ Jr
+
+
+
+
+ 09
+ 1999
+
+
+
+
+
+
+ No
+ I WAS born in the year 1632, in the city of York, of a good family,
+though not of that country, my father being a foreigner of Bremen,
+who settled first at Hull. He got a good estate by merchandise,
+and leaving off his trade, lived afterwards at York, from whence he
+had married my mother, whose relations were named Robinson, a very
+good family in that country, and from whom I was called Robinson
+Kreutznaer; but, by the usual corruption of words in England, we
+are now called - nay we call ourselves and write our name - Crusoe;
+and so my companions always called me.
+
+I had two elder brothers, one of whom was lieutenant-colonel to an
+English regiment of foot in Flanders, formerly commanded by the
+famous Colonel Lockhart, and was killed at the battle near Dunkirk
+against the Spaniards. What became of my second brother I never
+knew, any more than my father or mother knew what became of me.
+
+Being the third son of the family and not bred to any trade, my
+head began to be filled very early with rambling thoughts. My
+father, who was very ancient, had given me a competent share of
+learning, as far as house-education and a country free school
+generally go, and designed me for the law; but I would be satisfied
+with nothing but going to sea; and my inclination to this led me so
+strongly against the will, nay, the commands of my father, and
+against all the entreaties and persuasions of my mother and other
+friends, that there seemed to be something fatal in that propensity
+of nature, tending directly to the life of misery which was to
+befall me.
+
+My father, a wise and grave man, gave me serious and excellent
+counsel against what he foresaw was my design. He called me one
+morning into his chamber, where he was confined by the gout, and
+expostulated very warmly with me upon this subject. He asked me
+what reasons, more than a mere wandering inclination, I had for
+leaving father's house and my native country, where I might be well
+introduced, and had a prospect of raising my fortune by application
+and industry, with a life of ease and pleasure. He told me it was
+men of desperate fortunes on one hand, or of aspiring, superior
+fortunes on the other, who went abroad upon adventures, to rise by
+enterprise, and make themselves famous in undertakings of a nature
+out of the common road; that these things were all either too far
+above me or too far below me; that mine was the middle state, or
+what might be called the upper station of low life, which he had
+found, by long experience, was the best state in the world, the
+most suited to human happiness, not exposed to the miseries and
+hardships, the labour and sufferings of the mechanic part of
+mankind, and not embarrassed with the pride, luxury, ambition, and
+envy of the upper part of mankind. He told me I might judge of the
+happiness of this state by this one thing - viz. that this was the
+state of life which all other people envied; that kings have
+frequently lamented the miserable consequence of being born to
+great things, and wished they had been placed in the middle of the
+two extremes, between the mean and the great; that the wise man
+gave his testimony to this, as the standard of felicity, when he
+prayed to have neither poverty nor riches.
+
+He bade me observe it, and I should always find that the calamities
+of life were shared among the upper and lower part of mankind, but
+that the middle station had the fewest disasters, and was not
+exposed to so many vicissitudes as the higher or lower part of
+mankind; nay, they were not subjected to so many distempers and
+uneasinesses, either of body or mind, as those were who, by vicious
+living, luxury, and extravagances on the one hand, or by hard
+labour, want of necessaries, and mean or insufficient diet on the
+other hand, bring distemper upon themselves by the natural
+consequences of their way of living; that the middle station of
+life was calculated for all kind of virtue and all kind of
+enjoyments;
+
+
+
+ Second Other Name Used Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Second Other Name Used....CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCXX
+ Second Other Name Used Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Jr
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 1999
+
+
+
+ No
+ Second other name used comment XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
+though not of that country, my father being a foreigner of Bremen,
+who settled first at Hull. He got a good estate by merchandise,
+and leaving off his trade, lived afterwards at York, from whence he
+had married my mother, whose relations were named Robinson, a very
+good family in that country, and from whom I was called Robinson
+Kreutznaer; but, by the usual corruption of words in England, we
+are now called - nay we call ourselves and write our name - Crusoe;
+and so my companions always called me.
+
+I had two elder brothers, one of whom was lieutenant-colonel to an
+English regiment of foot in Flanders, formerly commanded by the
+famous Colonel Lockhart, and was killed at the battle near Dunkirk
+against the Spaniards. What became of my second brother I never
+knew, any more than my father or mother knew what became of me.
+
+Being the third son of the family and not bred to any trade, my
+head began to be filled very early with rambling thoughts. My
+father, who was very ancient, had given me a competent share of
+learning, as far as house-education and a country free school
+generally go, and designed me for the law; but I would be satisfied
+with nothing but going to sea; and my inclination to this led me so
+strongly against the will, nay, the commands of my father, and
+against all the entreaties and persuasions of my mother and other
+friends, that there seemed to be something fatal in that propensity
+of nature, tending directly to the life of misery which was to
+befall me.
+
+My father, a wise and grave man, gave me serious and excellent
+counsel against what he foresaw was my design. He called me one
+morning into his chamber, where he was confined by the gout, and
+expostulated very warmly with me upon this subject. He asked me
+what reasons, more than a mere wandering inclination, I had for
+leaving father's house and my native country, where I might be well
+introduced, and had a prospect of raising my fortune by application
+and industry, with a life of ease and pleasure. He told me it was
+men of desperate fortunes on one hand, or of aspiring, superior
+fortunes on the other, who went abroad upon adventures, to rise by
+enterprise, and make themselves famous in undertakings of a nature
+out of the common road; that these things were all either too far
+above me or too far below me; that mine was the middle state, or
+what might be called the upper station of low life, which he had
+found, by long experience, was the best state in the world, the
+most suited to human happiness, not exposed to the miseries and
+hardships, the labour and sufferings of the mechanic part of
+mankind, and not embarrassed with the pride, luxury, ambition, and
+envy of the upper part of mankind. He told me I might judge of the
+happiness of this state by this one thing - viz. that this was the
+state of life which all other people envied; that kings have
+frequently lamented the miserable consequence of being born to
+great things, and wished they had been placed in the middle of the
+two extremes, between the mean and the great; that the wise man
+gave his testimony to this, as the standard of felicity, when he
+prayed to have neither poverty nor riches.
+
+He bade me observe it, and I should always find that the calamities
+of life were shared among the upper and lower part of mankind, but
+that the middle station had the fewest disasters, and was not
+exposed to so many vicissitudes as the higher or lower part of
+mankind; nay, they were not subjected to so many distempers and
+uneasinesses, either of body or mind, as those were who, by vicious
+living, luxury, and extravagances on the one hand, or by hard
+labour, want of necessaries, and mean or insufficient diet on the
+other hand, bring distemper upon themselves by the natural
+consequences of their way of living; that the middle station of
+life was calculated for all kind of virtue and all kind of
+enjoyments;
+
+
+
+ Third Other Name Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Third other name used first....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Third Other Name Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Jr
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 1999
+
+
+
+ No
+ Third Other Name CommentXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
+though not of that country, my father being a foreigner of Bremen,
+who settled first at Hull. He got a good estate by merchandise,
+and leaving off his trade, lived afterwards at York, from whence he
+had married my mother, whose relations were named Robinson, a very
+good family in that country, and from whom I was called Robinson
+Kreutznaer; but, by the usual corruption of words in England, we
+are now called - nay we call ourselves and write our name - Crusoe;
+and so my companions always called me.
+
+I had two elder brothers, one of whom was lieutenant-colonel to an
+English regiment of foot in Flanders, formerly commanded by the
+famous Colonel Lockhart, and was killed at the battle near Dunkirk
+against the Spaniards. What became of my second brother I never
+knew, any more than my father or mother knew what became of me.
+
+Being the third son of the family and not bred to any trade, my
+head began to be filled very early with rambling thoughts. My
+father, who was very ancient, had given me a competent share of
+learning, as far as house-education and a country free school
+generally go, and designed me for the law; but I would be satisfied
+with nothing but going to sea; and my inclination to this led me so
+strongly against the will, nay, the commands of my father, and
+against all the entreaties and persuasions of my mother and other
+friends, that there seemed to be something fatal in that propensity
+of nature, tending directly to the life of misery which was to
+befall me.
+
+My father, a wise and grave man, gave me serious and excellent
+counsel against what he foresaw was my design. He called me one
+morning into his chamber, where he was confined by the gout, and
+expostulated very warmly with me upon this subject. He asked me
+what reasons, more than a mere wandering inclination, I had for
+leaving father's house and my native country, where I might be well
+introduced, and had a prospect of raising my fortune by application
+and industry, with a life of ease and pleasure. He told me it was
+men of desperate fortunes on one hand, or of aspiring, superior
+fortunes on the other, who went abroad upon adventures, to rise by
+enterprise, and make themselves famous in undertakings of a nature
+out of the common road; that these things were all either too far
+above me or too far below me; that mine was the middle state, or
+what might be called the upper station of low life, which he had
+found, by long experience, was the best state in the world, the
+most suited to human happiness, not exposed to the miseries and
+hardships, the labour and sufferings of the mechanic part of
+mankind, and not embarrassed with the pride, luxury, ambition, and
+envy of the upper part of mankind. He told me I might judge of the
+happiness of this state by this one thing - viz. that this was the
+state of life which all other people envied; that kings have
+frequently lamented the miserable consequence of being born to
+great things, and wished they had been placed in the middle of the
+two extremes, between the mean and the great; that the wise man
+gave his testimony to this, as the standard of felicity, when he
+prayed to have neither poverty nor riches.
+
+He bade me observe it, and I should always find that the calamities
+of life were shared among the upper and lower part of mankind, but
+that the middle station had the fewest disasters, and was not
+exposed to so many vicissitudes as the higher or lower part of
+mankind; nay, they were not subjected to so many distempers and
+uneasinesses, either of body or mind, as those were who, by vicious
+living, luxury, and extravagances on the one hand, or by hard
+labour, want of necessaries, and mean or insufficient diet on the
+other hand, bring distemper upon themselves by the natural
+consequences of their way of living; that the middle station of
+life was calculated for all kind of virtue and all kind of
+enjoyments;
+
+
+ No
+
+
+ 321
+ 71
+ 7812
+
+ Male
+
+ 999
+
+
+
+
+
+ 5555555555
+ 1111111111
+
+
+
+
+
+ 5555555555
+ 2222222222
+
+
+
+
+
+ 5555555555
+ 3333333333
+
+
+
+
+
+ No
+
+
+
+ REFE ONE Street XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO REFE ONE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE ONE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ DE
+ 19911
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ e@e.dog
+
+ REFE ONE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE ONE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE ONE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ IV
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my
+
+
+ International
+ 3333333333333
+ 3333333333
+
+
+
+ 4444444444
+ 4444444444
+
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,
+
+
+
+ REFE TWO STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO REFE TWO APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE TWO CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ IA
+ 51099
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1991
+
+
+
+ e@e.commmmmmmmmmmm
+
+ REFE TWO LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE TWO FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE TWO MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ IX
+
+
+
+
+ 3333333333
+ 3333333333
+
+
+
+ 3333333333
+ 3333333333
+
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,
+
+
+
+ REFE 3 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO REFE THREE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE THREE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ AL
+ 35733
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ r@r.catttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt
+
+ REFE THREE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE THREE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ REFE THREE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Sr
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my
+
+
+ 5555555555
+ 5555555555
+
+
+
+ 8888888888
+ 8888888888
+
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,
+
+
+
+
+
+ No
+
+
+
+ MOTHER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO MOTHER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Dominica
+
+
+ No
+
+
+
+ 02
+ 02
+ 1970
+
+
+ MOTHER POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Fiji
+
+
+
+
+ Uganda
+
+
+ Denmark
+
+
+ Gabon
+
+
+ Afghanistan
+
+
+ Cambodia
+
+
+ Vanuatu
+
+
+
+ No
+
+
+
+ Yes
+
+
+
+ MOTHER EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO MOTHER EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHER EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ LQ
+ 88888
+
+
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York,
+
+
+
+ 01
+ 2005
+
+
+ I WAS born in the year 1632, in the city of York, of a good family,
+though not of that country, my father being a foreigner of Bremen,
+who settled first at Hull. He got a good estate by merchandise,
+and leaving off his trade, lived afterwards at York, from whence he
+had married my mother, whose relations were named Robinson, a very
+good family in that country, and from whom I was called Robinson
+Kreutznaer; but, by the usual corruption of words in England, we
+are now called - nay we call ourselves and write our name - Crusoe;
+and so my companions always called me.
+
+I had two elder brothers, one of whom was lieutenant-colonel to an
+English regiment of foot in Flanders, formerly commanded by the
+famous Colonel Lockhart, and was killed at the battle near Dunkirk
+against the Spaniards. What became of my second brother I never
+knew, any more than my father or mother knew what became of me.
+
+Being the third son of the family and not bred to any trade, my
+head began to be filled very early with rambling thoughts. My
+father, who was very ancient, had given me a competent share of
+learning, as far as house-education and a country free school
+generally go, and designed me for the law; but I would be satisfied
+with nothing but going to sea; and my inclination to this led me so
+strongly against the will, nay, the commands of my father, and
+against all the entreaties and persuasions of my mother and other
+friends, that there seemed to be something fatal in that propensity
+of nature, tending directly to the life of misery which was to
+befall me.
+
+My father, a wise and grave man, gave me serious and excellent
+counsel against what he foresaw was my design. He called me one
+morning into his chamber, where he was confined by the gout, and
+expostulated very warmly with me upon this subject. He asked me
+what reasons, more than a mere wandering inclination, I had for
+leaving father's house and my native country, where I might be well
+introduced, and had a prospect of raising my fortune by application
+and industry, with a life of ease and pleasure. He told me it was
+men of desperate fortunes on one hand, or of aspiring, superior
+fortunes on the other, who went abroad upon adventures, to rise by
+enterprise, and make themselves famous in undertakings of a nature
+out of the common road; that these things were all either too far
+above me or too far below me; that mine was the middle state, or
+what might be called the upper station of low life, which he had
+found, by long experience, was the best state in the world, the
+most suited to human happiness, not exposed to the miseries and
+hardships, the labour and sufferings of the mechanic part of
+mankind, and not embarrassed with the pride, luxury, ambition, and
+envy of the upper part of mankind. He told me I might judge of the
+happiness of this state by this one thing - viz. that this was the
+state of life which all other people envied; that kings have
+frequently lamented the miserable consequence of being born to
+great things, and wished they had been placed in the middle of the
+two extremes, between the mean and the great; that the wise man
+gave his testimony to this, as the standard of felicity, when he
+prayed to have neither poverty nor riches.
+
+He bade me observe it, and I should always find that the calamities
+of life were shared among the upper and lower part of mankind, but
+that the middle station had the fewest disasters, and was not
+exposed to so many vicissitudes as the higher or lower part of
+mankind; nay, they were not subjected to so many distempers and
+uneasinesses, either of body or mind, as those were who, by vicious
+living, luxury, and extravagances on the one hand, or by hard
+labour, want of necessaries, and mean or insufficient diet on the
+other hand, bring distemper upon themselves by the natural
+consequences of their way of living; that the middle station of
+life was calculated for all kind of virtue and all kind of
+enjoyments;
+
+ Other
+
+ 01
+ 2005
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ MOTHER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ __Other__
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my
+
+
+
+
+ MOTHERS MAIDEN LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHERS MAIDEN FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHERS MAIDEN MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ IV
+
+
+
+
+ Yes
+
+
+
+
+ 01
+ 1985
+
+
+
+
+
+
+
+ MOTHERS AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHER AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MOTHERS AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ II
+
+
+
+
+ I WAS born in the year 1632, in the city of York, of a good family,
+though not of that country, my father being a foreigner of Bremen,
+who settled first at Hull. He got a good estate by merchandise,
+and leaving off his trade, lived afterwards at York, from whence he
+had married my mother, whose relations were named Robinson, a very
+good family in that country, and from whom I was called Robinson
+Kreutznaer; but, by the usual corruption of words in England, we
+are now called - nay we call ourselves and write our name - Crusoe;
+and so my companions always called me.
+
+I had two elder brothers, one of whom was lieutenant-colonel to an
+English regiment of foot in Flanders, formerly commanded by the
+famous Colonel Lockhart, and was killed at the battle near Dunkirk
+against the Spaniards. What became of my second brother I never
+knew, any more than my father or mother knew what became of me.
+
+Being the third son of the family and not bred to any trade, my
+head began to be filled very early with rambling thoughts. My
+father, who was very ancient, had given me a competent share of
+learning, as far as house-education and a country free school
+generally go, and designed me for the law; but I would be satisfied
+with nothing but going to sea; and my inclination to this led me so
+strongly against the will, nay, the commands of my father, and
+against all the entreaties and persuasions of my mother and other
+friends, that there seemed to be something fatal in that propensity
+of nature, tending directly to the life of misery which was to
+befall me.
+
+My father, a wise and grave man, gave me serious and excellent
+counsel against what he foresaw was my design. He called me one
+morning into his chamber, where he was confined by the gout, and
+expostulated very warmly with me upon this subject. He asked me
+what reasons, more than a mere wandering inclination, I had for
+leaving father's house and my native country, where I might be well
+introduced, and had a prospect of raising my fortune by application
+and industry, with a life of ease and pleasure. He told me it was
+men of desperate fortunes on one hand, or of aspiring, superior
+fortunes on the other, who went abroad upon adventures, to rise by
+enterprise, and make themselves famous in undertakings of a nature
+out of the common road; that these things were all either too far
+above me or too far below me; that mine was the middle state, or
+what might be called the upper station of low life, which he had
+found, by long experience, was the best state in the world, the
+most suited to human happiness, not exposed to the miseries and
+hardships, the labour and sufferings of the mechanic part of
+mankind, and not embarrassed with the pride, luxury, ambition, and
+envy of the upper part of mankind. He told me I might judge of the
+happiness of this state by this one thing - viz. that this was the
+state of life which all other people envied; that kings have
+frequently lamented the miserable consequence of being born to
+great things, and wished they had been placed in the middle of the
+two extremes, between the mean and the great; that the wise man
+gave his testimony to this, as the standard of felicity, when he
+prayed to have neither poverty nor riches.
+
+He bade me observe it, and I should always find that the calamities
+of life were shared among the upper and lower part of mankind, but
+that the middle station had the fewest disasters, and was not
+exposed to so many vicissitudes as the higher or lower part of
+mankind; nay, they were not subjected to so many distempers and
+uneasinesses, either of body or mind, as those were who, by vicious
+living, luxury, and extravagances on the one hand, or by hard
+labour, want of necessaries, and mean or insufficient diet on the
+other hand, bring distemper upon themselves by the natural
+consequences of their way of living; that the middle station of
+life was calculated for all kind of virtue and all kind of
+enjoyments;
+
+ No
+
+ 01Mother
+
+
+
+ FATHER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FATHER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FATHER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ HQ
+ 55555
+
+
+
+ 01
+ 01
+ 1970
+
+
+ FATHER POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Ukraine
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ LA
+ 70633
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+ Other
+
+
+
+
+ United States
+
+
+
+ No
+
+
+ FATHER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FATHER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FATHER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ II
+
+
+ Yes
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1991
+
+
+
+
+ FATHER AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FATHER AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FATHER AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ No
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ No
+
+ 02Father
+
+
+
+ FIL ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FIL ADDRESS APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FIL ADDRESS CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CA
+ 93940
+
+
+
+ 01
+ 01
+ 1970
+
+
+ FIL POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Denmark
+
+
+
+
+
+ 01
+ 01
+ 2020
+
+
+
+
+
+
+
+
+ Other
+
+
+
+
+ Tajikistan
+
+
+ Bangladesh
+
+
+ Jersey
+
+
+ Liberia
+
+
+
+ No
+
+
+
+ Yes
+
+
+
+ FIL EMPL STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FIL EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FIL EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ GA
+ 30533
+
+
+ FIL EMPL XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+ 01
+ 2010
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ Quarterly
+
+ 02
+ 2018
+
+
+ FIL Other method of contact
+
+
+ FIL LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FIL FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FIL MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VIII
+
+ 14FatherInLaw
+
+
+
+
+
+ Yes
+
+
+
+ 01
+ 01
+ 1990
+
+
+ COHAB POB CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CO
+ United States
+
+
+
+
+ 01
+ 01
+ 1990
+
+
+
+
+ Saint Barthelemy
+
+
+ Cambodia
+
+
+ Taiwan
+
+
+ Iceland
+
+
+ Pakistan
+
+
+
+ COHAB LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COHAB FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COHAB MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ __Other__
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my
+
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ COHAB AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COHAB AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COHAB AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ V
+
+
+
+
+ 888
+ 88
+ 8888
+
+
+ No
+
+
+ No
+
+ Married
+
+
+
+
+
+ 01
+ 01
+ 1990
+
+
+ SPOUSE FOREIGN CITY POB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Vatican City
+
+
+
+
+
+ 01
+ 01
+ 1999
+
+ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FS240or545
+
+
+
+
+ East Timor
+
+
+ Denmark
+
+
+ Venezuela
+
+
+ Gaza Strip
+
+
+ Saint Kitts and Nevis
+
+
+ Afghanistan
+
+
+ e@e.orggggggggggggggggggggggggggggggggggggg
+
+ SPOUSE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SPOUSE FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SPOUSE MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Sr
+
+
+
+ 01
+ 01
+ 1990
+
+
+ CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Kazakhstan
+
+
+
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ SPOUSE AKA LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SPOUSE AKA FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SPOUSE AKA MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Jr
+
+
+
+
+ 123
+ 99
+ 9999
+
+
+ Yes
+
+
+
+ 01
+ 01
+ 1991
+
+
+
+ SEPARATED CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ WA
+ 98822
+
+
+
+
+ 0000000000
+ 0000000000
+
+
+
+
+
+
+
+
+
+ RESI 1 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO RESI 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RESI 1 City XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PA
+ 15007
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1991
+
+
+
+ Own
+
+
+
+
+ RESI 2 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ APO
+ AA
+ 34033
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 2000
+
+
+
+ Rent
+
+
+
+ RESI 3 XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO RESI 3 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RESI 3 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Gabon
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ MilitaryHousing
+ I WAS born in the year 1632, in the city of York, of a good family, though not of that country, my
+
+
+ StreetXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO APTXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CITYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ GA
+ 30422
+
+
+
+
+ 01
+ 1990
+
+
+
+ RESI LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RESI FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RESI MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VII
+
+
+
+
+ 5555555555
+ 5555555555
+
+
+ 5555555555
+ 5555555555
+
+
+ 5555555555
+ 5555555555
+
+
+
+
+
+ No
+
+
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ ActiveMilitaryDuty
+ FullTime
+
+
+ duty stationxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxoo
+
+ STREETXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO APTXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CITYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FL
+ 32101
+
+
+ 5555555555
+ 5555555555
+
+
+
+ rankxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxoo
+
+
+ No
+
+
+ SUPER NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SUPER RANK XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ SUPER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO SUPER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SUPER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ MA
+ 01701
+
+ e@e.just
+
+ 5555555555
+ 5555555555
+
+
+
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ Unemployed
+
+
+ UNEMPL REFE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ UNEMPL REFE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ UNEMPL REFE STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO UNEMPL REFE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ UNEMPL REFE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RI
+ 02911
+
+
+ 8888888888
+ 8888888888
+
+
+
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+ SelfEmployed
+ FullTime
+
+ SELF POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ SELF XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ SELF EMPL STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO SELF EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SELF EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Croatia
+
+
+ 3333333333
+ 3333333333
+
+
+
+
+
+ Yes
+
+
+ 01
+ 1990
+
+ SELF EMPL REPRIMAND MYSELF I WAS born in the year 1632, in the city of York, of a good family,
+thou
+
+ No
+
+
+ Yes
+
+ SELF EMPL XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO SELF EMPL APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SELF EMPL CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ NC
+ 27301
+
+
+ 9999999999
+ 9999999999
+
+
+
+
+
+ SELF EMPL VERI LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SELF EMPL VERI FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+ SELF VERI ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ APO
+ AA
+ 34001
+
+
+
+ 9999999999
+ 9999999999
+
+
+
+
+
+
+
+
+ 01
+ 2005
+
+
+
+
+
+
+ NonGovernment
+ FullTime
+
+ zsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfzsdfsdhhhhhhhhhhhhhhffffffffffffffffffffffffffffffffffffffzdhssdfhsdfgh
+ ghfghdfhghdfghdghdfghdfghghghdghdfghghghdfghdfghdghdghdfgghjgjgfjgfhjgfhjgfhjgfhjhjghjghjghjghjghjgfhjghjghjghjhjgfhjjgfhjhjgfjgjghjghjgjgjgfhjgfhjfghjgfj
+
+
+ ddd dd
+ ddd
+ DC
+ 20399
+
+
+ 5555555555
+ 5555
+
+
+
+
+
+
+
+
+ 01
+ 2005
+
+
+
+
+ 08
+ 2018
+
+
+
+ vmvbmbvmbvmvbm
+ bvnmvbmvbmvbmbvmvbnm
+
+
+
+
+
+ 01
+ 2005
+
+
+
+
+ 08
+ 2018
+
+
+
+ xcvbxcvxcvb
+ xcvxcbcvbxcbxc
+
+
+
+
+ No
+
+
+ No
+
+
+ dfgdfgdfgdfgzgf dzsg dfg dfg zdg
+ dfgdfgdfg
+
+ ddd dd
+ ddd
+ DC
+ 20412
+
+
+
+ 5555555555
+ 5555555555
+
+
+
+
+
+ No
+
+
+
+ No
+
+
+
+
+ Yes
+ No
+
+
+
+
+
+
+
+
+
+
+ 01
+ 1999
+
+
+
+
+
+
+ HighSchool
+ EDUC 1 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ EDUC 1 ADDRESS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO EDUC 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ EDUC 1 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ NJ
+ 08111
+
+
+ Yes
+
+
+
+
+
+ 01
+ 1990
+
+
+ Master
+
+
+
+
+ 01
+ 1990
+
+
+ Doctorate
+
+
+
+
+ EDUC 1 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO EDUC 1 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ EDUC 1 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ GA
+ 30922
+
+ e@e.millllllllllllllllllllllllllllllllllllllll
+
+ EDUC ONE REFE LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ EDUC ONE REFE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ 0000000000
+ 0000000000
+
+
+
+
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 1999
+
+
+
+ College
+ EDUC 2 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ EDUC 2 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO EDUC 2 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ EDUC 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ HI
+ 96833
+
+
+ Yes
+
+
+
+
+
+ 01
+ 1990
+
+
+ HighSchool
+
+
+
+
+
+
+
+ Yes
+
+
+
+
+
+
+ FED SERVICE STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FED SERVICE APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FED SERVICE CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ United Arab Emirates
+
+
+ FED AGENCY NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1999
+
+
+
+ FED POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+
+
+ FED SERVICE 2 STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FED SERVICE 2 APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FED SERVICE 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ SC
+ 29611
+
+
+ FED SERVICE 2 NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 1999
+
+
+
+ FED SERVICE 2 POSITION XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ No
+
+
+ DerivedUSCitizen
+
+
+ 777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777700
+ Other
+ 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999911
+
+
+ 01
+ 01
+ 2000
+
+
+ COT DOC NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CIT DOC NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ CIT DOC NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VII
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ 888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888811
+
+
+
+
+
+ 01
+ 01
+ 1991
+
+
+
+
+ 01
+ 01
+ 1990
+
+
+
+ Other Last...XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD
+ Other....FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFmm
+ Other Middle....XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDD
+ Jr
+
+ C11111111
+
+
+
+
+
+
+
+ Russia
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ Yes
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+ Dominica
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ No
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+ Yes
+ No
+
+
+
+
+ Yes
+
+
+
+
+ Yes
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ 01
+ 1995
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+
+ No
+
+
+ Yes
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its pe
+ DIVISION FOREIGN MILITARY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Canada
+
+
+
+ 01
+ 2001
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its pe
+ FOREIGN ORGANIZATION MILITARY
+ Intelligence
+ PROVIDE HIGHEST RANK FOREIGN MILITARY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ Yes
+
+
+ FOREIGN MILITARY ACQ STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FOREIGN MILITARY ACQ APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN MILITARY ACQ CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ DE
+ 19811
+
+
+
+
+ 01
+ 2005
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+
+ FOREIGN MILITARY ACQ LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN MILITARY ACQ FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN MILITARY ACQ MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VII
+
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+
+ No
+
+
+ No
+
+ Yes
+
+
+ AirNationalGuard
+
+
+
+ 01
+ 2005
+
+
+
+
+
+
+
+ GA
+
+ Officer
+ 555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555500
+ Active
+
+ Yes
+
+
+
+ 01
+ 2000
+
+ Other
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+ MarineCorps
+
+
+
+ 01
+ 1999
+
+
+
+
+
+
+ Officer
+ 555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555500
+ Active
+
+ Yes
+
+
+
+ 01
+ 1995
+
+ BadConduct
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+ No
+
+
+
+ Yes
+
+
+ 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444400
+
+
+ Yes
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ 1
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20011
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ Yes
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ I
+
+
+ Chapter7
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ 1
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Monterey
+ CA
+ 93940
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ Yes
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Jr
+
+
+ Chapter11
+
+
+ Yes
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ WI
+ 53533
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Pacific Grove
+ CA
+ 93950
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DE
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 5555555555
+ 555555555
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ SC
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 5555555555
+ 5555555555
+
+
+
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ PA
+ 15411
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ 01
+ 2001
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DE
+ 19811
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ 1
+
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2001
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ 1
+
+
+
+ 01
+ 2001
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+ 01
+ 2012
+
+
+ 01
+ 2001
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 1
+
+ 01
+ 2000
+
+
+ 01
+ 2001
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ 1
+
+ 2015
+
+
+ 01
+ 2001
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Both
+
+
+ No
+
+
+
+
+ Yes
+
+
+
+
+ FC STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FC APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PA
+ 15509
+
+
+
+ 01
+ 01
+ 1900
+
+
+ FOREIGN CONTACT CIB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Romania
+
+
+
+
+ Papua New Guinea
+
+
+ Reunion
+
+
+ Gabon
+
+
+ Vatican City
+
+
+ Ecuador
+
+
+
+ Other
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+ FC EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FC EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ JQ
+ 88888
+
+ FC EMPLOYER NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ Yes
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+ FOREIGN CONTACT LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Foreign Contact FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN CONTACT MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ V
+
+
+
+
+
+ FOREIGN CONTACT LAST NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN CONTACT FIRST NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FOREIGN CONTACT MIDDLE NICKNAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VII
+
+
+
+
+
+
+ FC STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FC APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PA
+ 15222
+
+
+
+ 01
+ 01
+ 1850
+
+
+ FC TWO COB XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Djibouti
+
+
+
+
+ Faroe Islands
+
+
+ Heard Island and McDonald Islands
+
+
+ Kenya
+
+
+
+ Other
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+ 01
+ 2005
+
+
+
+
+ 01
+ 2008
+
+
+
+
+
+ FC EMPLOYER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO FC EMPLOYER APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC EMPLOYER CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ JQ
+ 88888
+
+ FC TWO EMPL NAME XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+ No
+
+
+
+ FC TWO LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC TWO FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ FC TWO MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Sr
+
+
+
+
+ No
+
+
+
+ Yes
+ No
+
+
+ Yes
+
+
+ COOWNER FOREIGN INTEREST STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO COOWNER FOREIGN INTEREST APT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COOWNER FOREIGN INTEREST CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ TN
+ 37400
+
+
+
+ Gambia, The
+
+
+ Tajikistan
+
+
+ Ukraine
+
+
+ Kenya
+
+
+ Nauru
+
+
+ Bahrain
+
+
+ Faroe Islands
+
+
+ Romania
+
+
+ Ecuador
+
+
+ Jan Mayen
+
+
+ Laos
+
+
+ Palau
+
+
+ Oman
+
+
+ India
+
+
+ Yemen
+
+
+ Taiwan
+
+
+ Reunion
+
+
+ East Timor
+
+
+ Wallis and Futuna
+
+
+ Qatar
+
+
+ Afghanistan
+
+
+ Saint Barthelemy
+
+
+ Denmark
+
+
+ Falkland Islands Islas Malvinas
+
+
+ Gabon
+
+
+ Haiti
+
+
+ Jamaica
+
+
+ Kazakhstan
+
+
+ Macau
+
+
+ Namibia
+
+
+ Bahamas, The
+
+
+ Vanuatu
+
+
+ Cambodia
+
+
+ Zambia
+
+
+
+ COOWNER FOREIGN INTEREST LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COOWNER FOREIGN INTEREST FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ COOWNER FOREIGN INTEREST MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ __Other__
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+ 2147483647
+ 2147483647
+
+ 01
+ 01
+ 2000
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ TYPE OF FINANCIAL INTEREST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+ No
+
+ 2147483647
+ 2147483647
+
+ 01
+ 01
+ 2000
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ TYPE OF FOREIGN INTEREST TWO No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of
+
+
+
+ Yes
+
+
+
+ INDIRECT FINANCIAL LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ INDIRECT FINANCIAL FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+
+
+ Yes
+
+
+ INDIRECT COOWNER STREET XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO INDIRECT COOWNER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ INDIRECT COOWNER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ RI
+ 02922
+
+
+
+ Qatar
+
+
+ Wallis and Futuna
+
+
+ East Timor
+
+
+ Reunion
+
+
+ Taiwan
+
+
+ Yemen
+
+
+ Uganda
+
+
+ Iceland
+
+
+ Oman
+
+
+ Pakistan
+
+
+ Afghanistan
+
+
+ Saint Barthelemy
+
+
+ Denmark
+
+
+ Falkland Islands Islas Malvinas
+
+
+ Gabon
+
+
+ Haiti
+
+
+ Jamaica
+
+
+ Kazakhstan
+
+
+ Laos
+
+
+ Macau
+
+
+ Namibia
+
+
+ Bahamas, The
+
+
+ Vanuatu
+
+
+ Cambodia
+
+
+ Zambia
+
+
+
+ INDIRECT COOWNER LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ INDIRECT COOWNER FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ INDIRECT COOWNER MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ IX
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+ 2147483647
+ 2147483647
+
+ 01
+ 01
+ 1990
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ INDIRECT FINANCIAL INTEREST No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of s
+
+ No
+
+
+ Yes
+
+
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ PA
+ 15202
+
+
+
+ Romania
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Jr
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ APO
+ AA
+ 34033
+
+
+
+ Denmark
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Jr
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+ 2147483647
+
+ 01
+ 01
+ 2000
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Falkland Islands Islas Malvinas
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+
+
+ No
+
+ 2147483647
+
+ 01
+ 01
+ 2001
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Denmark
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No
+
+
+ Yes
+
+
+ Other
+ Other
+
+
+
+ Other
+ Other
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ PA
+ 15433
+
+ 2147483647
+
+
+ Cambodia
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ __Other__
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VA
+ 22102
+
+ 1
+
+
+ Denmark
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Jr
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ APO
+ AA
+ 34033
+
+ 1
+
+
+ Denmark
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Sr
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+
+
+ Yes
+
+
+
+ Falkland Islands Islas Malvinas
+
+
+
+ 01
+ 2005
+
+
+
+
+ 01
+ 2006
+
+
+
+
+
+ Djibouti
+
+
+
+ 01
+ 2006
+
+
+
+
+ 01
+ 2007
+
+
+
+
+
+ Zimbabwe
+
+
+
+ 01
+ 2006
+
+
+
+
+
+
+
+
+
+
+ 01
+ 01
+ 2020
+
+
+
+
+ 01
+ 01
+ 2005
+
+
+
+ Romania
+
+ PASSPORT CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Oman
+
+
+
+ PASSPORT NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PASSPORT NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PASSPORT NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VII
+
+ PASSPORT CARD NUMBER 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100
+
+ Yes
+
+
+
+
+
+ 01
+ 01
+ 2001
+
+
+
+
+ 01
+ 01
+ 2000
+
+
+
+ Bahamas, The
+
+ PASSPORT 2 CITY XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ Portugal
+
+
+
+ PASSPORT TWO NAME LAST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PASSPORT TWO NAME FIRST XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ PASSPORT TWO NAME MIDDLE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+ VI
+
+ PASSPORT 2 NUMBER XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXOO
+
+ No
+
+
+ No
+
+
+ Yes
+ No
+
+ Denmark
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ I
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ Dhekelia Sovereign Base Area
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Sr
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ Yes
+
+
+ Dominica
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ 01
+ 2005
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Sr
+
+
+
+
+ Pakistan
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ 01
+ 2001
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Sr
+
+
+ No
+
+
+ Yes
+ No
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ PR
+ 00633
+
+
+
+ 01
+ 2001
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Sr
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Dhekelia Sovereign Base Area
+
+
+
+ 01
+ 2000
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VII
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ Yes
+ No
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20422
+
+
+
+ Gabon
+
+
+ Denmark
+
+
+ East Timor
+
+
+ Reunion
+
+
+ Yemen
+
+
+ Uganda
+
+
+ Iceland
+
+
+ Oman
+
+
+ Pakistan
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ I
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ APO
+ AA
+ 34033
+
+
+
+ Denmark
+
+
+ Falkland Islands Islas Malvinas
+
+
+ Gabon
+
+
+ Haiti
+
+
+ Jamaica
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VIII
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ Yes
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2001
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Cambodia
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+
+
+
+
+ 01
+ 1999
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Cambodia
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+ No
+
+
+ Yes
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Falkland Islands Islas Malvinas
+
+
+ Gabon
+
+
+ Haiti
+
+
+ Taiwan
+
+
+ Reunion
+
+
+ East Timor
+
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ II
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20422
+
+
+
+ Yes
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Denmark
+
+
+ Saint Barthelemy
+
+
+ Bahrain
+
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VIII
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Gabon
+
+
+
+ Yes
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ 0No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched
+
+ No
+
+
+ No
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20001
+
+
+
+
+ 01
+ 2000
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20488
+ United States
+
+
+
+
+ Denmark
+
+
+ Falkland Islands Islas Malvinas
+
+
+ Gabon
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ APO
+ AA
+ 34003
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VII
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Denmark
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 33233
+
+
+
+
+ 01
+ 1990
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VA
+ 22402
+ United States
+
+
+
+
+ Denmark
+
+
+ Saint Barthelemy
+
+
+ East Timor
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ SC
+ 29544
+
+
+
+
+
+ 01
+ 1990
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ I
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DQ
+ 55555
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ PR
+ 00688
+
+
+
+
+ 01
+ 2000
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DE
+ 19933
+ United States
+
+
+
+
+ Afghanistan
+
+
+ Vanuatu
+
+
+ East Timor
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DE
+ 19988
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ AK
+ 99677
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+ Yes
+
+
+
+ Denmark
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Dhekelia Sovereign Base Area
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+ Yes
+ No
+
+
+
+ Wallis and Futuna
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Saint Barthelemy
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ Yes
+
+
+ No
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Denmark
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ East Timor
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+
+ Yes
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ VT
+ 05155
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ No
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ AZ
+ 85312
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 07
+ 2018
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FM
+ 96944
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ No
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ SD
+ 57111
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 07
+ 2018
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No
+
+
+ Yes
+
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+
+ No
+
+
+ Yes
+
+
+
+ Yes
+
+
+ No
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ vNo American can study the character and career of Abraham Lincoln without being carried away by sen
+ LA
+ 70622
+
+
+
+
+
+
+
+
+
+ Yes
+
+
+ No
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20066
+
+
+
+
+
+
+
+
+ No
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20066
+
+
+
+
+
+
+
+ No
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 32122
+
+
+
+
+
+
+
+ No
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ Yes
+
+
+
+ No
+
+
+ Yes
+
+
+
+ Yes
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ Other
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love
+ --a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20322
+
+
+ 5555555555
+ 555555555
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ Yes
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ Other
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love
+ --a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Dhekelia Sovereign Base Area
+
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ Other
+
+
+ 01
+ 2001
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ Yes
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ No
+
+
+ Yes
+
+
+
+ Ketamine
+
+
+ 01
+ 2008
+
+
+ 07
+ 2018
+
+ I smoked it several times a day. I most likely used it over 100,000,000,000 X
+
+ Yes
+
+
+ Yes
+
+
+ Yes
+ 00xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1 22xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx33
+
+
+
+
+ Stimulants
+
+
+ 01
+ 2000
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ Yes
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ Other
+
+
+ 01
+ 2000
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ Yes
+
+
+ Yes
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+ Other
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love
+ --a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ DC
+ 20322
+
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ Inhalants
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love
+ --a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ APO
+ AA
+ 34011
+
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ No
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+
+
+ Yes
+
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Other
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 32232
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+
+ Yes
+
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+
+ Yes
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ RI
+ 02922
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 33902
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ Yes
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Felony
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ AK
+ 99522
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+
+ Yes
+
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+
+ Yes
+
+
+
+
+ APO
+ POSTOFFICE
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ Yes
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ Djibouti
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ No
+
+
+
+ Yes
+
+
+
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ Felony
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 32311
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+
+ No
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Yes
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+ Yes
+
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+ 08
+ 2018
+
+
+
+
+
+
+ No
+
+
+
+ Yes
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 33901
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sent
+ FL
+ 33901
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+
+ 01
+ 2000
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+ No
+
+
+
+
+ Yes
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20009
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20009
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DE
+ 19711
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ APO
+ AE
+ 09011
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DE
+ 19711
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ APO
+ AE
+ 09011
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DE
+ 19822
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ APO
+ AE
+ 09132
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+
+
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ Yes
+ No
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+ Yes
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20013
+
+ 654
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20034
+
+ 5
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+ No
+
+
+ Yes
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20412
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20400
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ No
+
+
+ Yes
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+ Yes
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ Yes
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20011
+
+ 1
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20012
+
+ 54
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ No
+
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ 01
+ 2000
+
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ 01
+ 2000
+
+
+
+
+
+ Yes
+ No
+
+
+ Yes
+ No
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+
+ Other
+ Other
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched hNo American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+ Other
+
+
+ 01
+ 2000
+
+
+
+
+ 01
+ 2000
+
+
+
+ No American can study the character and career of Abraham Lincoln without being carried away by sentimental emotions. We are always inclined to idealize that which we love,--a state of mind very unfavorable to the exercise of sober critical judgment. It i
+
+ No American can study the character and career of Abraham Lincoln
+without being carried away by sentimental emotions. We are
+always inclined to idealize that which we love,--a state of mind
+very unfavorable to the exercise of sober critical judgment. It
+is therefore not surprising that most of those who have written
+or spoken on that extraordinary man, even while conscientiously
+endeavoring to draw a lifelike portraiture of his being, and to
+form a just estimate of his public conduct, should have drifted
+into more or less indiscriminating eulogy, painting his great
+features in the most glowing colors, and covering with tender
+shadings whatever might look like a blemish.
+
+But his standing before posterity will not be exalted by mere
+praise of his virtues and abilities, nor by any concealment of
+his limitations and faults. The stature of the great man, one of
+whose peculiar charms consisted in his being so unlike all other
+great men, will rather lose than gain by the idealization which
+so easily runs into the commonplace. For it was distinctly the
+weird mixture of qualities and forces in him, of the lofty with
+the common, the ideal with the uncouth, of that which he had
+become with that which he had not ceased to be, that made him so
+fascinating a character among his fellow-men, gave him his
+singular power over their minds and hearts, and fitted him to be
+the greatest leader in the greatest crisis of our national life.
+
+His was indeed a marvellous growth. The statesman or the
+military hero born and reared in a log cabin is a familiar figure
+in American history; but we may search in vain among our
+celebrities for one whose origin and early life equalled Abraham
+Lincoln's in wretchedness. He first saw the light in a miserable
+hovel in Kentucky, on a farm consisting of a few barren acres in
+a dreary neighborhood; his father a typical "poor Southern
+white," shiftless and without ambition for himself or his
+children, constantly looking for a new piece of land on which he
+might make a living without much work; his mother, in her youth
+handsome and bright, grown prematurely coarse in feature and
+soured in mind by daily toil and care; the whole household
+squalid, cheerless, and utterly void of elevating inspirations...
+Only when the family had "moved" into the malarious backwoods of
+Indiana, the mother had died, and a stepmother, a woman of thrift
+and energy, had taken charge of the children, the shaggy-headed,
+ragged, barefooted, forlorn boy, then seven years old, "began to
+feel like a human being." Hard work was his early lot. When a
+mere boy he had to help in supporting the family, either on his
+father's clearing, or hired out to other farmers to plough, or
+dig ditches, or chop wood, or drive ox teams; occasionally also
+to "tend the baby," when the farmer's wife was otherwise engaged.
+He could regard it as an advancement to a higher sphere of
+activity when he obtained work in a "crossroads store," where he
+amused the customers by his talk over the counter; for he soon
+distinguished himself among the backwoods folk as one who had
+something to say worth listening to. To win that distinction, he
+had to draw mainly upon his wits; for, while his thirst for
+knowledge was great, his opportunities for satisfying that thirst
+were wofully slender.
+
+In the log schoolhouse, which he could visit but little, he was
+taught only reading, writing, and elementary arithmetic. Among
+the people of the settlement, bush farmers and small tradesmen,
+he found none of uncommon intelligence or education; but some of
+them had a few books, which he borrowed eagerly. Thus he read
+and reread, AEsop's Fables, learning to tell stories with a point
+and to argue by parables; he read Robinson Crusoe, The Pilgrim's
+Progress, a short history of the United States, and Weems's Life
+of Washington. To the town constable's he went to read the
+Revised Statutes of Indiana. Every printed page that fell into
+his hands he would greedily devour, and his family and friends
+watched h
+
+
+
+ Yes
+ No
+
+
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20409
+
+
+
+ 01
+ 2000
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20411
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20400
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20411
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ No
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+
+ 01
+ 2000
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ No
+
+
+ No
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ No
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+
+ 01
+ 2000
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DC
+ 20288
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ No
+
+
+ No
+
+
+ Yes
+
+ Voluntary
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ DE
+ 19833
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ Involuntary
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ PR
+ 00600
+
+
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+ No
+
+
+ Yes
+
+ PsychoticDisorder
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+ No
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+
+ PsychoticDisorder
+
+
+
+ 01
+ 2000
+
+
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+ No
+ "It has long been a grave question whether any government not too
+strong for the liberties of its people can be strong enough to
+maintain its existence in great emergencies. On this point, the
+present rebellion brought our republic to a severe test, and the
+Presidential election, occurring in regular course during the
+rebellion, added not a little to the strain.... The strife of
+the election is but human nature practically applied to the facts
+in the case. What has occurred in this case must ever occur in
+similar cases. Human nature will not change. In any future
+great national trial, compared with the men of this, we shall
+have as weak and as strong, as silly and as wise, as bad and as
+good. Let us therefore study the incidents in this as philosophy
+to learn wisdom from and none of them as wrongs to be avenged....
+Now that the election is over, may not all having a common
+interest reunite in a common fort to save our common country?
+For my own part, I have striven and shall strive to avoid placing
+any obstacle in the way. So long as I have been here, I have not
+willingly planted a thorn in any man's bosom. While I am deeply
+sensible to the high compliment of a re-election and duly
+grateful, as I trust, to Almighty God for having directed my
+countrymen to a right conclusion, as I think for their own good,
+it adds nothing to my satisfaction that any other man may be
+disappointed or pained by the result."
+
+This speech has not attracted much general attention, yet it is
+in a peculiar degree both illustrative and typical of the great
+statesman who made it, alike in its strong common-sense and in
+its lofty standard of morality. Lincoln's life, Lincoln's deeds
+and words, are not only of consuming interest to the historian,
+but should be intimately known to every man engaged in the hard
+practical work of American political life. It is difficult to
+overstate how much it means to a nation to have as the two
+foremost figures in its history men like Washington and Lincoln.
+It is good for every man in any way concerned in public life to
+feel that the highest ambition any American can possibly have
+will be gratified just in proportion as he raises himself toward
+the standards set by these two men.
+
+It is a very poor thing, whether for nations or individuals, to
+advance the history of great deeds done in the past as an excuse
+for doing poorly in the present; but it is an excellent thing to
+study the history of the great deeds of the past, and of the
+great men who did them, with an earnest desire to profit thereby
+so as to render better service in the present. In their
+essentials, the men of the present day are much like the men of
+the past, and the live issues of the present can be faced to
+better advantage by men who have in good faith studied how the
+leaders of the nation faced the dead issues of the past. Such a
+study of Lincoln's life will enable us to avoid the twin gulfs of
+immorality and inefficiency--the gulfs which always lie one on
+each side of the careers alike of man and of nation. It helps
+nothing to have avoided one if shipwreck is encountered in the
+other. The fanatic, the well-meaning moralist of unbalanced
+mind, the parlor critic who condemns others but has no power
+himself to do good and but little power to do ill--all these were
+as alien to Lincoln as the vicious and unpatriotic themselves.
+His life teaches our people that they must act with wisdom,
+because otherwise adherence to right will be mere sound and fury
+without substance; and that they must also act high-mindedly, or
+else what seems to be wisdom will in the end turn out to be the
+most destructive kind of folly.
+
+Throughout his entire life, and especially after he rose to
+leadership in his party, Lincoln was stirred to his depths by the
+sense of fealty to a lofty ideal; but throughout his entire life,
+he also accepted human nature as it is, and worked with keen,
+practical good sense to achieve results with the instruments at
+hand. It is impossible to conceive of
+
+
+ No
+
+
+ Yes
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+ 5555555555
+ 5555555555
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+
+
+
+
+
+ "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t "It has long been a grave question whether any government not too strong for the liberties of its people can be strong enough to maintain its existence in great emergencies. On this point, the present rebellion brought our republic to a severe test, and t
+ "It has long been a grave question whether any government not too strong for the liberties of its pe
+ FM
+ 96955
+
+
+
+ No
+
+
+ Yes
+
+
+
+
+ Yes
+
+
+
+
+
+
+ 2018-09-10
+
+
+
+ 64
+ B
+
+
+ 2
+
+
+ 2
+
+
+ MIL
+
+
+ Military
+
+ 957B
+
+ None
+
+ NV00
+
+ None
+
+ I
+ MIL
+ DOD-NAVY
+
+
+ AARON Strohl Laney
+ eml152dummy@MailDomain.com
+
+ 1 (763) 323-2004
+
+
+
+ JAMES Strohl Laney
+ eml153dummy@MailDomain.com
+
+ 1 (298) 723-1913
+
+
+
+
+
diff --git a/api/xml/xml.go b/api/xml/xml.go
index f8b29111f..8ea568cee 100644
--- a/api/xml/xml.go
+++ b/api/xml/xml.go
@@ -60,18 +60,21 @@ func (service Service) DefaultTemplate(templateName string, data map[string]inte
"dischargeType": dischargeType,
"doctorFirstName": doctorFirstName,
"doctorLastName": doctorLastName,
+ "drugType": drugType,
"foreignDocType": foreignDocType,
"foreignAffiliation": foreignAffiliation,
"frequencyType": frequencyType,
"monthYearDaterange": monthYearDaterange,
"email": email,
"employmentType": employmentType,
+ "hairType": hairType,
"hasRelativeType": hasRelativeType,
"inc": inc,
"location": location,
"locationIsPostOffice": locationIsPostOffice,
"locationOverrideLayout": locationOverrideLayout,
"maritalStatus": maritalStatus,
+ "militaryAddress": militaryAddress,
"militaryStatus": militaryStatus,
"monthYear": monthYear,
"name": name,
@@ -720,6 +723,10 @@ func location(data map[string]interface{}) (template.HTML, error) {
return locationOverrideLayout(data, "")
}
+func militaryAddress(data map[string]interface{}) (template.HTML, error) {
+ return locationOverrideLayout(data, api.LayoutMilitaryAddress)
+}
+
// location assumes the data comes in as the props
func locationOverrideLayout(data map[string]interface{}, override string) (template.HTML, error) {
// Deserialize the initial payload from a JSON structure
@@ -803,6 +810,8 @@ func locationOverrideLayout(data map[string]interface{}, override string) (templ
return xmlTemplateWithFuncs("location-street-city-state-zipcode.xml", data, fmap)
case api.LayoutStreetCity:
return xmlTemplate("location-street-city.xml", data)
+ case api.LayoutMilitaryAddress:
+ return xmlTemplateWithFuncs("location-address-apofpo-state-zipcode.xml", data, fmap)
default:
if domestic || postoffice {
return xmlTemplateWithFuncs("location-street-city-state-zipcode.xml", data, fmap)
@@ -912,6 +921,26 @@ func clearanceType(v string) string {
return basis[v]
}
+func hairType(v string) string {
+ basis := map[string]string{
+ "Bald": "Bald",
+ "Black": "Black",
+ "Blonde": "Blonde or Strawberry",
+ "Blue": "Blue",
+ "Brown": "Brown",
+ "Gray": "Gray or Partially Gray",
+ "Green": "Green",
+ "Orange": "Orange",
+ "Pink": "Pink",
+ "Purple": "Purple",
+ "Red": "Red or Auburn",
+ "Sandy": "Sandy",
+ "Unknown": "Unspecified or unknown",
+ "White": "White",
+ }
+ return basis[v]
+}
+
func suffixType(s string) string {
if s == "Other" {
return "__Other__"
@@ -919,6 +948,17 @@ func suffixType(s string) string {
return s
}
+// XXX
+// Work-around for https://github.com/18F/e-QIP-prototype/issues/858
+func drugType(d string) string {
+ switch d {
+ case "Cocaine", "THC", "Ketamine", "Narcotics", "Stimulants", "Depressants", "Hallucinogenic", "Steroids", "Inhalants":
+ return d
+ default:
+ return "Other"
+ }
+}
+
// inc adds 1 to a
func inc(a interface{}) (interface{}, error) {
return add(a, 1)
diff --git a/api/xml/xml_test.go b/api/xml/xml_test.go
index 3efa6aeb5..796c41296 100644
--- a/api/xml/xml_test.go
+++ b/api/xml/xml_test.go
@@ -295,6 +295,11 @@ func TestScenario6(t *testing.T) {
executeScenario(t, "test6")
}
+// `test7` is a "blow out" of the whole form from NBIB team
+func TestScenario7(t *testing.T) {
+ executeScenario(t, "test7")
+}
+
// executeScenario generates XML from JSON test fixtures for a complete
// applicant scenario and compares the result with XML reference files.
// It is a coarse and unforgiving test; anything less than an exact match,