summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranoduck <9925396+anoduck@users.noreply.github.com>2024-11-02 04:08:53 -0400
committeranoduck <9925396+anoduck@users.noreply.github.com>2024-11-02 04:08:53 -0400
commitebe0b7f231ffa8d3cdd59942ad938a9aae8ce2d4 (patch)
tree6ffddcfc74f5305c4178b458c08086d9a5518946
parent0dfbc14d584113e692a6d51b94392fc882cca5b5 (diff)
ci(.frontMatter): :bricks: Frontmatter content types
Clarification and Corrections of typos in frontmatter configuration files.
-rw-r--r--.frontmatter/config/content/pagefolders/content.json3
-rw-r--r--.frontmatter/config/content/pagefolders/evidence.json3
-rw-r--r--.frontmatter/config/content/pagefolders/video.json3
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/content.json2
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/evidence.json80
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/fpnav.json7
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/legal.json7
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/page.json129
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/person.json7
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/post.json7
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/reason.json2
-rw-r--r--.frontmatter/config/taxonomy/contenttypes/video.json44
-rw-r--r--.frontmatter/database/taxonomyDb.json2
-rw-r--r--content/_index.md4
-rwxr-xr-xcontent/evidence/financials.md16
-rw-r--r--content/legal/args/index.md15
-rw-r--r--content/legal/violated-laws.md64
-rw-r--r--content/reasons/taxes.md2
-rw-r--r--hugo_stats.json4
-rw-r--r--static/legal/COMPS-10311.pdfbin0 -> 153753 bytes
-rw-r--r--static/legal/STATUTE-91-Pg1407.pdfbin0 -> 760206 bytes
21 files changed, 349 insertions, 52 deletions
diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json
index bbfb592..484da3c 100644
--- a/.frontmatter/config/content/pagefolders/content.json
+++ b/.frontmatter/config/content/pagefolders/content.json
@@ -6,6 +6,7 @@
"excludeSubdir": true,
"previewPath": "",
"contentTypes": [
- "page"
+ "page",
+ "content"
]
} \ No newline at end of file
diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json
index 7996094..0be63e5 100644
--- a/.frontmatter/config/content/pagefolders/evidence.json
+++ b/.frontmatter/config/content/pagefolders/evidence.json
@@ -5,6 +5,7 @@
"filePrefix": null,
"previewPath": "evidence",
"contentTypes": [
- "docs"
+ "docs",
+ "evidence"
]
} \ No newline at end of file
diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json
index 7bc6282..bab7499 100644
--- a/.frontmatter/config/content/pagefolders/video.json
+++ b/.frontmatter/config/content/pagefolders/video.json
@@ -5,6 +5,7 @@
"previewPath": "video",
"filePrefix": null,
"contentTypes": [
- "minimal"
+ "minimal",
+ "video"
]
} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/content.json b/.frontmatter/config/taxonomy/contenttypes/content.json
index 6d3d586..30bf59f 100644
--- a/.frontmatter/config/taxonomy/contenttypes/content.json
+++ b/.frontmatter/config/taxonomy/contenttypes/content.json
@@ -1,6 +1,6 @@
{
"$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
- "name": "Content",
+ "name": "content",
"pageBundle": false,
"previewPath": null,
"fields": [
diff --git a/.frontmatter/config/taxonomy/contenttypes/evidence.json b/.frontmatter/config/taxonomy/contenttypes/evidence.json
new file mode 100644
index 0000000..44e08fd
--- /dev/null
+++ b/.frontmatter/config/taxonomy/contenttypes/evidence.json
@@ -0,0 +1,80 @@
+{
+ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
+ "name": "evidence",
+ "pageBundle": false,
+ "previewPath": null,
+ "fields": [
+ {
+ "title": "Title",
+ "name": "title",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Description",
+ "name": "description",
+ "type": "string"
+ },
+ {
+ "title": "date",
+ "name": "date",
+ "type": "datetime"
+ },
+ {
+ "title": "Metadata",
+ "name": "metadata",
+ "type": "choice",
+ "choices": [
+ "full",
+ "original",
+ "none"
+ ],
+ "default": "full"
+ },
+ {
+ "title": "Categories",
+ "name": "categories",
+ "type": "string",
+ "single": true,
+ "default": "Evidence"
+ },
+ {
+ "title": "Tags",
+ "name": "tags",
+ "type": "tags"
+ },
+ {
+ "title": "Thumbnail",
+ "name": "thumbnail",
+ "type": "string"
+ },
+ {
+ "title": "Type",
+ "name": "type",
+ "type": "choice",
+ "choices": [
+ "default",
+ "docs",
+ "minimal"
+ ],
+ "default": "docs"
+ },
+ {
+ "title": "Draft",
+ "name": "draft",
+ "type": "draft"
+ },
+ {
+ "title": "Modules",
+ "name": "modules",
+ "type": "string"
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "evidence"
+ }
+ ]
+} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/fpnav.json b/.frontmatter/config/taxonomy/contenttypes/fpnav.json
index ea7c49b..2b8b957 100644
--- a/.frontmatter/config/taxonomy/contenttypes/fpnav.json
+++ b/.frontmatter/config/taxonomy/contenttypes/fpnav.json
@@ -51,6 +51,13 @@
"name": "thumbnail",
"type": "string",
"single": true
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "fpnav"
}
]
} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json
index 0a1e3c7..122bff4 100644
--- a/.frontmatter/config/taxonomy/contenttypes/legal.json
+++ b/.frontmatter/config/taxonomy/contenttypes/legal.json
@@ -79,6 +79,13 @@
"type": "string"
}
]
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "legal"
}
]
} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/page.json b/.frontmatter/config/taxonomy/contenttypes/page.json
new file mode 100644
index 0000000..d522ab2
--- /dev/null
+++ b/.frontmatter/config/taxonomy/contenttypes/page.json
@@ -0,0 +1,129 @@
+{
+ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
+ "name": "page",
+ "pageBundle": false,
+ "previewPath": null,
+ "fields": [
+ {
+ "title": "Title",
+ "name": "title",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Date",
+ "name": "date",
+ "type": "datetime",
+ "default": "{{now}}",
+ "isPublishDate": true
+ },
+ {
+ "title": "Description",
+ "name": "description",
+ "type": "string"
+ },
+ {
+ "title": "Draft",
+ "name": "draft",
+ "type": "draft"
+ },
+ {
+ "title": "Tags",
+ "name": "tags",
+ "type": "tags"
+ },
+ {
+ "title": "Icon",
+ "name": "icon",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Type",
+ "name": "type",
+ "type": "choice",
+ "choices": [
+ "default",
+ "docs",
+ "minimal"
+ ],
+ "default": "default"
+ },
+ {
+ "title": "Categories",
+ "name": "categories",
+ "type": "string",
+ "single": true,
+ "default": "Content"
+ },
+ {
+ "title": "Metadata",
+ "name": "metadata",
+ "type": "choice",
+ "choices": [
+ "full",
+ "original",
+ "none"
+ ],
+ "default": "full"
+ },
+ {
+ "title": "Download",
+ "name": "download",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Thumbnail",
+ "name": "thumbnail",
+ "type": "fields",
+ "fields": [
+ {
+ "title": "URL",
+ "name": "url",
+ "type": "image"
+ },
+ {
+ "title": "Author",
+ "name": "author",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "AuthorUrl",
+ "name": "authorUrl",
+ "type": "string"
+ },
+ {
+ "title": "Origin",
+ "name": "origin",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "OriginUrl",
+ "name": "originUrl",
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "title": "Author",
+ "name": "author",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Links",
+ "name": "navigationLinks",
+ "type": "list"
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "page"
+ }
+ ]
+} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json
index 52e79b6..f6e1f21 100644
--- a/.frontmatter/config/taxonomy/contenttypes/person.json
+++ b/.frontmatter/config/taxonomy/contenttypes/person.json
@@ -88,6 +88,13 @@
"title": "modules",
"name": "modules",
"type": "string"
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "person"
}
]
} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json
index a83336a..c78279b 100644
--- a/.frontmatter/config/taxonomy/contenttypes/post.json
+++ b/.frontmatter/config/taxonomy/contenttypes/post.json
@@ -77,6 +77,13 @@
"type": "string"
}
]
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "post"
}
]
} \ No newline at end of file
diff --git a/.frontmatter/config/taxonomy/contenttypes/reason.json b/.frontmatter/config/taxonomy/contenttypes/reason.json
index 688c762..cb36330 100644
--- a/.frontmatter/config/taxonomy/contenttypes/reason.json
+++ b/.frontmatter/config/taxonomy/contenttypes/reason.json
@@ -30,7 +30,7 @@
"name": "categories",
"type": "string",
"single": true,
- "default": "reason"
+ "default": "Reason"
},
{
"title": "Weight",
diff --git a/.frontmatter/config/taxonomy/contenttypes/video.json b/.frontmatter/config/taxonomy/contenttypes/video.json
new file mode 100644
index 0000000..a003c52
--- /dev/null
+++ b/.frontmatter/config/taxonomy/contenttypes/video.json
@@ -0,0 +1,44 @@
+{
+ "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json",
+ "name": "video",
+ "pageBundle": false,
+ "previewPath": null,
+ "fields": [
+ {
+ "title": "Title",
+ "name": "title",
+ "type": "string",
+ "single": true
+ },
+ {
+ "title": "Description",
+ "name": "description",
+ "type": "string"
+ },
+ {
+ "title": "Categories",
+ "name": "categories",
+ "type": "string",
+ "single": true,
+ "default": "Video"
+ },
+ {
+ "title": "Type",
+ "name": "type",
+ "type": "choice",
+ "choices": [
+ "default",
+ "docs",
+ "minimal"
+ ],
+ "default": "minimal"
+ },
+ {
+ "title": "FrontMatter Content Type",
+ "name": "fmContentType",
+ "type": "string",
+ "single": true,
+ "default": "video"
+ }
+ ]
+} \ No newline at end of file
diff --git a/.frontmatter/database/taxonomyDb.json b/.frontmatter/database/taxonomyDb.json
index 469d5c4..68d98ab 100644
--- a/.frontmatter/database/taxonomyDb.json
+++ b/.frontmatter/database/taxonomyDb.json
@@ -1 +1 @@
-{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Dayton","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Licensing","MIA","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","arguments","armored car","attorney","attorneys","audio","back_of_property","bibtex","blacklabeled","blacklisted","bounty","broker","budget","calendar","capital","chairman","chief","chief_matthews","claims","commisioner","commissioner","communication","communications","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","dialogue","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","estate","events","evidence","expenses","explanation","fake","favoritism","fcc","financials","fines","fire chief","fire dept","for sale","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","land","land for sale","law","lawyer","leads","legal","legitimacy","letters","license","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","message","meta","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","opposition","oppression","ordinance","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","property for sale","real","real estate","realtime","reasoning","records","references","reflection","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","site","son","sources","spending","spying","stalkers","stalking","standing","statements","statutes","story","stupid answer","stupid question","subdivision","suspicious","tasks","tax","taxpayer","terms","threatening behavior","timeline","tips","todo","transcription","transcripts","traylor","truth","unsupported","untruths","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Content","Evidence","Legal","Person","Post","Reason","Video"]}} \ No newline at end of file
+{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Dayton","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Licensing","MIA","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","arguments","armored car","attorney","attorneys","audio","back_of_property","bibtex","blacklabeled","blacklisted","bounty","broker","budget","calendar","capital","chairman","chief","chief_matthews","claims","commisioner","commissioner","communication","communications","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","dialogue","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","estate","events","evidence","expenses","explanation","fake","favoritism","fcc","financials","fines","fire chief","fire dept","for sale","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","land","land for sale","law","lawyer","leads","legal","legitimacy","letters","license","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","message","meta","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","opposition","oppression","ordinance","ordinances","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","property for sale","real","real estate","realtime","reasoning","records","references","reflection","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","site","son","sources","spending","spying","stalkers","stalking","standing","statements","statutes","story","stupid answer","stupid question","subdivision","suspicious","tasks","tax","taxpayer","terms","threatening behavior","timeline","tips","todo","transcription","transcripts","traylor","truth","unsupported","untruths","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Content","Evidence","Legal","Person","Persons","Post","Reason","Video","fpnav","post"]}} \ No newline at end of file
diff --git a/content/_index.md b/content/_index.md
index 3faa946..78cfd1f 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -5,7 +5,7 @@ thumbnail:
url: img/logo-lg.png
actions:
get-started:
- url: "/evidence/"
- title: "Review the Evidence"
+ url: "#reasons-why-it-matters-to-you"
+ title: "Review why it matters"
icon: "fas book-open"
---
diff --git a/content/evidence/financials.md b/content/evidence/financials.md
index 58d6252..2067df3 100755
--- a/content/evidence/financials.md
+++ b/content/evidence/financials.md
@@ -1,30 +1,17 @@
---
title: Financials
description: Financial review of terminology, concepts and figures.
-date: 2024-09-07T18:17:24-04:00
-lastmod: 2024-09-07T18:17:24-04:00
type: docs
tags:
- - financials
- expenses
- - county
- taxpayer
- spending
- - budget
- - income
- - income
- - capital
- - profit
- tax
- revenue
- - loss
- fines
- - ordinance
+ - ordinances
- violations
- - negligence
- - favoritism
- penalties
- - management
thumbnail:
url: https://res.cloudinary.com/solardump/image/upload/v1726951036/pages/photo-1554224154-22dec7ec8818.jpg
author: Kelly Sikkema
@@ -33,6 +20,7 @@ thumbnail:
originURL: https://unsplash.com/photos/black-ceramic-mug-beside-white-printer-paper-SiOW0btU0zk
categories:
- Evidence
+draft: false
---
## Intro
diff --git a/content/legal/args/index.md b/content/legal/args/index.md
deleted file mode 100644
index df69ade..0000000
--- a/content/legal/args/index.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-headless: true
-title: Argument Database
----
-
-{{< fas people-line fa-10x text-secondary >}}
-
-
-{ .text-center }
-
-Twice now, the exact same people have targeted our home.
-
-{ .fs-5 .muted .col-12 .col-md-6 .mx-auto .text-center}
-
-{{< button href="./listing/" wrapper="text-center mb-5">}}Profiles{{< /button >}} \ No newline at end of file
diff --git a/content/legal/violated-laws.md b/content/legal/violated-laws.md
index cc4433a..13fc50f 100644
--- a/content/legal/violated-laws.md
+++ b/content/legal/violated-laws.md
@@ -1,16 +1,58 @@
---
-# author:
title: Violated Laws
date: 2024-10-11T11:07:40-04:00
draft: true
-# layout:
-# description:
-# tags:
-# icon:
-# thumbnail:
- # url:
- # author:
- # authorURL:
- # origin:
- # originURL:
+thumbnail:
+ url: https://res.cloudinary.com/solardump/image/upload/v1730498754/legal/photo-1729551610640-e8adee1172e3.jpg
+ origin: Unsplash
+description: Review of the laws violated by the county and developers.
---
+
+The purpose of this page is tor provide some basis of an explanation for what we are referring to when we claim that
+laws were broken during the construction of the numerous homes adjacent to our property.
+
+> [!NOTE]
+> Statutes are laws that exist on a federal or state level.
+
+Laws exists on three different levels; Federal, State, and County. Violations can occur on all, two, or one of these
+levels. In other words, these levels are not exclusive of each other. Throughout this site, the term "statute" will be
+used interchangeably with the term "law", and so will the term "ordinance" and "law". This is because, both "ordinance"
+and "statute" are types of laws, the distinction is where the law was codified [^3], meaning which legislative body
+voted on the bill in order for it to become law. Statutes are laws enacted by a legislative body [^1], such as congress
+or state assemblies. Ordinances are laws enacted by municipal bodies, such as a county or city. [^2]
+
+> [!NOTE]
+> Ordinances are laws that exist on a county or city level.
+
+### Violated Laws
+
+For easiest comprehension Laws will be deivided uip basic on jurisidiction, that is, where the law was codified into law.
+
+#### Federal
+
+##### The Soil and Water Resources Conservation Act (RCA) of 1977 [^4]
+
+The Soil and Water Resources Conservation Act of 1977 was not the first piece of legislature passed by congress in order
+to conserve soil resources, as it was preceded by both The Agricultural Adjustment Act of 1933 [^5] and The Soil
+Conservation and Domestic Allotment Act of 1936 [^6], both of which were in response to the dust bowls. The Soil and Water Resources Conservation Act of 1977 is what granted the federal government through the USDA the authority to monitor and advise measures to prevent destructive erosion.
+
+The application of these advisement are the requirements to cover disturbed soil with some form of ground cover.
+
+The actual text.[^7]
+
+##### Water Conservation Act
+
+
+
+
+
+
+
+- [^1]: https://www.law.cornell.edu/wex/statute
+- [^2]: https://www.law.cornell.edu/wex/ordinance
+- [^3]: https://www.law.cornell.edu/wex/codification
+- [^4]: https://www.nrcs.usda.gov/rca
+- [^5]: https://en.wikipedia.org/wiki/Agricultural_Adjustment_Act
+- [^6]: https://en.wikipedia.org/wiki/Soil_Conservation_and_Domestic_Allotment_Act_of_1936
+- [^7]: https://corruptlamar.com/legal/STATUTE-91-Pg1407.pdf
+- [^8]: https://corruptlamar.com/legal/COMPS-10311.pdf \ No newline at end of file
diff --git a/content/reasons/taxes.md b/content/reasons/taxes.md
index b72deb6..1951ed5 100644
--- a/content/reasons/taxes.md
+++ b/content/reasons/taxes.md
@@ -5,6 +5,8 @@ date: 2024-10-22T04:58:29-04:00
weight: 10
thumbnail: https://res.cloudinary.com/solardump/image/upload/v1729590793/reasons/photo-1676311651686-9d42d06be214.jpg
colormode: false
+categories:
+ - Reason
---
Penalties from ordinance violations are a form of revenue for the county. If the county refuses to penalize violators, they are refusing to collect revenue owed to them by law. When this happens they have few other sources of income other than the local tax payer. Which means you, the taxpayer, end up footing the bill for their refusal to enforce the law. \ No newline at end of file
diff --git a/hugo_stats.json b/hugo_stats.json
index e013fc9..42ab04d 100644
--- a/hugo_stats.json
+++ b/hugo_stats.json
@@ -74,7 +74,6 @@
"blockquote",
"blockquote-alert",
"blockquote-alert-heading",
- "blockquote-alert-important",
"blockquote-alert-note",
"blockquote-alert-warning",
"border",
@@ -172,7 +171,6 @@
"fa-download",
"fa-ellipsis",
"fa-equals",
- "fa-exclamation",
"fa-face-frown",
"fa-facebook",
"fa-fluid",
@@ -477,7 +475,6 @@
"fas-download",
"fas-ellipsis",
"fas-equals",
- "fas-exclamation",
"fas-globe",
"fas-heart",
"fas-house",
@@ -552,7 +549,6 @@
"notations-provided-by-lexis-nexis",
"ocga-10-6a-3",
"other-legal-requirements",
- "otterai-speech--file-index",
"personal-data",
"persons",
"posts",
diff --git a/static/legal/COMPS-10311.pdf b/static/legal/COMPS-10311.pdf
new file mode 100644
index 0000000..fcc5c36
--- /dev/null
+++ b/static/legal/COMPS-10311.pdf
Binary files differ
diff --git a/static/legal/STATUTE-91-Pg1407.pdf b/static/legal/STATUTE-91-Pg1407.pdf
new file mode 100644
index 0000000..32b76ec
--- /dev/null
+++ b/static/legal/STATUTE-91-Pg1407.pdf
Binary files differ